/* Tracker — small polish on top of Tailwind CDN. */

:root { color-scheme: dark; }

html { scroll-behavior: smooth; }

/* Slim dark scrollbars to match the slate palette. */
* {
  scrollbar-width: thin;
  scrollbar-color: #334155 transparent;
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background-color: #334155;
  border-radius: 9999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover { background-color: #475569; }

/* Prevent a flash of unstyled content before Tailwind CDN loads. */
body { background-color: #020617; }
