/* css/variables.css */
:root {
    /* Colors - Background */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d1117;
    --bg-nav: rgba(10, 10, 15, 0.11);
    --bg-lightbox: rgba(0, 0, 0, 0.92);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Neon Spectrum */
    --neon-purple: #bd00ff;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-light-blue: #00d9ff;
    --neon-red: #ff0055;
    --neon-yellow: #ffb000;
    --neon-orange: #ff6600;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-size-h1-hero: 3.5rem;
    --font-size-h1-section: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    --line-height-body: 1.6;
    --line-height-heading: 1.2;
    --letter-spacing-heading: 0.05em;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-circle: 50%;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease-out;
    --transition-slow: 600ms ease-out;

    /* Z-Index Layers */
    --z-base: 1;
    --z-hover: 10;
    --z-nav: 100;
    --z-lightbox: 1000;

    /* Animation Durations */
    --anim-float: 4s;
    --anim-glow: 8s;
    --anim-glitch: 250ms;
}
