/* ===================================================
   MUSI'QUIZ — STYLES SPÉCIFIQUES
   =================================================== */

/* ===== HERO ===== */
.page-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero h1 em {
    color: var(--accent-color, #a855f7);
    font-style: normal;
}

.page-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== CONTENU ACTIVITÉ ===== */
.activity-content {
    padding: 40px 0;
}

.activity-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.activity-details p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 16px;
}

/* ===== SPECS (durée, joueurs, âge, questions) ===== */
.activity-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.spec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.spec-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.spec-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

/* ===== SECTION JEUX MUSI'QUIZ ===== */
.activity-games {
    padding: 60px 0;
}

.activity-games h2,
.activity-jokers h2,
.activity-teens h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.game-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* ===== SECTION JOKERS ===== */
.activity-jokers {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
}

.jokers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.joker-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.joker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.joker-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.joker-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* ===== SECTION TEENS ===== */
.activity-teens {
    padding: 60px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.activity-teens p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 16px;
}

/* ===== FAQ ===== */
.activity-faq {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.activity-faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.activity-faq details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    cursor: pointer;
}

.activity-faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    list-style: none;
    cursor: pointer;
}

.activity-faq summary::-webkit-details-marker {
    display: none;
}

.activity-faq summary span {
    font-size: 1.3rem;
    transition: transform 0.25s ease;
}

.activity-faq details[open] summary span {
    transform: rotate(45deg);
}

.activity-faq p {
    margin-top: 12px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .activity-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jokers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 560px) {
    .activity-specs,
    .games-grid,
    .jokers-grid {
        grid-template-columns: 1fr;
    }
}