:root {
        --bg-main: #0a0a0a;
        --bg-surface: #141414;
        --bg-elevated: #1a1a1a;
        --text-main: #f5f5f7;
        --text-dim: #a0a0a0;
        --text-muted: #6a6a6a;
        --accent-gold: #c5a059;
        --accent-gold-dim: #9a7d42;
        --border-subtle: rgba(255,255,255,0.08);
        --border-strong: rgba(255,255,255,0.15);
        
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Inter', sans-serif;
        
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-full: 50px;
        
        --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
        --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
        --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);

        /* Variables additionnelles pour les fiches */
        --winamax-red: #E11D48;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { background-color: var(--bg-main); color: var(--text-main); font-family: var(--font-sans); line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; padding: 0 10%; }
    
    /* Retirer les marges sur mobile et tablette */
    @media (max-width: 1024px) {
        body { padding: 0; }
    }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }
    a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* --- UTILITIES --- */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .serif-title { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.02em; }
    .text-gold { color: var(--accent-gold); }
    .text-dim { color: var(--text-dim); }
    .text-muted { color: var(--text-muted); }

    /* --- BOUTONS --- */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.2px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; white-space: nowrap; }
    .btn-primary { background: var(--text-main); color: var(--bg-main); border: 2px solid var(--text-main); }
    .btn-primary:hover { background: transparent; color: var(--text-main); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-outline { background: transparent; color: var(--text-main); border: 2px solid var(--border-strong); }
    .btn-outline:hover { background: var(--text-main); color: var(--bg-main); border-color: var(--text-main); transform: translateY(-2px); }
    .btn-gold { background: var(--accent-gold); color: var(--bg-main); border: 2px solid var(--accent-gold); font-weight: 700; }
    .btn-gold:hover { background: var(--accent-gold-dim); border-color: var(--accent-gold-dim); transform: scale(1.05); }

    /* --- HEADER --- */
    .site-header { height: 50px; display: flex; align-items: center; border-bottom: 1px solid var(--border-subtle); background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; }
    .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 80px; }
    .logo { font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; letter-spacing: 2px; flex-shrink: 0; }
    .logo-symbol { color: var(--accent-gold); font-size: 1.4rem; line-height: 1; }
    .main-nav { margin-left: auto; }
    .main-nav ul { display: flex; gap: 48px; align-items: center; }
    .main-nav a { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.8px; color: var(--text-dim); position: relative; }
    .main-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent-gold); transition: width 0.3s ease; }
    .main-nav a:hover { color: var(--text-main); }
    .main-nav a:hover::after { width: 100%; }

    /* --- HERO SECTION --- */
    .hero { padding: 10px 0 10px 0; background: var(--bg-main); position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); opacity: 0.3; }

    /* --- TOP SELECTION --- */
    .top-selection { padding: 10px 0 60px 0; background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%); }
    .section-header { text-align: center; margin-bottom: 24px; }
    .sub-title { text-transform: uppercase; letter-spacing: 4px; font-size: 0.7rem; font-weight: 700; color: var(--accent-gold); display: block; margin-bottom: 16px; }
    .section-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 400; letter-spacing: -0.02em; }
    .top-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .premium-card { background: var(--bg-surface); padding: 40px 32px; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); position: relative; transition: all 0.4s ease; display: flex; flex-direction: column; }
    .premium-card:hover { border-color: var(--border-strong); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .premium-card.highlight { border: 2px solid var(--accent-gold); background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface)); }
    .card-badge { position: absolute; top: 20px; right: 20px; background: var(--accent-gold); color: var(--bg-main); font-size: 0.65rem; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 1px; }
    .brand-header { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 20px; text-align: center; min-height: 160px; justify-content: center; }
    .mini-logo { object-fit: contain; background: #fff; padding: 2px; border-radius: var(--radius-sm); flex-shrink: 0; width: 160px;}
    .operator-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; }
    .score { font-size: 1.4rem; font-weight: 700; color: var(--accent-gold); }
    .bonus-amount { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; color: var(--text-main); min-height: 100px; }
    .features-list li { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 12px; padding-left: 22px; position: relative; }
    .features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-gold); font-weight: 700; }
    .premium-card .features-list { min-height: 140px; }
    .premium-card .trust-tools { margin-top: auto !important; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); min-height: 100px; }
    .premium-card > .btn { flex-shrink: 0; }

    /* --- CLASSEMENT 4-14 --- */
    .comparatif-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
    .row-comparatif { display: grid; grid-template-columns: 45px 140px 1.8fr minmax(180px, 260px) 60px 145px; align-items: center; column-gap: 16px; padding: 20px 20px; background: var(--bg-surface); border-radius: var(--radius-md); border: 1px solid var(--border-subtle); transition: all 0.3s ease; }
    .row-comparatif:hover { border-color: var(--border-strong); background: var(--bg-elevated); transform: translateX(4px); }
    .rank-text { font-weight: 800; color: var(--text-muted); font-size: 1.3rem; text-align: center; }
    .operator-container { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .operator-name-small { font-size: 0.75rem; font-weight: 600; color: var(--text-dim); text-align: center; }
    .row-comparatif img { background: transparent; padding: 0; border: 2px solid #fff; border-radius: var(--radius-sm); object-fit: contain; flex-shrink: 0; }
    .bonus-text { font-weight: 500; font-size: 0.85rem; color: var(--text-main); line-height: 1.4; align-self: center; padding: 0 16px; }
    .advantages-list { display: flex; flex-direction: column; gap: 6px; }
    .advantages-list li { font-size: 0.85rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; line-height: 1.3; }
    .advantages-list li::before { content: '✓'; color: #22c55e; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
    .gold-score-small { color: var(--accent-gold); font-weight: 800; font-size: 1.5rem; }

    /* --- 2. EXTENSION FICHE DÉTAIL (ADAPTÉE AU DARK MODE) --- */
    .operator-card-detail {
        background: var(--bg-surface);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin: 40px 0;
    }

    .card-header-detail {
        display: flex;
        align-items: center;
        padding: 30px;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border-subtle);
        gap: 20px;
    }

    .rank-badge-gold {
        background: var(--accent-gold);
        color: var(--bg-main);
        font-weight: 900;
        font-size: 24px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    .score-circle-detail {
        margin-left: auto;
        text-align: center;
        background: transparent;
        padding: 10px 20px;
        border-radius: 50px;
        border: 2px solid var(--accent-gold);
    }

    .data-grid-detail {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding: 30px;
    }

    .info-box-detail {
        padding: 25px;
        border-radius: var(--radius-md);
        background: var(--bg-elevated);
        border: 1px solid var(--border-subtle);
    }

    .info-box-detail h4 { 
        margin-bottom: 15px; 
        color: var(--accent-gold); 
        text-transform: uppercase; 
        font-size: 0.8rem; 
        letter-spacing: 1px;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 10px;
    }

    .tech-table { width: 100%; font-size: 14px; border-collapse: collapse; color: var(--text-dim); }
    .tech-table td { padding: 10px 0; border-bottom: 1px solid var(--border-subtle); }
    .tech-table strong { color: var(--text-main); }

    .btn-winamax-detail {
        display: inline-block;
        background: var(--winamax-red);
        color: white;
        padding: 18px 45px;
        border-radius: var(--radius-full);
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) { 
        .top-cards-grid { grid-template-columns: 1fr; gap: 20px; }
        .brand-header { min-height: unset; }
        .bonus-amount { min-height: unset; }
        .premium-card .features-list { min-height: unset; }
        .row-comparatif { grid-template-columns: 1fr; row-gap: 12px; text-align: center; }
    }
    @media (max-width: 768px) { 
        .main-nav { display: none; } 
        .card-header-detail { flex-direction: column; text-align: center; }
        .score-circle-detail { margin: 0 auto; }
    }
	
/* --- COMPOSANTS DES FICHES DÉTAILLÉES --- */
.detail-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 80px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.detail-intro {
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 35px;
}

.detail-screenshot {
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-strong);
}

.detail-screenshot img {
    width: 100%;
    display: block;
}

/* TABLEAU TECHNIQUE PUR CSS */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.02);
}

.detail-table th {
    background: var(--bg-elevated);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 15px 20px;
    text-align: left;
}

.detail-table td {
    padding: 5px 5px;
    border-bottom: 1px solid var(--border-subtle);
}

.detail-table td:first-child {
    font-weight: 700;
    color: var(--text-main);
    width: 35%;
}

.detail-table td:last-child {
    font-weight: 300;
    color: var(--text-dim);
}

/* BLOCS AVIS ET PROS/CONS */
.expert-opinion {
    background: var(--bg-elevated);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.point-box {
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.point-box.pros { border-left: 4px solid #22c55e; }
.point-box.cons { border-left: 4px solid #ef4444; }

.point-box h5 {
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* GUIDE SECTION */
.guide-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
}

.guide-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 40px;
}

.guide-title {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.guide-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 40px;
}

/* Méthodologie Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.method-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.method-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.weight {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legal & Games Tables */
.legal-table, .games-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.legal-table thead, .games-table thead {
    background: var(--bg-main);
}

.legal-table th, .games-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-gold);
}

.legal-table td, .games-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-dim);
}

.legal-table tbody tr:last-child td, .games-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover, .games-table tbody tr:hover {
    background: var(--bg-elevated);
}

.game-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.authorized {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid #22c55e;
}

/* FAQ */
.faq-container {
    margin-top: 32px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-dim);
    line-height: 1.8;
    margin: 0;
}

/* FOOTER */
.site-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

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

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

.footer-links a {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.contact-info {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent-gold);
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 48px 0 32px 0;
}

.responsible-gaming {
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.rg-warning {
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 8px 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .guide-block {
        padding: 32px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .games-table {
        font-size: 0.85rem;
    }
    .games-table th, .games-table td {
        padding: 12px;
    }
}