
    /* ==========================================================================
       STYLE DESIGN ÉPURÉ - PAGE LIGUE
       ========================================================================== */
    :root {
        --bg-main: #ffffff;
        --bg-surface: #f8fafc;
        --card-bg: #ffffff;
        --border-color: #e2e8f0;
        --text-main: #0f172a;
        --text-muted: #64748b;
        --primary-green: #16a34a;
        --primary-green-hover: #15803d;
        --accent-blue: #2563eb;
    }

    body {
        background-color: var(--bg-main);
        color: var(--text-main);
    }

    .section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .section h2 {
        font-size: 24px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 35px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
/* ==========================================================================
       STYLE DES AUTRES SECTIONS (Navigation, Promo, FAQ & Footer)
       ========================================================================== */

    /* 1. HEADER & NAVIGATION */
    .header {
        background-color: var(--bg-main);
        border-bottom: 1px solid var(--border-color);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text-main);
        font-weight: 800;
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 20px;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .nav-menu a:hover {
        color: var(--primary-green);
    }

    .hamburger {
        display: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-main);
    }

    /* Menu Mobile Dynamique */
    .nav-menu.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }

    /* 2. BANNIÈRE CODE PROMO (BOX PREMIUM BLANCHE/SURFACE) */
    .seo-intro-section {
        background-color: var(--bg-main);
        padding: 50px 20px 20px 20px;
        text-align: center;
    }

    .seo-intro-container {
        max-width: 850px;
        margin: 0 auto;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 35px;
    }

    .seo-badge {
        display: inline-block;
        background-color: #f0fdf4;
        color: var(--primary-green);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .seo-intro-container h1 {
        font-size: 28px;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .seo-text {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
    }

    .seo-text strong {
        color: var(--text-main);
        font-weight: 700;
    }
    .promo-banner-white {
        max-width: 1160px;
        margin: 50px auto;
        padding: 30px;
        background-color: var(--bg-surface);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .promo-tag {
        display: inline-block;
        background-color: #eff6ff;
        color: var(--accent-blue);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 50px;
        margin-bottom: 8px;
    }

    .promo-info h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .promo-info p {
        font-size: 14px;
        color: var(--text-muted);
    }

    .promo-actions-group {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    
    /* Grille de cartes adaptative */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 25px;
    }

    /* Style de la carte Match */
    .card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        border-color: rgba(22, 163, 74, 0.2);
    }

    .card .league {
        font-size: 11px;
        font-weight: 800;
        color: var(--primary-green);
        background-color: #f0fdf4;
        padding: 4px 12px;
        border-radius: 50px;
        align-self: flex-start;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .card h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-main);
    }

    /* Blocs équipes VS */
    .teams {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--bg-surface);
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .team {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        width: 40%;
    }

    .team img {
        object-fit: contain;
        background: #ffffff;
        padding: 4px;
        border-radius: 50px;
        border: 1px solid var(--border-color);
    }

    .team span {
        font-size: 14px;
        font-weight: 800;
        color: var(--text-main);
    }

    .odds-tag {
        font-size: 11px;
        color: var(--text-muted);
    }
    .odds-tag strong {
        color: var(--accent-blue);
    }

    .odds-vs {
        font-weight: 900;
        font-size: 14px;
        color: #cbd5e1;
        width: 20%;
        text-align: center;
    }

    .info {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 20px;
        border-bottom: 1px dashed var(--border-color);
        padding-bottom: 15px;
    }

    .info p {
        margin-bottom: 5px;
    }

    .info strong {
        color: var(--text-main);
    }

    /* Encadré Conseil Pronostic */
    .best-bet {
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 20px;
    }

    .best-bet-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .best-bet-header strong {
        font-size: 13px;
        color: var(--text-main);
    }

    .best-odds-badge {
        background-color: var(--text-main);
        color: #ffffff;
        font-size: 12px;
        font-weight: 850;
        padding: 3px 8px;
        border-radius: 6px;
    }

    .prob {
        font-size: 12px;
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
    }
    .prob.high { color: var(--primary-green); }
    .prob.low { color: #f59e0b; }

    .progress-bar {
        width: 100%;
        height: 6px;
        background-color: #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
    }

    .progress {
        height: 100%;
        background: linear-gradient(90deg, #22c55e, var(--primary-green));
    }

    /* Boutons de conversion */
    .btn-melbet {
        display: block;
        text-align: center;
        background: linear-gradient(90deg, #f59e0b, #d97706);
        color: #ffffff !important;
        text-decoration: none;
        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 12px;
        border-radius: 12px;
        margin-bottom: 10px;
        box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
        transition: transform 0.2s ease;
    }

    .btn-melbet:hover {
        transform: scale(1.01);
        filter: brightness(1.05);
    }

    .card .btn {
        display: block;
        text-align: center;
        background-color: transparent;
        color: var(--text-muted);
        border: 1px solid var(--border-color);
        text-decoration: none;
        font-weight: 700;
        font-size: 13px;
        padding: 11px;
        border-radius: 12px;
        transition: all 0.2s ease;
    }

    .card .btn:hover {
        background-color: var(--bg-surface);
        color: var(--text-main);
        border-color: #cbd5e1;
    }
    /* Zone de copie du code */
    .code-copy-wrapper {
        display: flex;
        align-items: center;
        border: 2px dashed var(--primary-green);
        background-color: #f0fdf4;
        border-radius: 12px;
        padding: 6px 6px 6px 14px;
    }

    .code-text {
        font-size: 16px;
        font-weight: 900;
        color: var(--primary-green);
        letter-spacing: 1px;
        margin-right: 15px;
    }

    .btn-copy-unique {
        background-color: var(--text-main);
        color: #ffffff;
        border: none;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 700;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .btn-link-unique {
        background-color: var(--primary-green);
        color: #ffffff;
        text-decoration: none;
        padding: 12px 24px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 12px;
        transition: background 0.2s ease;
    }

    .btn-link-unique:hover {
        background-color: var(--primary-green-hover);
    }

    /* 3. SECTIONS ACCORDÉONS FAQ */
    .faq {
        max-width: 800px;
        margin: 50px auto;
        padding: 0 20px;
    }

    .faq h2 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 25px;
        text-align: center;
    }

    .faq-item {
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 12px;
        background-color: #ffffff;
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 18px 20px;
        font-size: 14px;
        font-weight: 700;
        color: var(--text-main);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question span {
        color: var(--text-muted);
        font-size: 18px;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: var(--bg-surface);
    }

    .faq-answer p {
        padding: 20px;
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    /* 4. FOOTER COMPACT & SÉCURISÉ */
    .footer {
        background-color: var(--bg-surface);
        border-top: 1px solid var(--border-color);
        padding: 40px 20px;
        margin-top: 60px;
        text-align: center;
        font-size: 13px;
        color: var(--text-muted);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .social-links, .footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .social-links a, .footer-links a {
        color: var(--text-main);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .social-links a:hover, .footer-links a:hover {
        color: var(--primary-green);
    }

    .copyright {
        margin-bottom: 10px;
        font-weight: 700;
        color: var(--text-main);
    }

  

    /* Responsive mobile */
    @media (max-width: 768px) {
         .nav-menu {
            display: none;
        }
        .hamburger {
            display: block;
        }
        .grid {
            grid-template-columns: 1fr;
        }
        .section h2 {
            font-size: 20px;
        }
        .seo-intro-section {
            padding: 35px 15px 10px 15px;
        }
        .seo-intro-container h1 {
            font-size: 22px;
        }
        .seo-text {
            font-size: 14px;
        }
    }
      /* ==========================================================================
       MEDIA QUERIES COMPLÉMENTAIRES (TABLETTES & PHONES)
       ========================================================================== */
    @media (max-width: 992px) {
        .promo-banner-white {
            flex-direction: column;
            text-align: center;
            padding: 24px;
            margin: 30px 20px;
        }
        .promo-actions-group {
            flex-direction: column;
            width: 100%;
        }
        .code-copy-wrapper, .btn-link-unique {
            width: 100%;
            justify-content: space-between;
        }
        .btn-link-unique {
            text-align: center;
        }
    }

   