

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #e8dcc4 0%, #c9b896 100%);
    min-height: 100vh;
}

/* Barre de navigation */
.nav-barre {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #8b4513 0%, #5c3317 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-barre ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.nav-barre li {
    margin: 0;
}

.nav-barre a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-barre a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #5c3317;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
}

h3 {
    color: #555;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1.1rem;
}


#cliquer {
    text-align: center;
    background: linear-gradient(135deg, #f4e4c1 0%, #d4af37 100%);
}

#cliquer h1 {
    color: #5c3317;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#cliquer > p {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.gaming {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.HONSE {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid #8b4513;
    transition: transform 0.2s ease;
}

.HONSE.kiss-mode {
    transform: scale(1.1);
}

.score {
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.score p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.score #compteur {
    font-size: 3rem;
    font-weight: bold;
    color: #8b4513;
    display: block;
}

.reset-btn {
    background: linear-gradient(135deg, #8b4513 0%, #5c3317 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    font-weight: 600;
}

.reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.reset-btn:active {
    transform: translateY(0);
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #8b4513 0%, #5c3317 100%);
    color: white;
}

th, td {
    padding: 1rem;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: #f5f7fa;
}

tbody tr:last-child {
    border-bottom: none;
}

th {
    font-weight: 600;
    background: #8b4513;
    color: white;
}

/* Section Pourquoi */
#pourquoi {
    background: linear-gradient(135deg, #f4e4c1 0%, #c9b896 100%);
}

/* Section Crédits */
#credit {
    background: linear-gradient(135deg, #dcc9aa 0%, #b8a383 100%;)
}

a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #5c3317;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        margin: 1rem;
        padding: 1.5rem;
    }

    section h1 {
        font-size: 2rem;
    }

    .nav-barre a {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .HONSE {
        max-width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .nav-barre ul {
        flex-direction: column;
    }

    .nav-barre a {
        text-align: center;
    }

    section h1 {
        font-size: 1.5rem;
    }

    .score #compteur {
        font-size: 2rem;
    }
}