/**
 * CSS Variables
 * 
 * Design tokens for the Badass Network theme
 * Neo-brutalist design system
 *
 * @package BadassNetwork
 */

:root {
    /* Colors */
    --color-bg: #FFFEF9;
    --color-surface: #FFFFFF;
    --color-text: #0D0D0D;
    --color-text-soft: #555555;
    --color-electric: #4361EE;
    --color-hot: #FF006E;
    --color-sun: #FFBE0B;
    --color-mint: #3DFFC2;
    --color-border: #0D0D0D;

    /* Typography */
    --font-main: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'Monaco', 'Consolas', monospace;

    /* Font Sizes */
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 16px;
    --text-md: 17px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 28px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-6xl: 56px;
    --text-7xl: 72px;
    --text-8xl: 96px;

    /* Shadows */
    --shadow-sm: 3px 3px 0 var(--color-border);
    --shadow: 4px 4px 0 var(--color-border);
    --shadow-lg: 8px 8px 0 var(--color-border);

    /* Border */
    --border-width: 3px;
    --border: var(--border-width) solid var(--color-border);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 20px;
    --space-2xl: 24px;
    --space-3xl: 32px;
    --space-4xl: 48px;
    --space-5xl: 64px;
    --space-6xl: 80px;
    --space-7xl: 120px;

    /* Container */
    --container-max: 1400px;
    --container-wide: 1300px;
    --container-narrow: 800px;
    --container-padding: 24px;

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

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Uncomment to enable dark mode */
        /* --color-bg: #0D0D0D;
        --color-surface: #1a1a1a;
        --color-text: #FFFEF9;
        --color-text-soft: #aaaaaa;
        --color-border: #FFFEF9; */
    }
}

