/* ==========================================================================
   Fever Spin-to-Win — Design Tokens
   
   All colours, fonts, spacing, and sizing defined here.
   Values are injected from config/site.json via JS at runtime,
   but we set sensible defaults so the page works before JS loads.
   ========================================================================== */

:root {
    /* Colors — defaults, overridden by Config.applyTheme() */
    --color-primary: #FFFFFF;
    --color-secondary: #333333;
    --color-accent: #FF3366;
    --color-background: #000000;
    --color-surface: #111111;
    --color-text: #FFFFFF;
    --color-text-muted: #999999;
    --color-success: #00C853;
    --color-error: #FF5252;

    /* Fonts — defaults, overridden by Config.applyTheme() */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Font sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;

    /* Font weights */
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 51, 102, 0.3);

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

    /* Layout */
    --max-width: 420px;
    --screen-padding: var(--space-lg);
}
