/* ===================================
   CSS Variables
   =================================== */

:root {
    /* Color Palette */
    --primary-dark: #1a0b2e;
    --secondary-dark: #2d1b4e;
    --accent-blue: #4a5fff;
    --accent-light: #6b7fff;
    --accent-lighter: #8b9fff;
    --highlight: #00d4ff;
    --text-light: #ffffff;
    --text-gray: #b8b8d4;
    --text-dark: #1a1a2e;
    --bg-light: #f5f5f5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #4a5fff 100%);
    --gradient-secondary: linear-gradient(135deg, #4a5fff 0%, #6b7fff 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 11, 46, 0.95) 0%, rgba(74, 95, 255, 0.85) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}
