/* -- VARIABLES DE COULEURS -- */
:root {
    --primary-color: #6e3f2d;
    --secondary-color: #4d8ed8;
    --background-color: #e0d0d0;
    --text-color: #333;
    --white: #e7dcc8;
    --correct: #4caf50;
    --incorrect: #f44336;
}

/* -- STYLE GÉNÉRAL -- */
body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

#game-container {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* -- STYLE DU MENU PRINCIPAL -- */
.main-title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Style pour que le lien <a> ressemble à un bouton */
.button-style {
    display: inline-block;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 90, 241, 0.4);
}

h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 30px;
}

/* Cette règle est plus spécifique et plus difficile à annuler */
#reward-modal.hidden, #questions-modal.hidden, .hidden {
    display: none !important;
}

/* -- STYLE DES BOUTONS -- */
button {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 50px; /* Boutons très arrondis */
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 90, 241, 0.4);
}

/* Bouton retour */
#back-to-class-selection, #back-to-theme-selection {
    background-color: #bdc3c7;
    font-size: 1em;
    padding: 10px 20px;
    margin-top: 20px;
}
#back-to-class-selection:hover, #back-to-theme-selection:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Conteneurs de boutons */
#themes-list, #answers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Style des réponses du quiz */
#answers-container button {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
#answers-container button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(61, 90, 241, 0.4);
}

#question-text {
    font-size: 1.5em;
    margin-bottom: 30px;
}

/* -- client/style.css -- */

#progress-container {
    width: 90%;
    background-color: #e0e0e0;
    border-radius: 20px;
    margin: 20px auto;
    position: relative;
    /* NOUVEAU : Centrage parfait du texte */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px; /* Hauteur fixe pour le conteneur */
}

#progress-bar {
    position: absolute; /* Positionné par rapport au conteneur */
    top: 0;
    left: 0;
    height: 100%; /* Prend toute la hauteur du conteneur */
    background-color: var(--secondary-color);
    border-radius: 20px;
    width: 0%; 
    transition: width 0.5s ease-in-out;
}

#progress-text {
    font-weight: 700;
    color: #333; /* Couleur de texte foncée pour un bon contraste */
    font-size: 0.9em;
    position: relative;
    z-index: 2;
    
    /* LIGNE À AJOUTER : Crée une légère ombre blanche autour du texte */
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.7);
}

/* Style pour les thèmes déjà complétés */
.theme-button.completed {
    background-color: var(--correct);
    color: var(--white);
    border: none;
    pointer-events: none; /* Empêche de cliquer à nouveau */
}
.theme-button.completed::after {
    content: ' ✔️';
}

/* -- STYLE DES VIES -- */
#lives-container {
    top: 100px;
    right: 45%;
    font-size: 2em;
    letter-spacing: 5px;
}

/* -- STYLE DE LA RÉCOMPENSE -- */
#reward-button {
    background: linear-gradient(45deg, #ffc107, #f7971e);
    color: var(--text-color);
    font-size: 1.3em;
    margin-top: 20px;
}

/* Style de la pop-up quand elle est VISIBLE */
#reward-modal {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

#reward-modal .modal-content {
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.promo-code {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--background-color);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px dashed var(--primary-color);
    margin-top: 20px;
}

/* Style du bouton fermer (pour le pop-up récompense) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    
    /* On lui donne une taille et une forme circulaire */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    background-color: #f1f1f1; /* Fond gris clair */
    color: #888; /* Couleur de la croix */

    /* On centre parfaitement la croix "×" */
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 28px;
    font-weight: bold;
    line-height: 1; /* Assure un bon alignement vertical */
    
    cursor: pointer;
    transition: all 0.2s ease; /* Animation douce */
}

/* Effet au survol de la souris */
.close-btn:hover {
    background-color: #e0e0e0; /* Fond plus foncé */
    color: #333; /* Croix plus foncée */
    transform: rotate(90deg); /* Petite rotation amusante */
}

.class-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/* -- NOUVEAU STYLE POUR LE SÉLECTEUR DE LANGUE -- */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px; /* Espace entre les drapeaux */
}

/* Dans client/style.css */

.language-selector .language-option {
    font-size: 1.8em;
    background-color: var(--white);
    border: 2px solid transparent;
    padding: 0; /* On enlève le padding pour que l'image prenne toute la place */
    width: 44px; /* Taille fixe pour le cercle */
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    overflow: hidden; /* Cache les bords de l'image qui dépassent */
}

/* NOUVELLE RÈGLE pour l'image à l'intérieur du bouton */
.language-selector .language-option img {
    width: 100%; /* L'image remplit le bouton */
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre bien le cercle */
}

.language-selector .language-option:hover {
    transform: scale(1.1);
}

/* -- STYLE POUR LA MODALE DES RÈGLES -- */
#rules-modal {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* On utilise la classe .hidden pour la cacher/afficher */
#rules-modal.hidden {
    display: none;
}

#rules-modal .modal-content {
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 500px;
}

#rules-modal p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 20px 0 30px 0;
}
