:root {
    --primary: #4F46E5;
    --primary-light: #6366F1;
    --primary-bg: #EEF2FF;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --success: #10B981;
    --success-bg: #D1FAE5;
    --danger: #EF4444;
    --danger-bg: #FEE2E2;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --nav-height: 64px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ✅ COMPÉTENCES - BULLES RÉDUITES */
.theme-classic .cv-skills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important; /* ✅ RÉDUIT */
    margin-top: 6px !important; /* ✅ RÉDUIT */
}
.theme-classic .cv-skill {
    display: inline-flex !important;
    align-items: center !important;
    background: #FFFFFF !important;
    color: var(--primary) !important;
    padding: 4px 10px !important; /* ✅ RÉDUIT (était 6px 14px) */
    border-radius: 20px !important;
    font-size: 10px !important; /* ✅ RÉDUIT (était 12px) */
    font-weight: 600 !important;
    border: 1px solid var(--primary) !important;
    margin: 2px !important; /* ✅ RÉDUIT (était 4px) */
    white-space: nowrap !important;
}