:root {
    /* Color Palette */
    --bg-primary: #050505;       /* Deep Black */
    --bg-secondary: #0d0d0d;     /* Graphite/Carbon base */
    --bg-tertiary: #161616;      /* Cards and elements background */
    --bg-overlay: rgba(5, 5, 5, 0.45);
    --bg-overlay-radial: radial-gradient(circle, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.68) 100%);
    
    --text-primary: #f5f5f5;     /* Pure metal white */
    --text-secondary: #a0a0a0;   /* Muted metal gray */
    --text-muted: #666666;       /* Dark gray for minor info */
    
    --accent: #e31b23;           /* Racing Red / Accent */
    --accent-glow: rgba(227, 27, 35, 0.45);
    --accent-hover: #ff2a33;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(255, 255, 255, 0.2);
    --border-metal: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.05) 100%);
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation Transitions */
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Spacing Scale (8px Grid) */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;
    --space-128: 128px;
    
    /* Layout */
    --max-width: 1440px;
    --header-height: 110px;
}
