:root {
    /* Color Palette - Premium Dark Mode */
    --color-bg-primary: #0a0a0c;
    --color-bg-secondary: #121216;
    --color-bg-tertiary: #1a1a20;
    
    /* Text Colors */
    --color-text-primary: #f8f9fa;
    --color-text-secondary: #adb5bd;
    --color-text-muted: #6c757d;
    
    /* Accents - Gold / Electric Blue */
    --color-accent-gold: #d4af37;
    --color-accent-gold-hover: #f1c40f;
    --color-accent-blue: #007bff;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7);
    --gradient-dark: linear-gradient(to bottom, rgba(10, 10, 12, 0.2), #0a0a0c);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index */
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-overlay: 1500;
}
