/* VARIABLES GLOBALES */

:root {
    /* Couleurs Violet */
    --violet-primary: #8B5CF6;
    --violet-dark: #5B21B6;
    --violet-darker: #2D1B4E;
    --violet-black: #0F0A1E;
    --violet-light: #A78BFA;
    --violet-glow: #C4B5FD;
    
    /* Backgrounds */
    --bg-main: #0F0A1E;
    --bg-card: rgba(45, 27, 78, 0.4);
    --bg-sidebar: rgba(15, 10, 30, 0.95);
    
    /* Texte */
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    
    /* Espacements */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.2);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.3);
    --shadow-xl: 0 12px 48px rgba(139, 92, 246, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Largeur sidebar */
    --sidebar-width: 280px;
}