/* CSS Variables - ModeSurvie Theme */
:root {
    /* Colors - Dark survival theme */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #1a1a1d;
    --bg-card: #151517;
    --bg-elevated: #1e1e21;
    
    /* Text colors */
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    --text-inverse: #0a0a0b;
    
    /* Accent colors */
    --accent-primary: #ff6b35;
    --accent-secondary: #ff8c5a;
    --accent-tertiary: #ffb088;
    --accent-glow: rgba(255, 107, 53, 0.3);
    
    /* Status colors */
    --status-danger: #ff3b30;
    --status-danger-bg: rgba(255, 59, 48, 0.15);
    --status-warning: #ff9500;
    --status-warning-bg: rgba(255, 149, 0, 0.15);
    --status-success: #30d158;
    --status-success-bg: rgba(48, 209, 88, 0.15);
    --status-info: #5ac8fa;
    --status-info-bg: rgba(90, 200, 250, 0.15);
    
    /* Score colors */
    --score-excellent: #30d158;
    --score-good: #5ac8fa;
    --score-warning: #ff9500;
    --score-danger: #ff3b30;
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(255, 107, 53, 0.5);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);
    
    /* Typography */
    --font-display: 'Space Mono', monospace;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* 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: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --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;
    --space-20: 5rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-6);
}
