/* Reset & base variables (minimal placeholder)
   This file is created to host project-level resets and CSS variables.
   The project currently also has variables in styles.css; consider consolidating.
*/
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
img{max-width:100%;display:block}

:root{
  /* Minimal theme variables example (non-destructive) - keep in sync with styles.css :root if you migrate */
  --primary: #ff9a3c;
  --text: #e0e0e0;
  --primary-dark: #ff7a1a;
  --glass-border: rgba(255,255,255,0.12);
  --primary-glow: rgba(59,130,246,0.14);
  --bg-1: #0f1724;
  --bg-0: #0b1220;
  --muted: #90a4ae;
  --surface: rgba(255,255,255,0.02);
  --negative: #ef4444;
}