/* Tailwind CDN kullanıyoruz; burası sadece küçük global ayarlar için. */

html,
body {
  height: 100%;
}

/* Varsayılan fontu garanti altına al (Tailwind sınıfları zaten ayarlıyor) */
body {
  font-family: "Spline Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* Template'lerdeki 884px min-height bazı cihazlarda gereksiz scroll oluşturuyor */
  min-height: 100dvh !important;
  height: auto;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* iOS safe-area yardımcı class */
.pb-safe,
.safe-pb {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Hareket hassasiyeti olanlar için */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


