:root {
    /* Brand Colors - Premium Purple/Blue Gradient Theme */
    --primary-purple: #7C3AED;
    --primary-blue: #3B82F6;
    --primary-cyan: #06B6D4;
    --accent-pink: #EC4899;
    --accent-amber: #F59E0B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
    --gradient-purple-blue: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
    --gradient-blue-cyan: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #1A1A24 100%);
    
    /* Glow Effects */
    --glow-purple: rgba(124, 58, 237, 0.5);
    --glow-blue: rgba(59, 130, 246, 0.4);
    --glow-cyan: rgba(6, 182, 212, 0.3);
    --glow-purple-intense: rgba(124, 58, 237, 0.8);
    
    /* Backgrounds */
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: #1A1A24;
    --bg-card-hover: #22223A;
    --bg-glass: rgba(26, 26, 36, 0.6);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --text-tertiary: #6B6B88;
    --text-gradient: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;      /* 8px */
    --spacing-sm: 1rem;        /* 16px */
    --spacing-md: 2rem;        /* 32px */
    --spacing-lg: 4rem;        /* 64px */
    --spacing-xl: 8rem;        /* 128px */
    --spacing-2xl: 12rem;      /* 192px */
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;        /* 12px */
    --text-sm: 0.875rem;       /* 14px */
    --text-base: 1rem;         /* 16px */
    --text-lg: 1.125rem;       /* 18px */
    --text-xl: 1.25rem;        /* 20px */
    --text-2xl: 1.5rem;        /* 24px */
    --text-3xl: 1.875rem;      /* 30px */
    --text-4xl: 2.25rem;       /* 36px */
    --text-5xl: 3rem;          /* 48px */
    --text-6xl: 3.75rem;       /* 60px */
    --text-7xl: 4.5rem;        /* 72px */
    --text-8xl: 6rem;          /* 96px */
    
    /* Font Weights */
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px var(--glow-purple);
    --shadow-glow-blue: 0 0 40px var(--glow-blue);
    
    /* Animation */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-snappy: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-normal: 0.3s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-overlay: 400;
    --z-max: 999;
    
    /* Container */
    --container-max: 1400px;
    --container-padding: var(--spacing-md);
}

/* Dark theme is default */
body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: var(--text-primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

/* Media Query Breakpoints */
@media (max-width: 1440px) {
    :root {
        --text-8xl: 5rem;
        --text-7xl: 4rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --text-8xl: 4rem;
        --text-7xl: 3.5rem;
        --text-6xl: 3rem;
        --spacing-xl: 6rem;
        --spacing-2xl: 8rem;
    }
}

@media (max-width: 768px) {
    :root {
        --text-8xl: 3rem;
        --text-7xl: 2.5rem;
        --text-6xl: 2rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 6rem;
        --container-padding: var(--spacing-sm);
    }
}
