/* TurkGuide global reset */
* {
  box-sizing: border-box;
}

/* Root chain: avoid fixed 100% height + 100vh (iOS URL bar / safe-area layout shift) */
html {
  height: auto;
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: auto;
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 320px;
  background: #07080c;
  color: rgba(255, 255, 255, 0.92);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  display: block; /* ❗ flex ASLA olmayacak */
}

#root {
  height: auto;
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* Skeleton loading pulse (Faz 3) */
@keyframes tg-skeleton-pulse {
  0% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
  100% {
    opacity: 0.55;
  }
}

.tg-skeleton {
  animation: tg-skeleton-pulse 1.2s ease-in-out infinite;
}
