h1 {
    text-align: center;
}
body {
    margin: 0;
    background: linear-gradient(135deg, #0d1b22, #1e3a45, #104f54);
    font-family: Arial, sans-serif;
    color: #e2e2e2;
    cursor: crosshair;
}

.question {
    background: rgba(0, 0, 0, 0.45);
    border-left: 5px solid #3ad1b4;
    padding: 25px;
    margin: 30px auto;
    width: 70%;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.question-texte {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
    color: #3ad1b4;
}

label {
    cursor: pointer;
    display: block;
    margin: 10px 0;
    padding: 8px 10px;
    border-radius: 6px;
    transition: 0.2s ease;
}

label:hover {
    background: rgba(58, 209, 180, 0.15);
    transform: translateX(4px);
}



.bouton-valider {
    display: block;
    margin: 30px auto;
    padding: 12px 25px;
    background-color: #00eaff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.bouton-valider:hover {
    box-shadow: 0 0 15px #00eaff;
    transform: scale(1.05);
}

/* Conteneur du résultat */
.resultat-container {
    text-align: center;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

/* Effet lumineux CSI */
.resultat-glow {
    color: #00eaff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}

/* Image gagnant */
.resultat-image {
    margin-top: 20px;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00eaff;
}


