/* Critical CSS to prevent FOUC */
html {
  background-color: #f5f5f5;
}

html.dark {
  background-color: #1a1a1a;
}

/* Prevent flash by ensuring base styles load first */
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Minimal loading state */
#__nuxt {
  min-height: 100vh;
}

