:root {
    /* Colors relative to HSL for easy theming */
    --hue-primary: 0;
    /* Red */
    --hue-bg: 0;
    /* Black */

    --color-bg: #050505;
    --color-bg-card: #0F0F0F;
    --color-text: #FFFFFF;
    --color-text-muted: #A0A0A0;

    /* Brand Colors */
    --color-brand: #FF3131;
    /* Vibrant Red */
    --color-brand-glow: rgba(255, 49, 49, 0.4);

    --color-glitch-1: #FFFFFF;
    /* White for glitch effects */
    --color-glitch-2: #FF0000;
    /* Red for glitch effects */

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

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

    /* Layout */
    --container-width: 1200px;
    --radius-md: 12px;
    --radius-full: 9999px;
}