        @import "../header.css";
        @import "../footer.css";
        
        :root {
            --bg: #0f172a;
            --card: #1e293b;
            --accent: #10b981;
            --gold: #f59e0b;
            --danger: #ef4444;
            --text: #f8fafc;
            --text-sub: #94a3b8;
            --border: #334155;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-bottom: 30px;
        }


        /* LAYOUT & COMPOSANTS PAGE */
        .container {
            max-width: 950px;
            margin: 30px auto 0 auto;
            padding: 0 15px;
        }

        /* Alerte Code Promo NIKE32 */
        .promo-alert {
            background: rgba(239, 68, 68, 0.12);
            border: 2px solid var(--danger);
            border-radius: 12px;
            padding: 18px 20px;
            margin-bottom: 25px;
            text-align: center;
        }

        .promo-alert h2 {
            color: var(--danger);
            font-size: 1.15rem;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .promo-alert p {
            font-size: 0.95rem;
            color: var(--text);
        }

        .promo-alert strong {
            color: var(--gold);
            background: #0f172a;
            padding: 3px 8px;
            border-radius: 5px;
            font-family: monospace;
            font-size: 1.1rem;
            border: 1px dashed var(--gold);
        }

        /* Publicités Bookmakers Bonus */
        .bonus-section {
            margin-bottom: 35px;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 15px;
        }

        .bonus-card {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            border: 1px solid var(--accent);
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bonus-card h3 {
            color: var(--text);
            font-size: 1.25rem;
            margin-bottom: 5px;
        }

        .bonus-badge {
            color: var(--gold);
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .btn-register {
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            padding: 9px 14px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 0.88rem;
            display: inline-block;
            transition: background 0.2s;
        }

        .btn-register:hover { background-color: #059669; }

        .seo-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .seo-header h1 {
            color: var(--accent);
            font-size: 2.1rem;
            margin-bottom: 8px;
        }

        .seo-header p {
            color: var(--text-sub);
            font-size: 1rem;
        }

        .coupons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .coupon-card {
            background-color: var(--card);
            border-radius: 12px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .coupon-header {
            background: linear-gradient(135deg, #059669, #10b981);
            padding: 12px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: 0.88rem;
        }

        .coupon-body {
            padding: 18px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .coupon-title {
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 12px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            background-color: #0f172a;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--border);
            text-align: center;
            margin-bottom: 15px;
        }

        .stat-item .label {
            font-size: 0.7rem;
            color: var(--text-sub);
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .stat-item .value {
            font-size: 1.05rem;
            font-weight: bold;
            color: var(--text);
        }

        .stat-item .value.gold { color: var(--gold); }

        .code-box {
            background-color: #0f172a;
            border: 1px dashed var(--accent);
            padding: 10px 14px;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .code-info span {
            font-size: 0.75rem;
            color: var(--text-sub);
            display: block;
        }

        .code-text {
            font-family: monospace;
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--gold);
            letter-spacing: 1px;
        }

        .btn-copy {
            background: var(--accent);
            border: none;
            color: white;
            padding: 6px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.8rem;
            transition: background 0.2s;
        }

        .btn-copy:hover { background: #059669; }

        .description-box {
            background-color: #0f172a;
            padding: 10px 12px;
            border-radius: 6px;
            border: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-sub);
            margin-bottom: 15px;
        }

        .btn-bet {
            display: block;
            text-align: center;
            background-color: #2563eb;
            color: white;
            text-decoration: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 0.9rem;
            transition: background 0.2s;
        }

        .btn-bet:hover { background-color: #1d4ed8; }

        .seo-content-block {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
            color: var(--text-sub);
            font-size: 0.92rem;
        }

        .seo-content-block h2 {
            color: var(--text);
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .seo-content-block h3 {
            color: var(--accent);
            font-size: 1.05rem;
            margin: 15px 0 8px 0;
        }

        .seo-content-block p { margin-bottom: 12px; }
        .seo-content-block ol { margin-left: 20px; margin-bottom: 12px; }

        .no-coupon {
            text-align: center;
            padding: 40px 20px;
            background: var(--card);
            border-radius: 12px;
            border: 1px solid var(--border);
        }
        /* FOOTER & AVERTISSEMENT */
.footer {
    background-color: #0b1120;
    border-top: 1px solid var(--border);
    padding: 40px 0 20px 0;
    margin-top: 50px;
    color: var(--text-sub);
    font-size: 0.88rem;
}

.footer-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Bannière d'avertissement */
.warning-box {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 15px 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.warning-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.warning-text {
    color: #cbd5e1;
    font-size: 0.82rem;
    line-height: 1.5;
}

.warning-text strong {
    color: var(--danger);
}

/* Grille Footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-desc {
    color: var(--text-sub);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links strong {
    color: var(--gold);
}

/* Bas de page */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .warning-box {
        flex-direction: column;
        gap: 8px;
    }
}
      