/* ============================================
   CSS Variables / Design Tokens
   ============================================ */

:root {
    /* Brand Colors */
    --color-primary: #FF6300;
    --color-secondary: #5C0FD9;
    
    /* Color Variations */
    --color-primary-light: rgba(255, 99, 0, 0.1);
    --color-primary-hover: #FF8533;
    --color-secondary-light: rgba(92, 15, 217, 0.1);
    --color-secondary-hover: #7B3FE4;
    
    /* Background Colors */
    --bg-dark: #0A0A0F;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    /* Status Colors */
    --color-success: #22C55E;
    --color-info: #3B82F6;
    --color-warning: #F97316;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.4);
    --shadow-primary: 0 4px 20px rgba(255, 99, 0, 0.3);
    --shadow-secondary: 0 4px 20px rgba(92, 15, 217, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Layout */
    --max-width: 1400px;
    --max-width-sm: 1200px;
}
