/*
  Minimal theme if the main Tailwind bundle fails to load (wrong basePath, blocked
  network, or opening HTML without the Next server). Keeps dark background + readable text.
*/
html {
  background-color: #0f172a;
  color: #f8fafc;
  color-scheme: dark;
}
body {
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
