body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fffaf5;
    color: #111;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background-color: transparent;
}

.logo img {
    height: 2.9rem;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #12203E;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a.active,
.nav a:hover {
    color: #0077b6;
}

.btn {
    background-color: #12203E;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Contenu du quiz */
.quiz-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.quiz-question {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

form label {
    display: block;
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Boutons navigation */
.quiz-nav {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.quiz-btn {
    text-decoration: none;
    background-color: #12203E;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.quiz-btn:hover {
    background-color: #0b152b;
}

.top-saboteur {
    background: white;
    border: 1px solid #e8e0d6;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: 1rem 0 1.5rem;
}

.top-saboteur-title {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #556;
    font-weight: 600;
}

.top-saboteur-name {
    margin-top: 0.25rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #12203E;
}

.quiz-results {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid #e8e0d6;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
}

.quiz-results th,
.quiz-results td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #f0e8de;
    text-align: left;
}

.quiz-results th {
    background: #fff6ef;
    color: #12203E;
    font-weight: 700;
}

.quiz-results tr:last-child td {
    border-bottom: none;
}

.saboteur-details {
    margin-top: 2rem;
}

.saboteur-details h3 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    color: #12203E;
}

details.saboteur-profile {
    background: white;
    border: 1px solid #e8e0d6;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1rem;
}

details.saboteur-profile summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-weight: 700;
    color: #12203E;
}

.saboteur-profile-name {
    font-size: 1.05rem;
}

.saboteur-profile-score {
    font-size: 0.95rem;
    font-weight: 600;
    color: #556;
    white-space: nowrap;
}

.saboteur-profile-body {
    overflow-x: hidden;
    margin-top: 1rem;
}

.saboteur-section + .saboteur-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0e8de;
}

.saboteur-section-title {
    font-size: 1rem;
    font-weight: 800;
    color: #12203E;
    margin-bottom: 0.35rem;
}

.saboteur-section-text {
    color: #334;
    line-height: 1.7;
}

/* Footer */
.footer-wave {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.footer-wave img {
    width: 100%;
    height: 80px;
    display: block;
    margin-top: 173px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(27%) saturate(886%) hue-rotate(180deg) contrast(95%);
}

@media (max-width: 768px) {
    .header { padding: 1rem; }
    .logo img { height: 2rem; }
    .quiz-container { margin: 1.5rem auto; padding: 0 1rem; }
    .quiz-question { font-size: 1.1rem; line-height: 1.6rem; }
    form label { padding: 0.8rem 0; font-size: 1rem; }
    .footer-wave img { margin-top: 40px; }
}
