:root {
    /* Colors - Dark "Tech Visionary" Theme */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-text: #ffffff;
    --color-text-muted: #888888;

    --color-primary: #3b82f6;
    /* Electric Blue */
    --color-primary-dark: #1d4ed8;
    --color-accent: #8b5cf6;
    /* Electric Purple */
    --color-accent-glow: rgba(139, 92, 246, 0.5);

    --color-border: rgba(255, 255, 255, 0.1);
    --color-card-bg: rgba(22, 22, 22, 0.6);
    --glass-bg: rgba(22, 22, 22, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);

    /* 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 */

    /* Container */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}