* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #16213e;
    border-radius: 16px;
    padding: 40px;
    width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

h1 {
    color: #e94560;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

h2 {
    color: #e94560;
    text-align: center;
    margin-bottom: 20px;
}

#progression {
    color: #a8a8b3;
    font-size: 14px;
    margin-bottom: 16px;
}

#question {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.5;
}

#choix {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.bouton-choix {
    background-color: #0f3460;
    color: #ffffff;
    border: 2px solid #e94560;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.bouton-choix:hover {
    background-color: #e94560;
}

.correct {
    background-color: #2ecc71 !important;
    border-color: #2ecc71 !important;
}

.incorrect {
    background-color: #e74c3c !important;
    border-color: #e74c3c !important;
}

#message {
    color: #ffffff;
    font-size: 16px;
    min-height: 24px;
    margin-bottom: 16px;
    font-weight: bold;
}

#btn-suivant {
    background-color: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    display: none;
}

#btn-suivant:hover {
    background-color: #c73652;
}

#score {
    color: #ffffff;
    font-size: 64px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

#commentaire {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.cache {
    display: none;
}

button {
    background-color: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

button:hover {
    background-color: #c73652;
}