/* Design tokens — brand palette, surface colors, and non-color scales. */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --bg-dark: #111827;
    --bg-secondary: #1a2234;
    --bg-card: #1e2d45;
    --bg-panel: #172238;
    --text-primary: #f1f5f9;
    --text-secondary: #d1d5e0;
    --text-muted: #8fa3bd;
    --border-color: rgba(255, 255, 255, 0.09);
    --success-fg: #34d399;
    --warning-fg: #fbbf24;
    --accent-purple: #c084fc;
    --twitch: #9146ff;
    --discord: #5865f2;
    --discord-fg: #818cf8;

    /* Radius scale */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 999px;
    --radius-circle: 50%;

    /* Spacing scale (4px base grid) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Shadow scale */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.35);

    /* Type scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    /* Line heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
}
