:root {
    /* Colors */
    --background-dark: #000000;
    --primary-glow: #2196F3;
    --accent-glow: #4FC3F7;
    --text-light: #E3F2FD;
    --warm-glow: #FF6B4A;
    --warm-accent: #FFA07A;
    
    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Z-index layers */
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
}