/* CSS Variables - Design System */
:root {
    /* Colors */
    --primary: #FF6B6B;
    --primary-dark: #E63946;
    --primary-light: #FF8787;
    
    --secondary: #667EEA;
    --secondary-dark: #5A67D8;
    --secondary-light: #818CF8;
    
    --accent: #00D4FF;
    --accent-dark: #00B8D4;
    --accent-light: #4DD9FF;
    
    --success: #2DCC71;
    --warning: #F39C12;
    --error: #E74C3C;
    
    --dark-bg: #0A0E27;
    --dark-secondary: #151A3F;
    --dark-tertiary: #1F2757;
    
    --light-bg: #F8FAFC;
    --light-secondary: #EFF1F5;
    --light-tertiary: #E2E8F0;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    
    --border: #E2E8F0;
    --border-dark: #CBD5E1;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Space Grotesk', monospace;
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 800;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --light-bg: #0A0E27;
        --light-secondary: #151A3F;
        --light-tertiary: #1F2757;
        
        --text-primary: #F8FAFC;
        --text-secondary: #CBD5E1;
        --text-light: #94A3B8;
        --border: #334155;
        --border-dark: #475569;
    }
}
