/* CSS Custom Properties - Couleurs validées du mockup */
:root {
    /* Game Colors - EXACTES du mockup final */
    --grid-bg: rgb(100, 130, 145);
    --grid-line: rgba(255, 255, 255, 0.25);
    --wall-color: rgb(55, 70, 80);
    --player-color: rgb(255, 255, 0);
    
    /* Cubes FLASHY */
    --cube-red: rgb(255, 80, 80);
    --cube-blue: rgb(80, 160, 255);
    --cube-green: rgb(80, 255, 140);
    --cube-violet: rgb(200, 120, 255);
    
    /* UI Colors */
    --bg-primary: rgb(45, 50, 60);
    --bg-secondary: rgb(35, 40, 48);
    --bg-elevated: rgba(0, 0, 0, 0.8);
    
    --text-primary: rgb(240, 240, 240);
    --text-secondary: rgb(160, 160, 160);
    --text-muted: rgb(120, 120, 120);
    
    --accent-primary: rgb(120, 200, 255);
    --accent-success: rgb(16, 185, 129);
    --accent-danger: rgb(239, 68, 68);
    --accent-warning: rgb(245, 158, 11);
    
    /* Borders & Shadows */
    --border-color: rgba(120, 200, 255, 0.2);
    --shadow-sm: 0 2px 4px 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);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Consolas', 'Monaco', monospace;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* Z-index */
    --z-modal: 1000;
    --z-notification: 1100;
    --z-header: 100;
    --z-controls: 10;
}
