/* ============================================================
   JEUX CLUB — Styles (CSP-safe, aucun inline)
   ============================================================ */

/* Conteneur de la page */
.jeux-club-container {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

/* HEADER BLEU HARMONISE */
.blue-header-zone {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    width: 100%;
    padding: 50px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}
.blue-header-zone h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blue-header-zone p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}
.blue-header-zone .highlight {
    color: #f1c40f;
    font-weight: 700;
}

/* Conteneur Tableau */
.ranking-container {
    width: 100%;
    max-width: 800px;
    padding: 0 15px;
}

/* Tableau */
.ranking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #eee;
}
.ranking-table {
    width: 100%;
    border-collapse: collapse;
}
.ranking-table thead {
    background-color: #34495e;
    color: white;
}
.ranking-table th {
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 600;
}
.ranking-table th:nth-child(1) { text-align: left; }

.ranking-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #f1f2f6;
    font-size: 0.95em;
}
.ranking-table tbody tr:last-child td { border-bottom: none; }
.ranking-table tbody tr:nth-child(even) { background-color: #fafbfc; }
.ranking-table tbody tr:hover { background-color: #f1f9ff; }

.ranking-table td:nth-child(1) { text-align: left; font-weight: 600; color: #2c3e50; }
.ranking-table td:nth-child(2), .ranking-table td:nth-child(3) { text-align: center; font-weight: 500; }
.ranking-table td:nth-child(3) { font-weight: 700; color: #34495e; }

/* TOP 1 */
.rank-1 { background-color: #fffdf0 !important; }
.rank-1 td:nth-child(1)::before { content: "\1F3C6  "; }

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7em;
    margin-left: 6px;
    vertical-align: middle;
}
.badge-gold { background: #f1c40f; color: white; }
.badge-silver { background: #bdc3c7; color: white; }
.badge-bronze { background: #cd6133; color: white; }

/* ----------------------------------------------------------------
   RESPONSIVE : TELEPHONE
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    .blue-header-zone { padding: 30px 15px; margin-bottom: 20px; }
    .blue-header-zone h1 { font-size: 1.4rem; }
    .blue-header-zone p { font-size: 0.9rem; }

    .ranking-table th, .ranking-table td { padding: 10px 5px; font-size: 0.85em; }

    /* Fige la colonne Club sur mobile */
    .ranking-table th:nth-child(1), .ranking-table td:nth-child(1) {
        min-width: 120px;
        position: sticky;
        left: 0;
        z-index: 5;
    }

    /* Fond gris pour le header sticky */
    .ranking-table th:nth-child(1) {
        background-color: #34495e;
    }

    /* Fond blanc pour les cellules de données */
    .ranking-table td:nth-child(1) {
        background-color: white;
    }
    /* Fond jaune pour le TOP 1 */
    .rank-1 td:nth-child(1) { background-color: #fffdf0; }

    .badge { font-size: 0.6em; padding: 2px 5px; }
}