:root {
   /* ========== HOLO-CHROME PALETTE ========== */

   /* Base / Void */
   --void-black: #050505;
   --void-deep: #0a0b10;
   --void-surface: rgba(20, 25, 35, 0.6);
   --void-border: rgba(255, 255, 255, 0.1);

   /* Chrome & Metals */
   --chrome-silver: #E2E8F0;
   --chrome-dark: #94A3B8;
   --chrome-highlight: #F8FAFC;

   /* Iridescent Accents (Derived from Logo) */
   --holo-pink: #F472B6;
   --holo-purple: #C084FC;
   --holo-blue: #60A5FA;
   --holo-teal: #2DD4BF;
   --holo-gold: #FBBF24;

   /* Gradients */
   --gradient-holo: linear-gradient(135deg, rgba(192, 132, 252, 0.8) 0%, rgba(96, 165, 250, 0.8) 50%, rgba(45, 212, 191, 0.8) 100%);
   --gradient-holo-text: linear-gradient(to right, #e2e8f0 20%, #c084fc 40%, #60a5fa 60%, #e2e8f0 80%);
   --gradient-chrome: linear-gradient(180deg, #F8FAFC 0%, #94A3B8 100%);
   --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

   /* State Colors */
   --state-success: #2DD4BF;
   /* Teal for win */
   --state-error: #F87171;
   /* Red for loss */
   --state-warning: #FBBF24;
   /* Gold for push */

   /* Typography */
   --font-display: 'Orbitron', 'Rajdhani', sans-serif;
   --font-body: 'Inter', system-ui, sans-serif;
   --font-mono: 'Share Tech Mono', monospace;

   /* Spacing */
   --space-1: 0.25rem;
   --space-2: 0.5rem;
   --space-3: 0.75rem;
   --space-4: 1rem;
   --space-6: 1.5rem;
   --space-8: 2rem;
   --space-12: 3rem;

   /* Effects */
   --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
   --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
   --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
   --shadow-holo: 0 0 15px rgba(192, 132, 252, 0.3);

   --blur-sm: blur(4px);
   --blur-md: blur(8px);
   --glass-border: 1px solid rgba(255, 255, 255, 0.15);

   /* Transitions */
   --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
   --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

   /* Radii */
   --radius-sm: 4px;
   --radius-md: 8px;
   --radius-lg: 16px;
   --radius-full: 9999px;

   /* ========== MISSING VARIABLES (RESTORED) ========== */

   /* Text Colors */
   --text-primary: #F8FAFC;
   --text-secondary: #94A3B8;
   --text-muted: #94A3B8;
   --text-inverse: #0F172A;

   /* Font Sizes */
   --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: 1.875rem;
   --text-4xl: 2.25rem;
   --text-5xl: 3rem;
   --text-6xl: 3.75rem;

   /* Font Weights */
   --font-light: 300;
   --font-normal: 400;
   --font-medium: 500;
   --font-semibold: 600;
   --font-bold: 700;

   /* Leading (Line Height) */
   --leading-none: 1;
   --leading-tight: 1.25;
   --leading-snug: 1.375;
   --leading-normal: 1.5;
   --leading-relaxed: 1.625;
   --leading-loose: 2;

   /* Tracking (Letter Spacing) */
   --tracking-tighter: -0.05em;
   --tracking-tight: -0.025em;
   --tracking-normal: 0em;
   --tracking-wide: 0.025em;
   --tracking-wider: 0.05em;
   --tracking-widest: 0.1em;
}