:root {
    /* Couleurs de fond - Thème Clair GNMS */
    --color-bg-dark: #f8f9fa;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f0f0f5;
    --color-bg-input: #f5f5f7;
    
    /* Couleurs de texte */
    --color-text-primary: #1a1a2e;
    --color-text-secondary: #4a4a5a;
    --color-text-muted: #8a8a9a;
    
    /* Couleurs d'accent GNMS */
    --color-primary: #5B2D91;
    --color-primary-light: #7B4DB1;
    --color-primary-dark: #4A2377;
    --color-secondary: #1E5AA8;
    --color-secondary-light: #3E7AC8;
    --color-secondary-dark: #0E4A98;
    /* Dégradé GNMS (violet vers bleu) */
    --gradient-gnms: linear-gradient(135deg, #5B2D91 0%, #1E5AA8 100%);
    /* Anciennes variables pour compatibilité */
    --color-gold: #5B2D91;
    --color-gold-light: #7B4DB1;
    --color-gold-dark: #4A2377;
    
    /* Couleurs fonctionnelles */
    --color-success: #22c55e;
    --color-success-bg: rgba(34, 197, 94, 0.1);
    --color-danger: #ef4444;
    --color-danger-bg: rgba(239, 68, 68, 0.1);
    --color-warning: #f59e0b;
    --color-warning-bg: rgba(245, 158, 11, 0.1);
    --color-info: #3b82f6;
    --color-info-bg: rgba(59, 130, 246, 0.1);
    
    /* Bordures */
    --color-border: #e0e0e5;
    --color-border-light: #d0d0d8;
    
    /* Typographie GNMS */
    --font-primary: 'MADE Outer Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'MADE Outer Sans', 'Montserrat', Georgia, serif;
    
    /* Tailles de police */
    --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;
    
    /* Espacements */
    --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;
    
    /* Ombres */
    --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-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-primary: 0 4px 20px rgba(91, 45, 145, 0.25);
    --shadow-glow: 0 0 40px rgba(91, 45, 145, 0.15);
    --shadow-gold: 0 4px 20px rgba(91, 45, 145, 0.25);
    
    /* 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;
}
