:root {
    /* Festival Palette */
    --color-bg: #050510;
    /* Deep Midnight */
    --color-surface: #0a0a1a;
    --color-primary: #00F0FF;
    /* Electric Cyan */
    --color-primary-dim: rgba(0, 240, 255, 0.1);
    --color-secondary: #FF00CC;
    /* Hot Pink */
    --color-secondary-dim: rgba(255, 0, 204, 0.1);

    --color-text-main: #ffffff;
    --color-text-muted: #b0b0cc;
    --color-border: #2a2a40;

    /* Fonts */
    --font-main: 'Outfit', sans-serif;
    --font-logo: 'Orbitron', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --glow-primary: 0 0 15px rgba(0, 240, 255, 0.6);
    --glow-secondary: 0 0 15px rgba(255, 0, 204, 0.6);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}