* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
    /* ON PLACE LE FOND ANIMÉ ICI */
    background: linear-gradient(135deg, #0f172a, #4338ca, #991b1b, #f59e0b, #fbbf24) !important;
    background-size: 400% 400% !important;
    animation: sunsetFlowComplex 12s ease-in-out infinite !important;
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

#auth-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Le cercle jaune/orange */
.logo-circle {
    width: 100px;
    height: 100px;
    border: 10px solid var(--accent-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.logo-text {
    color: #4E67EB;
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: #7a8ba3;
    font-size: 14px;
    margin-bottom: 40px;
}

.form-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

input {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 50px; /* Très arrondi comme l'image */
    border: none;
    background: #f8faff;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    border: none;
    background: #5c6cf2;
    color: white;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 1px;
}

.separator {
    margin: 25px 0;
    font-size: 11px;
    color: #a0aec0;
    font-weight: 700;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social {
    flex: 1;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: white;
    color: #4E67EB;
    font-weight: 600;
    cursor: pointer;
}

.footer-text {
    font-size: 13px;
    color: #7a8ba3;
}

.signup-link {
    color: var(--accent-color);
    font-weight: 700;
    cursor: pointer;
}
/* Style pour le menu déroulant du niveau scolaire */
.custom-select {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 50px;
    border: none;
    background: #f8faff;
    font-size: 14px;
    color: #7a8ba3; /* Couleur du texte placeholder */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    outline: none;
    appearance: none; /* Enlever la flèche par défaut pour certains navigateurs */
}

/* On s'assure que le container d'inscription utilise le même flex que le reste */
#signup-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}
/* L'animation de sortie */
.fly-away {
    animation: flyOut 1.2s forwards ease-in-out;
}

@keyframes flyOut {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    30% {
        /* Petit effet de recul avant de s'envoler */
        transform: scale(1.1) rotate(-5deg);
    }
    100% {
        /* La page tourne, rétrécit et s'envole vers le haut à droite */
        transform: scale(0) rotate(720deg) translate(500px, -800px);
        opacity: 0;
    }
}
/* FOND ET ANIMATIONS PRO */
#vrai-accueil {
    position: fixed !important;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    
    /* ON EST TRANSPARENT ICI POUR VOIR LE BODY */
    background: transparent !important; 
    
    font-family: 'Inter', sans-serif;
    color: white;
    z-index: 10;
    overflow: hidden;
    display: none; 
}

/* NOUVELLE ANIMATION : Mouvement en 8 pour plus de dynamisme */
@keyframes sunsetFlowComplex {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

.bubble {
    position: absolute;
    background: rgba(251, 191, 36, 0.15) !important; /* Un peu plus d'opacité */
    border-radius: 50%;
    filter: blur(100px) !important;
    z-index: -1;
}

/* Bulle 1 : Mouvement lent */
.bubble:nth-child(1) { 
    width: 600px; height: 600px; 
    top: -10%; left: -10%; 
    animation: float1 25s infinite alternate ease-in-out;
}

/* Bulle 2 : Mouvement plus rapide */
.bubble:nth-child(2) { 
    width: 400px; height: 400px; 
    bottom: -10%; right: -5%; 
    animation: float2 15s infinite alternate ease-in-out;
}

@keyframes float1 {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 50px); }
}

@keyframes float2 {
    from { transform: translate(0, 0); }
    to { transform: translate(-80px, -120px); }
}


/* HEADER */
.app-header h1 {
    text-align: center;
    font-size: 32px;
    letter-spacing: 5px;
    margin-top: 40px;
    font-weight: 900;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 70px;
}

.stat-label { 
    display: block !important;
    font-size: 10px; 
    color: #94a3b8; 
    letter-spacing: 1px; 
}
.stat-value { 
    display: block !important;
    font-size: 20px; 
    font-weight: 700; 
    color: #f8fafc; 
}
/* CERCLE CENTRAL */
.progress-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.circle-progress {
    width: 160px;  /* Réduit au lieu de 190px */
    height: 160px; /* Réduit au lieu de 190px */
    border-radius: 50%;
    border: 7px solid var(--accent-color) !important;
    border-top-color: transparent; 
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(35deg);
    margin-bottom: 20px; /* Espace avec le texte en dessous */
}

.center-icon {
    font-size: 50px; /* Réduit au lieu de 60px */
    color: var(--accent-color); 
    transform: rotate(-35deg);
}
/* Le conteneur qui contient "Prêt à réviser..." */
.status-text {
    margin-top: 10px;
    margin-bottom: 25px; /* Espace avant le bouton */
}

.status-text h2 {
    font-size: 22px; /* Un poil plus petit pour gagner de la place */
    margin-bottom: 5px;
}

.status-text p {
    font-size: 14px;
    opacity: 0.9;
}
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centre verticalement */
    height: 80%; /* Laisse de la place pour TYPIO en haut et la NAV en bas */
    padding: 20px;
}
/* Ce bloc va forcer tout le contenu à remonter de 40 pixels */
.vrai-accueil-content { 
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-40px) !important; /* REMONTE TOUT VERS LE HAUT */
}

.status-text h2 {
    margin-top: 10px !important;
    font-size: 20px !important;
}

/* Ajustement du bouton Scanner */
.btn-scan {
    /* --- Les propriétés d'alignement cruciales --- */
    display: flex;            /* Active le mode Flexbox */
    justify-content: center;  /* Centre horizontalement (gauche/droite) */
    align-items: center;      /* Centre verticalement (haut/bas) */
    text-align: center;       /* Sécurité pour le texte */
    gap: 12px;                /* Espace fixe entre l'icône et le texte */

    /* --- Le reste du design (à ajuster selon tes goûts) --- */
    background: white;
    color: #4E67EB;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: fit-content;       /* Le bouton s'adapte à la taille du texte */
    min-width: 250px;         /* Optionnel : donne une largeur minimale pour un look plus pro */
    margin: 0 auto;           /* Centre le bouton lui-même dans son parent */
}
/* TEXTE */
.welcome-message { text-align: center; margin: 4px 0; }
.welcome-message h2 { font-size: 18px; margin-bottom: 3px; }
.welcome-message p { opacity: 0.8; font-size: 13px; }
/* BOUTON SCAN */
.action-container {
    padding: 10px 30px;
    margin-top: 4px;
}
.btn-scan {
    width: 100%;
    background: #FFFFFF; /* Blanc identique au logo */
    color: #1e3c72; /* Écriture rappelant la couleur la plus sombre du fond */
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}
.btn-scan:active {
    transform: scale(0.95);
}

/* NAV BASSE */
/* BARRE DE NAVIGATION (Unique et corrigée) */
/* LA BARRE SOMBRE DÉFINITIVE */
.bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    
    /* ON FORCE LA COULEUR SOMBRE ICI */
    background-color: #0f172a !important; 
    background: rgba(15, 23, 42, 0.95) !important;
    
    /* On enlève les bordures blanches parasites */
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    
    display: none; /* Piloté par ton JS (piloterNav) */
    justify-content: space-around !important;
    align-items: center !important;
    border-radius: 25px 25px 0 0 !important;
    z-index: 9999 !important;
}
.bottom-nav.visible {
    display: flex !important;
}
.nav-item {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px;
}

.nav-item.active {
    color: var(--accent-color) !important; /* Jaune ambre comme sur ta capture */
}
.nav-item.active i {
    color: var(--accent-color) !important; /* L'icône active prend la couleur ambrée du sunset */
    stroke-width: 2; /* Un peu plus épaisse quand sélectionnée */
}

.nav-item i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* 3. LE CERCLE JAUNE ET L'ÉTOILE (Précis) */
.progress-container {
    display: flex;
    justify-content: center;
        margin: 8px 0;
    position: relative;
    z-index: 1;
}

.circle-progress {
    width: 90px !important;
    height: 90px !important; 
    border: 5px solid var(--accent-color) !important;
    border-top-color: transparent !important; 
    margin: 0 auto 8px auto !important;
    
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.center-icon {
        font-size: 26px !important;
    color: var(--accent-color) !important;
}
.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px 1px rgba(255, 255, 255, 0.9), 0 0 15px 2px rgba(251, 191, 36, 0.4);
    opacity: 0;
    /* On ajoute le scintillement de luminosité en plus du mouvement */
    animation-name: sparkle-blink;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes sparkle-blink {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(2.2) blur(1px); }
}

/* 2. LES DIRECTIONS AVEC TRAJECTOIRES COURBES */

/* DIRECTION 1 : Zig-zag ascendant */
.dir-1 { animation: magicFloat1 14s infinite ease-in-out; }
@keyframes magicFloat1 {
    0% { transform: translate(-10vw, 80vh) scale(0); opacity: 0; }
    25% { transform: translate(25vw, 60vh) scale(1.2); opacity: 1; }
    50% { transform: translate(45vw, 75vh) scale(1); } /* Redescente douce */
    75% { transform: translate(75vw, 30vh) scale(1.2); }
    100% { transform: translate(110vw, 10vh) scale(0.5); opacity: 0; }
}

/* DIRECTION 2 : La Spirale descendante */
.dir-2 { 
    animation: magicFloat2 18s infinite ease-in-out; 
    animation-delay: 3s; 
}
@keyframes magicFloat2 {
    0% { transform: translate(110vw, 10vh) scale(0); opacity: 0; }
    30% { transform: translate(70vw, 40vh) scale(1.3); opacity: 1; }
    60% { transform: translate(85vw, 65vh) scale(0.8); } /* Déviation latérale */
    100% { transform: translate(-10vw, 95vh) scale(0.5); opacity: 0; }
}

/* DIRECTION 3 : Le Tourbillon central */
.dir-3 { 
    animation: magicFloat3 22s infinite ease-in-out; 
    animation-delay: 6s; 
}
@keyframes magicFloat3 {
    0% { transform: translate(50vw, 110vh) scale(0); opacity: 0; }
    40% { transform: translate(15vw, 50vh) scale(1.5); opacity: 1; } /* Crochet large à gauche */
    75% { transform: translate(85vw, 25vh) scale(1.1); } /* Crochet large à droite */
    100% { transform: translate(50vw, -10vh) scale(0); opacity: 0; }
}

/* VARIATIONS DE TAILLES (Pour le réalisme) */
.sparkle:nth-child(even) { width: 1px; height: 1px; }
.sparkle:nth-child(3n) { width: 3px; height: 3px; }
#view-profil {
    /* Indispensable pour voir le fond de l'accueil derrière */
    background: transparent !important; 
    
    display: none; /* Sera changé en 'flex' par ton switchTab */
    flex-direction: column;
    align-items: center;
    padding: 20px;
    color: white;
    
    /* Optionnel : permet de centrer verticalement le contenu si besoin */
    min-height: 100vh; 
    justify-content: flex-start;
}
.settings-list {
    width: 100%;
    max-width: 400px;
    padding-bottom: 100px; /* Espace pour la nav bar */
}
.settings-divider {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 25px 0 10px 15px;
    opacity: 0.5;
    font-weight: 700;
}
.setting-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.setting-item:active {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: scale(0.98);
}
.setting-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.setting-info i {
    width: 20px;
    font-size: 18px;
    color: var(--accent-color); /* Couleur dorée pour les icônes */
}
.setting-info span {
    font-size: 15px;
    font-weight: 500;
}
.arrow {
    font-size: 12px;
    opacity: 0.3;
}
.logout-btn {
    width: 100%;
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    color: #f87171;
    padding: 18px;
    border-radius: 18px;
    margin-top: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logout-btn:active {
    transform: scale(0.96); /* Petit effet d'enfoncement au clic */
    background: rgba(255, 77, 77, 0.3) !important;
}
.view-container {
    display: none; /* Toujours caché au départ */
    padding: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}
/* On force toutes les vues à être transparentes pour voir le body derrière */
#view-profil, #view-stats, #view-fiches {
    background: transparent !important;
    width: 100%;
    min-height: 100vh;
}
.page-title {
    font-size: 24px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.profile-header-box {
    text-align: center;
    margin-bottom: 30px;
}
.avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    /* --- AJOUTE CES DEUX LIGNES --- */
    z-index: 999;           /* Place l'avatar au-dessus de tout le reste du profil */
    pointer-events: auto;   /* Force l'élément à intercepter les clics */
    cursor: pointer;        /* Assure que la main s'affiche au survol */
}
.avatar-placeholder, .edit-badge {
    pointer-events: none; 
}
.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 35px; /* Carré arrondi moderne */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    backdrop-filter: blur(10px);
}
.edit-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent-color);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0f172a;
    font-size: 14px;
    border: 3px solid #0f172a;
}
.user-name { font-size: 22px; font-weight: 700; margin-bottom: 5px; }
.user-level { font-size: 14px; opacity: 0.7; font-weight: 400; }
/* MODALE PHOTO */
.modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: flex-end; /* Apparaît en bas sur mobile */
}

.modal-content {
    background: #1e293b;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 30px 30px 0 0;
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.avatar-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.avatar-options button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.close-modal {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 10px;
}
.preset-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes pour que ce soit aéré */
    gap: 15px;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.preset-item {
    width: 80px; /* Taille fixe pour éviter l'effet géant */
    height: 80px;
    border-radius: 50%; /* On les met en rond */
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    border: 3px solid transparent;
}

.preset-item:hover {
    transform: scale(1.1);
    border-color: var(--accent-color); /* Ton jaune Typio */
}
/* LE BOUTON SWITCH (ON/OFF) */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px; width: 14px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider { background-color: var(--accent-color); }
input:checked + .slider:before { transform: translateX(20px); }
/* Variables de base (tout en haut de ton CSS si possible) */
:root {
    --accent-color: #fbbf24; /* Le jaune ambré Typio par défaut */
}

/* Style des pastilles de couleur */
.color-opt {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease;
}
.color-opt:hover { transform: scale(1.1); border-color: white; }

/* Style du Switch On/Off */
.switch { position: relative; display: inline-block; width: 40px; height: 20px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1); transition: .4s; border-radius: 34px;
}
.slider:before {
  position: absolute; content: ""; height: 14px; width: 14px;
  left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--accent-color); }
input:checked + .slider:before { transform: translateX(20px); }
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.scan-option-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.scan-option-btn i {
    font-size: 20px;
    color: var(--accent-color); /* Utilise ta couleur de thème */
    width: 30px;
}

.scan-option-btn:active {
    background: rgba(255, 255, 255, 0.1);
}
/* La carte type Bristol */
.bristol-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    border-left: 10px solid #4E67EB; /* Barre latérale bleue */
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Surligneur jaune pour les définitions */
.highlight-def {
    background: #fff176;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Mots-clés en rouge important */
.term-important {
    color: #e74c3c;
    font-weight: 800;
    border-bottom: 2px solid #e74c3c;
}

/* Bloc Astuce stylisé */
.astuce-box {
    background: #f0f4ff;
    border: 1px dashed #4e67eb;
    border-radius: 12px;
    padding: 15px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Animation de chargement simple */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4E67EB;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.bristol-card {
    background: white;
    padding: 30px;
    border-radius: 5px;
    border-top: 15px solid #4E67EB;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background-image: linear-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 100% 2em;
}
.bristol-card h2 { color: #4E67EB; text-decoration: underline; margin-bottom: 20px; text-transform: uppercase; }
.bristol-card b { color: #e11d48; background: #fff1f2; padding: 0 4px; border-radius: 3px; } /* Mots clés en rouge/rose */
.important-tag { background: #fef08a; padding: 2px 6px; border-bottom: 2px solid #facc15; font-weight: bold; } /* Surlignage jaune */
