:root {
  /* Colors - 4 Layer Architecture */
  --bg: #050505;
  --surface: #0A192F;
  --accent: #D4AF37;
  
  /* Text and Border Colors */
  --fg: #f0f0f0;
  --muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Light Theme Alternative */
body.light-theme {
  --bg: #fafafa;
  --surface: #f0f0f0;
  --accent: #2160d4; /* Darker blue for contrast, avoids indigo slop */
  --fg: #111111;
  --muted: rgba(0, 0, 0, 0.6);
  --border: rgba(0, 0, 0, 0.1);
}
