/* Theme Variables */
:root {
    /* Colors */
    --primary: #6c5ce7;
    --primary-dark: #5d4aec;
    --dark: #1e1e1e;
    --light: #f8f9fa;
    --deep-dark: #0C0B19;
    
    /* Color aliases for compatibility */
    --color-primary: #6c5ce7;
    --color-secondary: #5d4aec;
    --color-dark: #1e1e1e;
    --color-light: #f8f9fa;
    --color-accent: #6c5ce7;
    --color-white: #FFFFFF;
    --color-text: #e2e8f0;
    --color-text-light: #94a3b8;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-xxxl: 96px;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

