:root {
  /* ─── Colors ─────────────────────────────────────────────── */
  --color-black: #000000;
  --color-dark: #0a0a0a;
  --color-darker: #111111;
  --color-surface: #18181b;
  --color-card: #1a1a1e;
  --color-card-hover: #222226;
  --color-border: rgba(151, 151, 151, 0.2);
  --color-border-light: rgba(151, 151, 151, 0.1);

  --color-gold: #fbbf24;
  --color-gold-light: #fcd34d;
  --color-gold-dark: #d97706;
  --color-gold-glow: rgba(251, 191, 36, 0.3);

  --color-white: #ffffff;
  --color-text: rgba(255, 255, 255, 0.87);
  --color-text-secondary: rgba(255, 255, 255, 0.6);
  --color-text-muted: rgba(255, 255, 255, 0.4);

  --color-green: #22c55e;
  --color-green-bg: rgba(34, 197, 94, 0.12);
  --color-red: #ef4444;
  --color-red-bg: rgba(239, 68, 68, 0.12);
  --color-blue: #3b82f6;
  --color-blue-bg: rgba(59, 130, 246, 0.12);
  --color-purple: #a855f7;
  --color-purple-bg: rgba(168, 85, 247, 0.12);
  --color-orange: #f97316;
  --color-orange-bg: rgba(249, 115, 22, 0.12);

  /* ─── Typography ─────────────────────────────────────────── */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', 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;

  /* ─── Spacing ────────────────────────────────────────────── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* ─── Border Radius ──────────────────────────────────────── */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* ─── Shadows ────────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(251, 191, 36, 0.15);
  --shadow-gold-lg: 0 0 60px rgba(251, 191, 36, 0.2);

  /* ─── Transitions ────────────────────────────────────────── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ─── Z-Index ────────────────────────────────────────────── */
  --z-sidebar: 100;
  --z-header: 200;
  --z-modal: 300;
  --z-toast: 400;
}
