/* Minimal fallback stylesheet to avoid missing /index.css 404 and ensure base styles load */
:root{
  --bg:#000000;
  --fg:#ffffff;
}
html,body,#root{
  height:100%;
  background:var(--bg);
  color:var(--fg);
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
/* small helper just to make content visible if React isn't mounting */
#root::after{
  content: none;
}

/* Provide a little layout guidance for debugging when the app is blank */
body.debug-outline *{outline: 1px dashed rgba(255,255,255,0.06);}