:root {
    /* Color Palette */
    --primary: #3b82f6;       /* Blue */
    --primary-dark: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.5);
    
    --secondary: #22c55e;     /* Green for success/money */
    --accent: #f59e0b;        /* Gold/Amber for trophies */
    --danger: #ef4444;        /* Red */
    
    /* Backgrounds */
    --bg-dark: #0f172a;       /* Deep blue/slate */
    --bg-card: #1e293b;       /* Slightly lighter */
    --bg-header: rgba(15, 23, 42, 0.95);
    --bg-overlay: rgba(0, 0, 0, 0.7);

    /* Text */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-highlight: #ffffff;

    /* Borders */
    --border-color: #334155;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Effects */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 15px var(--primary-glow);
    
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-highlight);
    margin-top: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}
