:root {
    /* Dark mode pro - Tons bleu marine #003c61 */
    --color-background: #00101a;
    --color-surface: #001824;
    --color-surface-hover: #002030;
    --color-surface-elevated: #002a40;

    /* Accent bleu principal */
    --color-primary: #0077b6;
    --color-primary-dark: #005f92;
    --color-primary-light: #0096d6;
    --color-primary-glow: #48cae4;
    --color-primary-muted: rgba(0, 119, 182, 0.2);

    /* Accent secondaire (cyan clair) */
    --color-accent: #00b4d8;
    --color-accent-glow: #90e0ef;

    /* Texte */
    --color-text: #f0f8ff;
    --color-text-muted: #90b4ce;
    --color-text-light: #5a8aa8;

    /* Bordures subtiles */
    --color-border: #003050;
    --color-border-light: #002238;
    --color-border-hover: #006688;

    /* États */
    --color-error: #ef4444;
    --color-error-bg: rgba(239, 68, 68, 0.1);
    --color-success: #22c55e;
    --color-success-bg: rgba(34, 197, 94, 0.1);
    --color-warning: #f59e0b;
    --color-warning-bg: rgba(245, 158, 11, 0.1);

    /* Météo */
    --color-sunny: #fbbf24;
    --color-cloudy: #9ca3af;
    --color-rainy: #60a5fa;
    --color-stormy: #a78bfa;
    --color-snowy: #e2e8f0;
    --color-foggy: #6b7280;

    /* Pluie dans l'heure (jauge) */
    --rain-none: #2d3748;
    --rain-light: #63b3ed;
    --rain-moderate: #3182ce;
    --rain-heavy: #e53e3e;

    /* Espacement */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --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: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Bordures */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(0, 180, 216, 0.5);

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