:root {
    /* Colors - Dark Theme Core */
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-surface-hover: #1e1e1e;
    
    /* Colors - Brand Gradients & Accents */
    --color-primary: #8b5cf6; /* Violet */
    --color-secondary: #f472b6; /* Pink */
    --color-accent: #fbbf24; /* Amber/Gold */
    --gradient-brand: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    --gradient-text: linear-gradient(to right, #ffffff, #d1d5db);
    
    /* Colors - Text */
    --color-text-main: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-text-inverted: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 2rem;     /* 32px */
    --spacing-lg: 4rem;     /* 64px */
    --spacing-xl: 8rem;     /* 128px */
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-glow: 0 0 40px -10px rgba(139, 92, 246, 0.3);
}
