/* Minimal base styles; Tailwind handles most. */
:root { color-scheme: dark; }
html, body { height: 100%; }
* { box-sizing: border-box; }

/* Smooth scrolling for anchor jumps */
html { scroll-behavior: smooth; }

/* Subtle selection */
::selection { background: rgba(34, 211, 238, 0.25); }

/* Focus ring fallback */
:focus { outline: none; }

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
