:root {
  /* Primary — Gold/Amber (Chrono) */
  --gold: #F5A623;
  --gold-light: #FFD080;
  --gold-dark: #C4841A;

  /* Secondary — Indigo/Blurple (Cord/Discord) */
  --indigo: #5865F2;
  --indigo-light: #7983F5;
  --indigo-dark: #4752C4;

  /* Backgrounds */
  --bg-dark: #1a1a2e;
  --bg-card: #16213e;
  --bg-nav: rgba(22, 33, 62, 0.85);

  /* Text */
  --text: #e0e0e0;
  --text-muted: #8892b0;
  --text-bright: #ffffff;

  /* Accents */
  --glow-gold: rgba(245, 166, 35, 0.4);
  --glow-indigo: rgba(88, 101, 242, 0.4);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index layers */
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;

  /* Container */
  --container-max: 1200px;
  --nav-height: 4rem;
}
