/* 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;
}
