/* ==========================================================================
   1. COULEURS, VARIABLES ET CONFIGURATION GLOBALE
   ========================================================================== */
:root {
    --primary-green: #22c55e;
    --primary-blue: #3b82f6;
    --accent-yellow: #facc15;
    --dark-bg: #0f172a;
    --card-bg: #1b263b;
    --surface-bg: #1e293b;
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Redéfinition du reset global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--dark-bg);
}

body {
    /* Utilisation des polices système ultra-rapides et modernes sans aucun téléchargement externe */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #090d16 50%, #1e1b4b 100%);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. HEADER ET NAVIGATION PREMIUM
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo {
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #00ff88;
    background: linear-gradient(90deg, #00ff88, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Liste du Menu */
.nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.nav a:hover, .nav ul li a.active {
    color: var(--text-white);
    background: rgba(34, 197, 94, 0.15);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--text-white);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

/* ==========================================================================
   3. ACTIONS ET BOUTONS UNIFIÉS
   ========================================================================== */
.btn, .btn-melbet, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn {
    padding: 12px 30px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    background: linear-gradient(90deg, #25d366, #22c55e);
}

.btn-melbet {
    padding: 12px 24px;
    background: linear-gradient(90deg, var(--accent-yellow), #eab308);
    color: #0f172a;
    border-radius: 12px;
    width: 100%;
}

.btn-melbet:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

.btn-secondary {
    padding: 11px 28px;
    background: rgba(30, 41, 59, 0.5);
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
}

.btn-secondary:hover {
    background: var(--accent-yellow);
    color: #020617;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.2);
}

/* Bouton flottant WhatsApp */
.whatsapp-fixed {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-normal);
}

.whatsapp-fixed img {
    width: 22px;
    height: 22px;
}

.whatsapp-fixed:hover {
    transform: translateY(-4px) scale(1.02);
    background-color: #128c7e;
    box-shadow: 0 12px 28px rgba(18, 140, 126, 0.5);
}

/* ==========================================================================
   4. STRUCTURES ET SECTIONS DE CONTENU (PROMO & CAROUSEL)
   ========================================================================== */
.promo {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 35px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.promo::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 60%);
    top: -25%;
    left: -25%;
    animation: glowMove 15s linear infinite;
    pointer-events: none;
}

@keyframes glowMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo * { position: relative; z-index: 2; }

.promo h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
    line-height: 1.3;
}

.promo h2 {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--accent-yellow);
    margin-bottom: 5px;
}

.promo .code, .carousel .code, .inscription .code {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-green);
    margin: 20px 0;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(34,197,94,0.6);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 25px auto;
    max-width: 720px;
    line-height: 1.8;
    text-align: center;
}

/* Zone Carrousel */
.carousel {
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-container { display: flex; }

.carousel .slide {
    display: none;
    min-width: 100%;
    padding: 50px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.carousel .slide.active { display: block !important; }

.slide h2 { color: var(--accent-yellow); font-size: 24px; margin-bottom: 10px;}
.slide p { color: var(--text-muted); margin-bottom: 5px; font-size: 16px;}
.slide .code { font-size: 40px; margin: 15px 0; }
.slide .btn { margin-top: 15px; }

.controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 15px;
}

.controls span {
    cursor: pointer;
    font-size: 24px;
    width: 45px;
    height: 45px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.controls span:hover { background: var(--primary-green); border-color: transparent;}

/* ==========================================================================
   5. GRILLE DE PRONOSTICS
   ========================================================================== */
.section { padding: 60px 20px; max-width: 1200px; margin: auto; }
.section h2 {
    color: var(--accent-yellow);
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.card .league {
    text-align: center;
    color: #3b82f6 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.card h3 {
    text-align: center;
    color: var(--text-white);
    font-size: 10px;
    font-weight: 800;
    margin: 5px 0 10px 0;
    line-height: 1.4;
}

.card .teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.4);
    padding: 10px 7px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.card .team { 
    text-align: center; 
    width: 42%; 
}

.odds-vs {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    text-align: center;
    width: 16%;
}

/* Style des petits badges sous les équipes */
.odds-tag {
    display: inline-block;
    margin-top: 8px;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: var(--transition-normal);
}

.card:hover .odds-tag {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* Alignement pour le titre du meilleur pari et sa cote */
.best-bet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.best-bet-header strong {
    margin-bottom: 0 !important;
}

/* Badge de la cote verte à côté du prono du jour */
.best-odds-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.card .team { text-align: center; width: 45%; }
.card .team img {
    display: block;
    margin: 0 auto 8px auto;
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.card .team span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
}

.card .info { text-align: center; margin-bottom: 15px; }
.card .info p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px;}
.card .location h3 {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 5px;
}

.best-bet {
    background: rgba(255,255,255,0.03);
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-green);
}
.best-bet strong { display: block; font-size: 14px; color: var(--text-white); }
.best-bet .prob { font-size: 12px; font-weight: 700; display: inline-block; margin-top: 4px;}
.best-bet .prob.high { color: var(--primary-green); }
.best-bet .prob.low { color: #ef4444; }

.progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 6px;
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
}
.progress {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    height: 100%;
    border-radius: 10px;
}

.card .btn-melbet { margin-bottom: 10px; }
.card .btn { width: 100%; border-radius: 12px; padding: 10px 20px;}

.no-match-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 7px;
}

/* ==========================================================================
   6. SECTIONS D'ACTUALITÉS HORIZONTALES (BONUS & SPORT)
   ========================================================================== */
.actualiterbonus, .actualitersport {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.actualiterbonus h2, .actualitersport h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-yellow);
    text-align: left;
}

.card-linkbonus, .card-linksport { text-decoration: none; color: inherit; display: block; }

.scroll-containerbonus, .scroll-containersport {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.scroll-containerbonus::-webkit-scrollbar, .scroll-containersport::-webkit-scrollbar { height: 6px; }
.scroll-containerbonus::-webkit-scrollbar-track, .scroll-containersport::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.scroll-containerbonus::-webkit-scrollbar-thumb { background: var(--primary-green); border-radius: 10px; }
.scroll-containersport::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }

.scroll-containerbonus .cardbonus, .scroll-containersport .cardsport {
    flex: 0 0 300px;
    max-width: 300px;
    min-width: 300px;
    background: var(--surface-bg);
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    scroll-snap-align: start;
    transition: var(--transition-normal);
}

.scroll-containerbonus .cardbonus:hover, .scroll-containersport .cardsport:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.1);
}

.scroll-containerbonus .teambonus, .scroll-containersport .teamsport {
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.scroll-containerbonus .teambonus img, .scroll-containersport .teamsport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.scroll-containerbonus .cardbonus:hover img, .scroll-containersport .cardsport:hover img {
    transform: scale(1.06);
}

.scroll-containerbonus .detailsbonus, .scroll-containersport .detailssport {
    padding: 7px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.scroll-containerbonus .pronobonus, .scroll-containersport .pronosport {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}
.scroll-containerbonus .cotebonus, .scroll-containersport .cotesport {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.scroll-containerbonus .datebonus, .scroll-containersport .datesport {
    padding: 0 2px 2px 2px;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 500;
}

/* ==========================================================================
   7. CARACTÉRISTIQUES (FEATURES) & INSCRIPTION
   ========================================================================== */
.home-features { padding: 40px 20px; max-width: 1200px; margin: auto; }
.home-features .section-title { text-align: center; color: var(--accent-yellow); font-size: 32px; font-weight: 800; margin-bottom: 40px; }
.features-grid { display: flex; flex-wrap: wrap; gap: 25px; }

.feature-card {
    background: var(--surface-bg);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    flex: 1;
    min-width: 280px;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-normal);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-white); }
.feature-card p { display: block !important; color: var(--text-muted) !important; font-size: 14px; line-height: 1.6; }

.feature-card.highlights {
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, var(--surface-bg), rgba(239, 68, 68, 0.05));
}
.feature-card.highlights h3 { color: #ef4444; }

/* Section Inscription */
.inscription {
    max-width: 950px;
    margin: 60px auto;
    padding: 50px 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30,41,59,0.8), rgba(15,23,42,0.98));
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
.inscription-flex-container { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 30px; text-align: left; }

.block-promo, .block-guide {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(250, 204, 21, 0.08);
}
.block-promo { text-align: center; }
.block-promo p { font-size: 14px; color: var(--text-muted); margin: 15px 0; }
.block-promo .highlight { color: var(--accent-yellow); font-weight: 700; }
.block-promo .actions { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 20px; }

.block-guide h3 { font-size: 18px; margin-bottom: 15px; color: var(--text-white); }
.block-guide p { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }

.inscription ul, .inscription ol { text-align: left; margin: 20px 0; padding-left: 0; list-style: none; }
.inscription li {
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    font-size: 14px;
    color: var(--text-muted);
    border-left: 3px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}
.inscription li:hover {
    background: rgba(34, 197, 94, 0.08);
    border-left-color: var(--primary-green);
    transform: translateX(5px);
    color: var(--text-white);
}

/* ==========================================================================
   8. GUIDES METHODOLOGIQUES (BONUS & CASINO)
   ========================================================================== */
.bonus {
    max-width: 950px;
    margin: 40px auto;
    padding: 35px;
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.bonus h3 { color: var(--accent-yellow); font-size: 20px; font-weight: 700; margin-top: 30px; margin-bottom: 15px; }
.bonus p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; line-height: 1.7; }
.bonus .highlight { color: var(--accent-yellow); font-weight: 600; }

.bonus ul li {
    background: rgba(255, 255, 255, 0.02);
    margin: 12px 0;
    padding: 14px 20px 14px 25px;
    border-left: 4px solid var(--accent-yellow);
    border-radius: 0 8px 8px 0;
    transition: var(--transition-fast);
    font-size: 14px;
    color: var(--text-white);
}
.bonus ul li:hover {
    background: rgba(250, 204, 21, 0.08);
    transform: translateX(4px);
}

section.casino-top {
    background: var(--surface-bg);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 35px;
    margin: 40px auto;
    max-width: 950px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
section.casino-top h2 { font-size: 26px; color: var(--accent-yellow); font-weight: 800; margin-bottom: 15px; text-align: center; }
section.casino-top p { color: var(--text-muted); font-size: 14px; text-align: center; margin-bottom: 30px; }

section.casino-top ol { list-style: none; counter-reset: casino-counter; }
section.casino-top ol li {
    counter-increment: casino-counter;
    margin-bottom: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.4);
    color: var(--text-white);
    transition: var(--transition-normal);
}
section.casino-top ol li:hover {
    transform: scale(1.015);
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}
section.casino-top ol li h3 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; display: inline-block; }
section.casino-top ol li p { text-align: left; margin-bottom: 0; color: var(--text-muted); font-size: 13px; margin-top: 4px; }

section.casino-top ol li::before {
    content: counter(casino-counter) ". ";
    font-weight: 800;
    color: var(--primary-blue);
    margin-right: 6px;
    font-size: 16px;
}

/* ==========================================================================
   9. STRUCTURE ACCORDÉON FAQ OPTIMISÉE
   ========================================================================== */
.faq { padding: 60px 20px; max-width: 900px; margin: auto; }
.faq h2 { text-align: center; margin-bottom: 35px; color: var(--accent-yellow); font-size: 30px; font-weight: 800; }
.faq-item { margin-bottom: 12px; border-radius: 12px; overflow: hidden; background: var(--surface-bg); border: 1px solid rgba(255,255,255,0.03); }

.faq-question {
    width: 100%;
    padding: 18px 24px;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}
.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
}
.faq-question:hover { background: rgba(255,255,255,0.02); color: var(--accent-yellow); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.30s ease-out;
    background: rgba(15, 23, 42, 0.4);
}
.faq-answer p { padding: 18px 24px; margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.02); }

/* ==========================================================================
   10. LIENS SOCIAUX ET FOOTER LÉGAL
   ========================================================================== */
/* --- Footer Professionnel --- */
.footer {
    background:  #1f2937; /* Couleur légèrement plus sombre que le body */
    border-top: 2px solid #1f2937;
    padding: 40px 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #94a3b8;
    transition: 0.3s;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.85rem;
    color: #64748b;
}
footer p {
    margin: 2 auto;
    font-size: 12px;
    color: #64748b;
    line-height: 1;
    text-align: center;
}

/* ==========================================================================
   11. DESIGN RESPONSIVE FLUIDE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 768px) {
    .promo h1 { font-size: 24px; }
    .promo .code, .inscription .code { font-size: 38px; }
    .section h2, .home-features .section-title { font-size: 24px; }

    /* Menu Hamburger Mobile */
    .menu-toggle { display: block; }
    .nav { position: relative; height: 40px; }
    
    .nav ul {
        position: absolute;
        top: 55px;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: stretch;
        width: 240px;
        padding: 12px;
        border-radius: 14px;
        gap: 4px;
        transform: translateY(15px) scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s linear;
    }
    
    .nav ul.show {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav a { padding: 12px 16px; font-size: 15px; width: 100%; border-radius: 8px;}

    /* Dispositions flexibles */
    .grid { grid-template-columns: 1fr; gap: 20px; }
    .inscription-flex-container { flex-direction: column; gap: 20px; }
    .features-grid { flex-direction: column; }
}

@media (max-width: 600px) {
    .scroll-containerbonus .cardbonus, .scroll-containersport .cardsport {
        flex: 0 0 245px;
        min-width: 245px;
        max-width: 245px;
        height: 360px;
    }
    .scroll-containerbonus .teambonus, .scroll-containersport .teamsport { height: 130px; }
    .scroll-containerbonus .detailsbonus, .scroll-containersport .detailssport { padding: 14px; }
    .scroll-containerbonus .pronobonus, .scroll-containersport .pronosport { font-size: 14px; }
}

@media (max-width: 480px) {
    .whatsapp-fixed span { display: none; }
    .whatsapp-fixed { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px;}
    .promo { padding: 35px 20px; border-radius: 16px; }
    section.casino-top, .bonus, .inscription { padding: 25px 18px; border-radius: 16px;}
}