/* ===== 2L Expert Casino — Main CSS ===== */
/* Unified purple/glassmorphism design system */

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

:root {
    /* Core palette */
    --bg: #08050f;
    --bg-surface: #0f0b1a;
    --bg-card: #141025;
    --bg-elevated: #1a1530;

    /* Accents */
    --purple: #a855f7;
    --purple-light: #c084fc;
    --purple-dim: #7c3aed;
    --pink: #ec4899;
    --gradient: linear-gradient(135deg, var(--purple), var(--pink));
    --gradient-subtle: linear-gradient(135deg, rgba(168,85,247,.12), rgba(236,72,153,.08));

    /* Text */
    --text: #f2eefa;
    --text-mid: #d8d2ec;
    --text-dim: #9e98be;

    /* Glass */
    --glass-bg: rgba(20,16,37,.6);
    --glass-border: rgba(168,85,247,.12);

    /* Functional */
    --green: #22c55e;
    --orange: #f59e0b;
    --red: #ef4444;
    --border: rgba(168,85,247,.08);

    /* Sizing */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --radius-full: 100px;
    --container: 1280px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0,0,0,.2);
    --shadow-glow: 0 0 40px rgba(168,85,247,.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

/* Force lisibilité dans tous les contenus éditoriaux */
.page-content p, .tc-editorial p, .review-content p,
.review-main-content p, .tc-fiche-body p, .paiement-description p,
.as-seo-content p, .single-content p {
    color: var(--text) !important;
    font-size: .92rem;
    line-height: 1.78;
}

/* Force tables lisibles PARTOUT — wrapper scroll pour éviter débordement */
.page-content, .tc-editorial, .review-content, .review-main-content,
.tc-fiche-body, .paiement-description, .as-seo-content, .single-content,
.mj-content, .slot-content {
    overflow-x: auto;
}
table {
    width: 100%; border-collapse: collapse; margin: 1rem 0;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); overflow: hidden; font-size: .85rem;
    table-layout: auto;
}
th {
    padding: .65rem 1rem; text-align: left; font-weight: 700; font-size: .72rem;
    text-transform: uppercase; letter-spacing: .3px; color: #f0e6ff !important;
    border-bottom: 1px solid var(--glass-border); background: rgba(168,85,247,.06);
}
td {
    padding: .6rem 1rem; border-bottom: 1px solid var(--border); color: var(--text) !important;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(168,85,247,.03); }

/* Force list items */

/* Force list items */
.page-content li, .tc-editorial li, .review-content li,
.tcf-pc-item, .tc-fiche-body li {
    color: var(--text) !important;
}

/* Line Awesome icons defaults */
.la, .lab {
    font-size: 1em;
    vertical-align: -0.125em;
    display: inline-block;
    line-height: 1;
}
/* Sizing overrides per container */
.cat-chip-icon .la, .cat-chip-icon .lab,
.ic-icon .la, .ic-icon .lab,
.ar-criteria-icon .la, .ar-criteria-icon .lab {
    font-size: 1.25em;
}
.tb-icon .la, .tb-icon .lab {
    font-size: 1em;
}
.pill .la, .pill .lab,
.section-head h2 .la, .section-head h2 .lab {
    font-size: .9em;
    vertical-align: -0.1em;
}

a { color: var(--purple-light); text-decoration: none; transition: color .15s; }
a:hover { color: var(--purple); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { color: #fff; line-height: 1.2; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600;
    font-size: .88rem; border: none; cursor: pointer; transition: all .2s;
    font-family: inherit; text-decoration: none;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 16px rgba(168,85,247,.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(168,85,247,.4); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--glass-border); color: var(--text-mid); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple-light); }
.btn-sm { padding: .4rem 1rem; font-size: .78rem; border-radius: 8px; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; border-radius: var(--radius); }

/* ===== NAV ===== */
.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8,5,15,.9); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo {
    font-size: 1.2rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -.5px; display: flex; align-items: center; gap: .45rem;
    margin-right: 1.5rem; flex-shrink: 0;
}
.nav-logo svg { -webkit-text-fill-color: initial; }
.nav-links { display: flex; gap: .9rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: var(--text-mid); font-size: .85rem; font-weight: 500; display: flex; align-items: center; gap: .25rem; padding: .5rem 0; }
.nav-links > li > a:hover { color: var(--purple-light); }
.dd-arrow { font-size: .6em; transition: transform .2s; }
.has-dropdown:hover .dd-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
    min-width: 220px; background: rgba(20,16,37,.97); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
    box-shadow: 0 12px 40px rgba(0,0,0,.4); padding: .45rem 0;
    opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s;
    transform: translateX(-50%) translateY(12px); z-index: 200;
}
.has-dropdown:hover .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
.nav-dropdown a {
    display: flex; align-items: center; gap: .6rem;
    padding: .55rem 1.2rem; font-size: .82rem; font-weight: 500;
    color: var(--text-mid); white-space: nowrap; transition: background .15s, color .15s;
}
.nav-dropdown a:hover {
    background: rgba(168,85,247,.08); color: var(--purple-light);
}
.nav-dropdown a .la { font-size: .95rem; color: var(--purple); opacity: .7; width: 18px; text-align: center; }
.nav-dropdown a:hover .la { opacity: 1; }

/* Mega dropdown — 2 columns */
.nav-dropdown-mega {
    display: grid; grid-template-columns: 1fr 1fr;
    min-width: 380px; padding: .6rem 0;
}
.nd-col { padding: 0 .3rem; }
.nd-title {
    display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: var(--text-dim); padding: .4rem 1.2rem .3rem;
}
.nav-cta { background: var(--gradient); color: #fff; padding: .5rem 1.2rem; border-radius: var(--radius-sm); font-size: .82rem; font-weight: 600; }
.nav-cta:hover { color: #fff; box-shadow: 0 4px 16px rgba(168,85,247,.3); }

/* ===== HERO (Homepage) ===== */
.hero {
    background: linear-gradient(135deg, var(--purple-dim) 0%, #4f46e5 50%, #7c3aed 100%);
    padding: 3.5rem 0 5.5rem; position: relative; overflow: hidden; text-align: center; color: #fff;
}
.hero::before {
    content: ''; position: absolute; top: -120px; right: -80px;
    width: 400px; height: 400px; background: rgba(255,255,255,.06); border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -100px; left: 15%;
    width: 350px; height: 350px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: .6rem; }
.hero p { font-size: 1.05rem; opacity: .85; max-width: 560px; margin: 0 auto 2rem; }

/* Search box */
.search-box {
    max-width: 600px; margin: 0 auto 1.5rem; display: flex;
    background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius);
    overflow: hidden;
}
.search-box input {
    flex: 1; background: transparent; border: none; padding: .9rem 1.2rem;
    font-size: 1rem; font-family: inherit; outline: none; color: #fff;
}
.search-box input::placeholder { color: rgba(255,255,255,.5); }
.search-box button {
    background: #fff; color: var(--purple-dim); border: none; padding: 0 1.5rem;
    font-size: .88rem; font-weight: 600; cursor: pointer; font-family: inherit;
    border-radius: var(--radius-sm); margin: 4px;
}

/* Filter pills */
.filter-pills { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pill {
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
    padding: .4rem 1rem; border-radius: var(--radius-full); font-size: .8rem;
    font-weight: 500; cursor: pointer; border: 1px solid rgba(255,255,255,.12); transition: all .15s;
}
.pill:hover, .pill.active { background: #fff; color: var(--purple-dim); border-color: #fff; }

/* ===== TOP 3 FLOATING CARDS ===== */
.top3-float { display: flex; justify-content: center; gap: 1.5rem; margin-top: -3rem; position: relative; z-index: 2; }
.top3-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
    padding: 1.5rem; width: 280px; text-align: center; position: relative; transition: transform .2s;
}
.top3-card:hover { transform: translateY(-6px); }
.top3-card.featured { width: 320px; padding: 2rem 1.5rem; border: 2px solid var(--purple); }
.top3-medal {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .85rem; color: #fff;
}
.top3-medal.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.top3-medal.silver { background: linear-gradient(135deg, #9ca3af, #6b7280); }
.top3-medal.bronze { background: linear-gradient(135deg, #f97316, #ea580c); }
.top3-logo {
    width: 100%; height: 52px; background: var(--bg-surface); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; color: var(--text-dim); margin: .8rem 0;
}
.top3-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.top3-card .bonus { font-size: 1.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .3rem; }
.top3-card .detail { font-size: .78rem; color: var(--text-mid); margin-bottom: 1rem; }
.top3-card .detail b { font-weight: 600; color: var(--text); }

/* ===== STAT COUNTERS ===== */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.5rem 0 2rem; }
.counter-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 1.3rem; text-align: center;
}
.counter-val { font-size: 2rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.counter-label { font-size: .78rem; color: var(--text-mid); margin-top: .2rem; }

/* ===== SECTION HEADERS ===== */
.section-head { padding: 1.5rem 0 1rem; display: flex; justify-content: space-between; align-items: center; }
.section-head h2 { font-size: 1.4rem; font-weight: 700; }
.section-head .view-all { font-size: .82rem; font-weight: 600; color: var(--purple-light); }
.tabs { display: flex; gap: .3rem; }
.tab {
    padding: .35rem .9rem; border-radius: var(--radius-full); font-size: .78rem;
    font-weight: 500; color: var(--text-mid); cursor: pointer; border: 1px solid var(--glass-border); transition: all .15s;
}
.tab:hover { border-color: var(--purple); color: var(--purple-light); }
.tab.active { background: var(--gradient); color: #fff; border-color: transparent; }

/* ===== DATA TABLE ===== */
.data-table-wrap {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem;
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead { background: var(--bg-elevated); }
.data-table th {
    padding: .8rem 1rem; font-size: .75rem; font-weight: 600; color: var(--text-mid);
    text-transform: uppercase; letter-spacing: .5px; text-align: left;
}
.data-table td { padding: .9rem 1rem; border-top: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.data-table tr:hover { background: rgba(168,85,247,.04); }

.rank-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px; font-weight: 700; font-size: .85rem;
}
.rank-badge.gold   { background: #d4af37; color: #1a0a00; }
.rank-badge.silver { background: #9ea3b0; color: #0a0a1a; }
.rank-badge.bronze { background: #cd7f32; color: #1a0500; }
.rank-badge.default { background: var(--bg-surface); color: var(--text-mid); }

.casino-cell { display: flex; align-items: center; gap: .8rem; }
.casino-icon {
    width: 80px; height: 44px; background: #fff;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden; padding: 5px 7px;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.casino-icon img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.casino-cell strong { font-weight: 600; color: #fff; }
.casino-cell .sub { font-size: .78rem; color: var(--text-dim); }
.bonus-val { font-weight: 700; color: var(--green); }
.wager-tag { background: #1e1040; color: #ddd0ff; padding: .2rem .5rem; border-radius: 6px; font-size: .75rem; font-weight: 600; border: 1px solid rgba(168,85,247,.2); }
.speed-fast { color: var(--green); }
.speed-mid { color: var(--orange); }
.speed-slow { color: var(--red); }
.score-bar { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: #fff; }
.score-fill-track { width: 60px; height: 6px; border-radius: 3px; background: var(--bg-surface); }
.score-fill { height: 6px; border-radius: 3px; background: var(--gradient); }
.table-cta {
    background: var(--gradient); color: #fff; padding: .45rem .9rem;
    border-radius: 8px; font-size: .78rem; font-weight: 600; white-space: nowrap;
}
.table-cta:hover { color: #fff; box-shadow: 0 4px 12px rgba(168,85,247,.3); }

/* ===== MOSAIC CARDS ===== */
.mosaic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.mosaic-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.mosaic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.mosaic-card.wide { grid-column: span 2; }
.mc-banner {
    height: 110px; background: var(--gradient-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; color: var(--text-dim); position: relative; overflow: hidden;
}
.mc-logo-img { max-width: 70%; max-height: 60%; object-fit: contain; display: block; }
.mc-banner .mc-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--gradient); color: #fff; padding: .15rem .6rem;
    border-radius: var(--radius-full); font-size: .65rem; font-weight: 700;
}
.mc-body { padding: 1.2rem; }
.mc-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.mc-bonus { font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.05rem; margin-bottom: .3rem; }
.mc-meta { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .5rem; }
.mc-tag { padding: .15rem .5rem; border-radius: var(--radius-full); font-size: .65rem; font-weight: 500; background: var(--bg-surface); color: var(--text-mid); }
.mc-tag.green { background: rgba(34,197,94,.08); color: var(--green); }
.mc-score { display: flex; align-items: center; gap: .4rem; font-size: .82rem; }
.mc-score .stars { color: #f59e0b; }
.mc-score .val { font-weight: 700; color: #fff; }
.mc-cta-row { display: flex; gap: .5rem; margin-top: .7rem; }
.mc-cta { flex: 1; text-align: center; padding: .45rem; border-radius: 8px; font-weight: 600; font-size: .78rem; }
.mc-cta.primary { background: var(--gradient); color: #fff; }
.mc-cta.primary:hover { color: #fff; }
.mc-cta.outline { background: transparent; border: 1px solid var(--glass-border); color: var(--text-mid); }

/* ===== CATEGORY CHIPS ===== */
.cat-chips { display: flex; gap: 1rem; padding-bottom: 2rem; flex-wrap: wrap; }
.cat-chip {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 1rem 1.3rem;
    display: flex; align-items: center; gap: .8rem; flex: 1; min-width: 170px;
    cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.cat-chip:hover { border-color: var(--purple); box-shadow: var(--shadow-glow); }
.cat-chip-icon {
    width: 40px; height: 40px; background: var(--gradient-subtle);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.cat-chip h4 { font-size: .88rem; font-weight: 600; }
.cat-chip p { font-size: .72rem; color: var(--text-dim); }

/* ===== GAMES GRID ===== */
.games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; padding-bottom: 2rem; }
.game-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden; transition: transform .15s;
}
.game-card:hover { transform: translateY(-3px); }
.game-img {
    width: 100%; height: 110px; background: var(--gradient-subtle);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.game-info { padding: .6rem .8rem; }
.game-info h4 { font-size: .82rem; font-weight: 600; }
.game-info p { font-size: .7rem; color: var(--text-dim); }

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 2.5rem; margin-bottom: 2rem;
}
.how-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 2rem; text-align: center; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.how-step { text-align: center; }
.step-circle {
    width: 48px; height: 48px; background: var(--gradient);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0 auto .8rem;
}
.how-step h4 { font-size: .92rem; font-weight: 600; margin-bottom: .3rem; }
.how-step p { font-size: .8rem; color: var(--text-mid); }

/* ===== TRUST / INFO SECTION ===== */
.info-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-bottom: 2rem; }
.info-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
}
.info-card .ic-icon { font-size: 2rem; margin-bottom: .6rem; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.info-card p { font-size: .82rem; color: var(--text-mid); }

/* ===== ARTICLES GRID ===== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding-bottom: 2.5rem; }
.article-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden; transition: transform .15s;
}
.article-card:hover { transform: translateY(-3px); }
.article-img {
    width: 100%; height: 140px; background: var(--gradient-subtle);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.article-body { padding: 1.2rem; }
.article-tag {
    display: inline-block; background: rgba(168,85,247,.1); color: var(--purple-light);
    font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: 6px; margin-bottom: .5rem;
}
.article-body h4 { font-size: .92rem; font-weight: 600; margin-bottom: .3rem; line-height: 1.4; }
.article-body p { font-size: .8rem; color: var(--text-mid); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: .8rem 0; font-size: .82rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-mid); }
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb .sep { margin: 0 .4rem; }
.breadcrumb .current { color: var(--purple-light); }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--glass-border); padding: 3rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { font-size: .8rem; color: var(--text-mid); margin-top: .5rem; line-height: 1.6; }
.footer-col h5, .footer-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text); margin-bottom: .8rem; display: block; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .8rem; color: var(--text-mid); }
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
    padding-top: 1.5rem; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .72rem; color: var(--text-dim); }
.badge-18 { background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .5rem; border-radius: 6px; }
.responsible-msg { text-align: center; font-size: .75rem; color: var(--text-dim); max-width: 700px; margin: 0 auto 1rem; }

/* ===== Casino Card Components (fscc / score) ===== */
.fs-casino-card { background:var(--bg-card); border:1px solid var(--glass-border); border-radius:var(--radius-lg); margin-bottom:1.5rem; overflow:hidden; }
.fs-casino-card:first-of-type { border-color:rgba(168,85,247,.3); }
.fscc-header { display:flex; align-items:center; gap:1rem; padding:1rem 1.4rem; background:rgba(168,85,247,.04); border-bottom:1px solid var(--border); flex-wrap:wrap; }
.fscc-rank { font-size:1.4rem; font-weight:900; color:rgba(168,85,247,.4); min-width:36px; }
.fs-casino-card:first-of-type .fscc-rank { color:var(--purple); }
.fscc-badge { font-size:.72rem; font-weight:700; padding:.2rem .6rem; border-radius:5px; background:var(--bg-surface); color:var(--text-mid); white-space:nowrap; }
.fscc-title { flex:1; min-width:180px; }
.fscc-title h3 { font-size:.95rem; font-weight:700; color:#fff; margin:0; }
.fscc-body { padding:1rem 1.4rem; }
.fscc-table-wrap { overflow-x:auto; margin-bottom:.8rem; }
.fscc-table { width:100%; border-collapse:collapse; font-size:.82rem; }
.fscc-table th { padding:.45rem .7rem; background:rgba(168,85,247,.06); color:#f0e6ff; font-weight:700; font-size:.7rem; text-transform:uppercase; border-bottom:1px solid var(--glass-border); text-align:left; white-space:nowrap; }
.fscc-table td { padding:.5rem .7rem; color:var(--text); border-bottom:1px solid var(--border); }
.fscc-table tr:last-child td { border-bottom:none; }
.fscc-pc { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin-top:.8rem; }
.fscc-pros { background:rgba(34,197,94,.05); border:1px solid rgba(34,197,94,.15); border-radius:var(--radius-sm); padding:.8rem 1rem; }
.fscc-cons { background:rgba(239,68,68,.05); border:1px solid rgba(239,68,68,.15); border-radius:var(--radius-sm); padding:.8rem 1rem; }
.fscc-pc-title { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.4px; margin-bottom:.5rem; }
.fscc-pros .fscc-pc-title { color:var(--green); }
.fscc-cons .fscc-pc-title { color:var(--red); }
.fscc-pros ul, .fscc-cons ul { list-style:none; padding:0; margin:0; }
.fscc-pros li, .fscc-cons li { font-size:.8rem; color:var(--text); padding:.2rem 0 .2rem .9rem; position:relative; }
.fscc-pros li::before { content:"+"; position:absolute; left:0; color:var(--green); font-weight:700; }
.fscc-cons li::before { content:"−"; position:absolute; left:0; color:var(--red); font-weight:700; }
.score-table { width:100%; border-collapse:collapse; font-size:.82rem; margin:.8rem 0; }
.score-table th { padding:.4rem .7rem; background:rgba(168,85,247,.06); color:#f0e6ff; font-size:.7rem; font-weight:700; text-transform:uppercase; border-bottom:1px solid var(--glass-border); text-align:left; }
.score-table td { padding:.45rem .7rem; color:var(--text); border-bottom:1px solid var(--border); }
.score-table tr:last-child td { border-bottom:none; }
code.promo-code { background:rgba(168,85,247,.12); color:var(--purple-light); padding:.1rem .4rem; border-radius:4px; font-family:monospace; }

/* CTA full width dans le contenu éditorial */
.btn-play-main {
    display:block; width:100%;
    background:var(--gradient); color:#fff !important; font-weight:700;
    padding:.85rem 2rem; border-radius:var(--radius); font-size:.95rem;
    text-decoration:none; text-align:center;
    transition:box-shadow .15s, transform .15s;
    margin:1.25rem 0;
    box-shadow:0 4px 20px rgba(168,85,247,.35);
}
.btn-play-main:hover { color:#fff !important; box-shadow:0 8px 28px rgba(168,85,247,.5); transform:translateY(-2px); }

@media(max-width:600px) {
    .fscc-pc { grid-template-columns:1fr; }
    .fscc-header { flex-direction:column; align-items:flex-start; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(3, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .top3-float { flex-wrap: wrap; }
}

/* ===== BTN-PLAY-MAIN (CTA dans le contenu review) ===== */
.btn-play-main {
    display: inline-block; background: var(--gradient); color: #fff !important;
    padding: .75rem 2rem; border-radius: var(--radius); font-weight: 700;
    font-size: .95rem; text-decoration: none; text-transform: uppercase;
    letter-spacing: .5px; box-shadow: 0 4px 20px rgba(168,85,247,.35);
    transition: transform .15s, box-shadow .15s;
}
.btn-play-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(168,85,247,.5); color: #fff !important; }

/* ===== BURGER MENU ===== */
.nav-burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; background: transparent; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
    display: block; width: 22px; height: 2px; background: var(--text-mid);
    border-radius: 2px; transition: all .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(8,5,15,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border); padding: 1rem 2rem;
    gap: 0;
}
.nav-links.mobile-open > li { border-bottom: 1px solid var(--border); }
.nav-links.mobile-open > li:last-child { border-bottom: none; }
.nav-links.mobile-open .nav-dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: none; box-shadow: none; backdrop-filter: none;
    padding: 0 0 .5rem 1rem; min-width: auto;
}
.nav-links.mobile-open .nav-dropdown a { padding: .4rem .5rem; font-size: .85rem; }
    gap: .5rem; z-index: 99;
}
.nav-links.mobile-open li a { font-size: 1rem; padding: .6rem 0; display: block; }

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .counters { grid-template-columns: repeat(2, 1fr); }
    .data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .data-table { min-width: 680px; font-size: .8rem; }
    .info-section { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .cat-chips { flex-direction: column; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .site-nav { position: relative; }
    .top3-float { flex-direction: column; align-items: center; }
    .top3-card, .top3-card.featured { width: 100%; max-width: 340px; }
    .mosaic-grid { grid-template-columns: 1fr; }
    .mosaic-card.wide { grid-column: span 1; }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== archive-sd_slot.php ===== */
.as-header {
    padding: 3rem 0 2rem;
}
.as-header .as-bar { width: 40px; height: 4px; background: var(--gradient); border-radius: 2px; margin-bottom: 12px; }
.as-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: .3rem; }
.as-header p { color: var(--text-mid); font-size: .95rem; }

.as-filter-bar {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 1.1rem 1.2rem;
    display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
    margin-bottom: 1.8rem;
}
.as-search {
    flex: 1; min-width: 180px;
    background: var(--bg-surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius-full); padding: .55rem 1.2rem;
    color: var(--text); font-family: inherit; font-size: .88rem; outline: none;
}
.as-search::placeholder { color: var(--text-dim); }
.as-chip {
    padding: .42rem 1.1rem; border-radius: var(--radius-full);
    background: var(--bg-surface); border: 1px solid var(--glass-border);
    font-size: .8rem; font-weight: 500; color: var(--text-mid);
    cursor: pointer; font-family: inherit; transition: all .15s;
}
.as-chip:hover,
.as-chip.active { border-color: var(--purple); color: var(--purple-light); background: rgba(168,85,247,.08); }
.as-select {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-full); padding: .5rem 1.1rem;
    color: var(--text); font-family: inherit; font-size: .8rem;
    outline: none; cursor: pointer; -webkit-appearance: none; appearance: none;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 2rem;
}
.as-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    display: block; color: inherit; text-decoration: none;
}
.as-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168,85,247,.35);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    color: inherit;
}
.as-thumb {
    height: 160px;
    background: var(--gradient-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.8rem; position: relative; overflow: hidden;
}
.as-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.as-demo-badge {
    position: absolute; top: 8px; right: 8px;
    background: var(--gradient); color: #fff;
    font-size: .65rem; font-weight: 700; padding: .2rem .55rem;
    border-radius: var(--radius-full);
}
.as-body { padding: .9rem 1rem 1rem; }
.as-body h3 { font-size: .9rem; font-weight: 700; margin-bottom: .15rem; color: #fff; }
.as-provider { font-size: .75rem; color: var(--text-dim); margin-bottom: .55rem; }
.as-meta { display: flex; gap: .45rem; flex-wrap: wrap; align-items: center; }
.as-tag {
    display: inline-block; padding: .18rem .6rem;
    border-radius: var(--radius-full); font-size: .7rem; font-weight: 600;
}
.as-tag-rtp   { background: rgba(168,85,247,.12); color: var(--purple-light); }
.as-tag-vol-h { background: rgba(239,68,68,.1);   color: var(--red); }
.as-tag-vol-m { background: rgba(245,158,11,.1);  color: var(--orange); }
.as-tag-vol-l { background: rgba(34,197,94,.1);   color: var(--green); }
.as-tag-vol-x { background: rgba(239,68,68,.2);   color: #ff3333; }

.as-rating-row {
    display: flex; align-items: center; gap: .35rem;
    margin-top: .5rem; font-size: .75rem; color: var(--text-mid);
}
.as-stars { color: #f59e0b; letter-spacing: -1px; font-size: .8rem; }

.as-no-results {
    grid-column: 1 / -1; text-align: center;
    padding: 4rem 0; color: var(--text-dim);
}
.as-no-results p { font-size: 1rem; }

.as-pager {
    display: flex; justify-content: center; align-items: center; gap: .4rem;
    padding-bottom: 2.5rem;
}
.as-page-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 600;
    border: 1px solid var(--glass-border); color: var(--text-mid);
    background: var(--bg-card); cursor: pointer;
    font-family: inherit; transition: all .15s;
}
.as-page-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }
.as-page-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple-light); }

/* ===== SEO Content ===== */
.as-seo-content {
    margin-top: 3rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.as-seo-content h2 {
    color: #fff; font-size: 1.5rem; font-weight: 700;
    margin-bottom: .8rem; margin-top: 2.5rem;
}
.as-seo-content h2:first-child { margin-top: 0; }
.as-seo-content h3 {
    color: var(--text); font-size: 1.1rem; font-weight: 600;
    margin-bottom: .5rem; margin-top: 1.5rem;
}
.as-seo-content p { margin-bottom: 1rem; }
.as-seo-content a { color: var(--purple-light); text-decoration: underline; }
.as-seo-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.as-seo-content ul li { margin-bottom: .4rem; }

.as-faq details {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: .5rem;
    overflow: hidden;
}
.as-faq summary {
    cursor: pointer; font-weight: 600; color: #fff;
    padding: .9rem 1.1rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.as-faq summary::-webkit-details-marker { display: none; }
.as-faq summary::after {
    content: '+'; font-size: 1.1rem; color: var(--purple-light);
}
.as-faq details[open] summary { border-bottom: 1px solid var(--glass-border); }
.as-faq details[open] summary::after { content: '−'; }
.as-faq details p { padding: .9rem 1.1rem; color: var(--text-mid); margin: 0; font-size: .88rem; }

@media (max-width: 1024px) { .as-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .as-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .as-grid { grid-template-columns: 1fr; } }

/* ===== archive-sd_review.php ===== */
.ar-hero {
    background: linear-gradient(135deg, var(--purple-dim) 0%, #4f46e5 50%, #7c3aed 100%);
    padding: 3rem 0 4rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ar-hero::before {
    content: '';
    position: absolute; top: -80px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.06); border-radius: 50%;
}
.ar-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: .4rem; }
.ar-hero p { font-size: 1rem; opacity: .8; max-width: 540px; margin: 0 auto; }

.ar-filter-bar {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .6rem;
    padding: 1.2rem 0 .5rem;
}
.ar-tabs { display: flex; gap: .35rem; flex-wrap: wrap; }
.ar-tab {
    padding: .4rem 1rem; border-radius: var(--radius-full);
    font-size: .8rem; font-weight: 500;
    color: var(--text-mid); cursor: pointer;
    border: 1px solid var(--glass-border);
    background: transparent; font-family: inherit;
    transition: all .15s;
}
.ar-tab:hover { border-color: var(--purple); color: var(--purple-light); }
.ar-tab.active { background: var(--gradient); color: #fff; border-color: transparent; }

.ar-count { font-size: .82rem; color: var(--text-dim); }

.ar-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.ar-table { width: 100%; border-collapse: collapse; }
.ar-table thead { background: var(--bg-elevated); }
.ar-table th {
    padding: .85rem 1rem;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    color: var(--text-mid); text-align: left;
    border-bottom: 1px solid var(--border);
}
.ar-table td { padding: 1rem 1rem; border-top: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.ar-table tr:hover td { background: rgba(168,85,247,.04); }
.ar-table tbody tr:first-child td { border-top: none; }

.ar-rank {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    font-weight: 700; font-size: .85rem;
}
.ar-rank.gold   { background: rgba(245,158,11,.15); color: #f59e0b; }
.ar-rank.silver { background: rgba(156,163,175,.15); color: #9ca3af; }
.ar-rank.bronze { background: rgba(249,115,22,.15);  color: #f97316; }
.ar-rank.def    { background: var(--bg-surface);     color: var(--text-dim); }

.ar-casino-cell { display: flex; align-items: center; gap: .75rem; }
.ar-logo {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--bg-surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem; color: var(--text-dim); overflow: hidden;
}
.ar-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.ar-casino-cell strong { font-weight: 600; color: #fff; display: block; }
.ar-casino-cell .ar-sub { font-size: .74rem; color: var(--text-dim); }

.ar-bonus { font-weight: 700; color: var(--green); }
.ar-wager {
    background: rgba(245,158,11,.1); color: var(--orange);
    padding: .2rem .5rem; border-radius: 6px;
    font-size: .75rem; font-weight: 600;
}
.ar-speed { font-size: .85rem; }
.ar-speed.fast   { color: var(--green); }
.ar-speed.mid    { color: var(--orange); }
.ar-speed.slow   { color: var(--red); }

.ar-score { display: flex; align-items: center; gap: .45rem; font-weight: 700; color: #fff; }
.ar-score-track { width: 56px; height: 6px; border-radius: 3px; background: var(--bg-surface); }
.ar-score-fill  { height: 6px; border-radius: 3px; background: var(--gradient); }

.ar-cta {
    background: var(--gradient); color: #fff;
    padding: .45rem .9rem; border-radius: 8px;
    font-size: .78rem; font-weight: 600; white-space: nowrap;
    display: inline-block;
}
.ar-cta:hover { color: #fff; box-shadow: 0 4px 12px rgba(168,85,247,.3); }

.ar-avis {
    display: inline-block; font-size: .75rem; font-weight: 600;
    color: var(--text-mid); border: 1px solid var(--glass-border);
    padding: .35rem .7rem; border-radius: 7px; margin-right: .3rem;
    transition: border-color .15s, color .15s;
}
.ar-avis:hover { border-color: var(--purple); color: var(--purple-light); }

.ar-cta-pair { display: flex; gap: .4rem; align-items: center; }

.ar-pager {
    display: flex; justify-content: center; align-items: center; gap: .4rem;
    padding-bottom: 2rem;
}
.ar-page-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 600;
    border: 1px solid var(--glass-border); color: var(--text-mid);
    background: var(--bg-card); cursor: pointer;
    font-family: inherit; transition: all .15s;
}
.ar-page-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }
.ar-page-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple-light); }

.ar-note {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 1.5rem;
    font-size: .82rem; color: var(--text-mid); margin-bottom: 2.5rem;
    line-height: 1.7;
}
.ar-note strong { color: var(--text); }

/* ===== Bonus Top 3 ===== */
.ar-bonus-section { margin-bottom: 2rem; }
.ar-bonus-section-title {
    font-size: 1.1rem; font-weight: 700; color: #fff;
    margin-bottom: 1rem;
}
.ar-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.ar-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.4rem 1.2rem 1.2rem;
    position: relative;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ar-bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168,85,247,.35);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.ar-bonus-rank {
    position: absolute; top: .8rem; right: .8rem;
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 800;
}
.ar-bonus-rank.rank-1 { background: rgba(245,158,11,.2); color: #f59e0b; }
.ar-bonus-rank.rank-2 { background: rgba(156,163,175,.15); color: #9ca3af; }
.ar-bonus-rank.rank-3 { background: rgba(249,115,22,.15); color: #f97316; }
.ar-bonus-logo {
    width: 52px; height: 52px; margin-bottom: .85rem;
    background: var(--bg-surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem; color: var(--text-dim); overflow: hidden;
}
.ar-bonus-logo img { width: 100%; height: 100%; object-fit: contain; }
.ar-bonus-card h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .55rem; }
.ar-bonus-value {
    font-size: 1.2rem; font-weight: 700; color: var(--green);
    margin-bottom: .4rem;
}
.ar-bonus-details {
    font-size: .75rem; color: var(--text-dim); margin-bottom: .85rem; line-height: 1.5;
}
.ar-bonus-cta {
    display: block; text-align: center;
    background: var(--gradient); color: #fff;
    padding: .5rem .9rem; border-radius: 8px;
    font-size: .8rem; font-weight: 600;
}
.ar-bonus-cta:hover { color: #fff; box-shadow: 0 4px 12px rgba(168,85,247,.3); }

/* ===== SEO Content ===== */
.ar-seo-content {
    margin-top: 3rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.ar-seo-content h2 {
    color: #fff; font-size: 1.5rem; font-weight: 700;
    margin-bottom: .8rem; margin-top: 2.5rem;
}
.ar-seo-content h2:first-child { margin-top: 0; }
.ar-seo-content h3 {
    color: var(--text); font-size: 1.1rem; font-weight: 600;
    margin-bottom: .5rem; margin-top: 1.5rem;
}
.ar-seo-content p { margin-bottom: 1rem; }
.ar-seo-content a { color: var(--purple-light); text-decoration: underline; }

.ar-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.2rem 0;
}
.ar-criteria-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    display: flex; align-items: flex-start; gap: .85rem;
}
.ar-criteria-icon {
    font-size: 1.4rem; flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(168,85,247,.1); border-radius: 10px;
}
.ar-criteria-card h4 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.ar-criteria-card p { font-size: .82rem; margin: 0; }

.ar-faq details {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: .5rem;
    overflow: hidden;
}
.ar-faq summary {
    cursor: pointer; font-weight: 600; color: #fff;
    padding: .9rem 1.1rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.ar-faq summary::-webkit-details-marker { display: none; }
.ar-faq summary::after {
    content: '+'; font-size: 1.1rem; color: var(--purple-light);
    transition: transform .2s;
}
.ar-faq details[open] summary { border-bottom: 1px solid var(--glass-border); }
.ar-faq details[open] summary::after { content: '−'; }
.ar-faq details p { padding: .9rem 1.1rem; color: var(--text-mid); margin: 0; font-size: .88rem; }

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .ar-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .ar-table { min-width: 680px; }
    .ar-hero h1 { font-size: 1.6rem; }
    .ar-bonus-grid { grid-template-columns: 1fr; }
    .ar-criteria-grid { grid-template-columns: 1fr; }
}

/* ===== archive-sd_minijeu.php ===== */
.amj-hero {
    background: var(--bg-surface); border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0 1.5rem; text-align: center;
}
.amj-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: .3rem; }
.amj-hero p { font-size: .92rem; color: var(--text-mid); }

.amj-filters {
    display: flex; gap: .5rem; flex-wrap: wrap;
    padding: 1.5rem 0 1.5rem; align-items: center;
}
.amj-chip {
    padding: .4rem 1.1rem; border-radius: var(--radius-full);
    border: 1px solid var(--glass-border); background: var(--bg-card);
    color: var(--text-mid); font-size: .82rem; font-weight: 500;
    cursor: pointer; font-family: inherit; transition: all .15s;
}
.amj-chip:hover { border-color: var(--purple); color: var(--purple-light); }
.amj-chip.active { background: var(--gradient); color: #fff; border-color: transparent; }

.amj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; padding-bottom: 3rem;
}
.amj-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 14px; overflow: hidden; text-decoration: none;
    transition: transform .2s, box-shadow .2s; display: block;
    color: inherit;
}
.amj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); border-color: rgba(168,85,247,.3); }
.amj-card-img {
    width: 100%; aspect-ratio: 16/9; background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.amj-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.amj-card-img .amj-fallback {
    font-size: 2.5rem; opacity: .4;
}
.amj-type-badge {
    position: absolute; top: 8px; left: 8px;
    background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
    color: #fff; font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; padding: .2rem .55rem; border-radius: 6px;
}
.amj-demo-badge {
    position: absolute; top: 8px; right: 8px;
    background: var(--gradient); color: #fff;
    font-size: .62rem; font-weight: 700; padding: .2rem .5rem;
    border-radius: 6px; letter-spacing: .3px;
}
.amj-card-body {
    padding: .8rem 1rem;
    display: flex; align-items: center; justify-content: space-between;
}
.amj-card-info { min-width: 0; }
.amj-card-name {
    font-size: .9rem; font-weight: 700; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: .15rem;
}
.amj-card-provider {
    font-size: .72rem; color: var(--text-dim); display: flex; align-items: center; gap: .3rem;
}
.amj-card-rtp {
    font-size: .72rem; font-weight: 600; color: var(--purple-light);
    background: rgba(168,85,247,.1); padding: .15rem .5rem; border-radius: 6px;
    white-space: nowrap; flex-shrink: 0;
}

@media (max-width: 1024px) { .amj-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .amj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 450px) { .amj-grid { grid-template-columns: 1fr; } }

/* ===== archive-sd_paiement.php ===== */
.ap-hero {
    text-align: center; padding: 3.5rem 0 2rem;
    max-width: 720px; margin: 0 auto;
}
.ap-hero h1 { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.ap-hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ap-hero p { font-size: 1rem; color: var(--text-mid); }

.ap-filter-bar {
    max-width: 700px; margin: 0 auto 2.5rem;
    padding: .85rem 1.1rem;
    display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap;
    background: rgba(168,85,247,.06); backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
}
.ap-chip {
    padding: .45rem 1.2rem; border-radius: 10px;
    border: 1px solid rgba(168,85,247,.15); background: rgba(168,85,247,.04);
    font-size: .82rem; font-weight: 500; cursor: pointer;
    color: var(--text-mid); font-family: inherit; transition: .2s;
}
.ap-chip:hover { border-color: var(--purple); color: var(--purple-light); }
.ap-chip.active {
    background: var(--gradient); color: #fff;
    border-color: transparent; font-weight: 600;
}

.ap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding-bottom: 2.5rem;
}
.ap-card {
    background: rgba(20,16,37,.6); backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    display: block; color: inherit; text-decoration: none;
}
.ap-card:hover {
    border-color: rgba(168,85,247,.4);
    box-shadow: 0 0 32px rgba(168,85,247,.12);
    transform: translateY(-3px); color: inherit;
}

.ap-card-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.1rem; }
.ap-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px; background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; overflow: hidden;
}
.ap-icon img { width: 100%; height: 100%; object-fit: contain; }
.ap-card-info { flex: 1; }
.ap-card-info h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .15rem; }
.ap-type-tag {
    display: inline-block; font-size: .7rem; font-weight: 600;
    padding: .18rem .6rem; border-radius: var(--radius-full);
    background: rgba(168,85,247,.12); color: var(--purple-light);
}

.ap-speeds {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .6rem; margin-bottom: 1rem;
}
.ap-speed-item { background: var(--bg-elevated); border-radius: 10px; padding: .6rem .8rem; }
.ap-speed-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-dim); margin-bottom: .15rem; }
.ap-speed-val { font-size: .88rem; font-weight: 600; }
.ap-speed-instant { color: var(--green); }
.ap-speed-fast    { color: var(--green); }
.ap-speed-mid     { color: var(--orange); }
.ap-speed-slow    { color: var(--red); }
.ap-speed-na      { color: var(--text-dim); }

.ap-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .8rem; border-top: 1px solid var(--border); }
.ap-rating { display: flex; align-items: center; gap: .4rem; font-size: .85rem; }
.ap-stars { color: #f59e0b; }
.ap-rating-val { font-weight: 700; color: #fff; }
.ap-voir {
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 700; font-size: .85rem; font-family: inherit;
}
.ap-voir:hover { opacity: .75; }

.ap-badge {
    display: inline-block; padding: .2rem .6rem;
    border-radius: 8px; font-size: .7rem; font-weight: 600;
}
.ap-badge-fast    { background: rgba(34,197,94,.12); color: var(--green); }
.ap-badge-medium  { background: rgba(245,158,11,.12); color: var(--orange); }
.ap-badge-slow    { background: rgba(239,68,68,.12);  color: var(--red); }
.ap-badge-na      { background: rgba(90,84,120,.15);  color: var(--text-dim); }

.ap-no-results {
    grid-column: 1 / -1; text-align: center;
    padding: 4rem 0; color: var(--text-dim); font-size: 1rem;
}

.ap-pager {
    display: flex; justify-content: center; gap: .4rem;
    padding-bottom: 2.5rem;
}
.ap-page-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 600;
    border: 1px solid var(--glass-border); color: var(--text-mid);
    background: var(--bg-card); transition: all .15s; font-family: inherit;
}
.ap-page-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }
.ap-page-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple-light); }

.ap-intro {
    font-size: .92rem; color: var(--text-mid); line-height: 1.7;
    max-width: 800px; margin: 0 auto 2rem;
    text-align: center;
}
.ap-intro a { color: var(--purple-light); text-decoration: underline; }

@media (max-width: 900px) { .ap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ap-grid { grid-template-columns: 1fr; } }

/* ===== archive-sd_guide.php ===== */
.ag-hero {
    background: linear-gradient(135deg, var(--purple-dim) 0%, #4f46e5 50%, #7c3aed 100%);
    padding: 3rem 0 4rem;
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.ag-hero::before {
    content: ''; position: absolute; top: -80px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.06); border-radius: 50%;
}
.ag-hero::after {
    content: ''; position: absolute; bottom: -80px; left: 10%;
    width: 260px; height: 260px;
    background: rgba(255,255,255,.04); border-radius: 50%;
}
.ag-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: .4rem; position: relative; z-index: 1; }
.ag-hero p { font-size: 1rem; opacity: .8; max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }

.ag-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .7rem;
    padding: 1.5rem 0 .8rem;
}
.ag-tabs { display: flex; gap: .35rem; flex-wrap: wrap; }
.ag-tab {
    padding: .38rem .95rem; border-radius: var(--radius-full);
    font-size: .8rem; font-weight: 500; color: var(--text-mid);
    cursor: pointer; border: 1px solid var(--glass-border);
    background: transparent; font-family: inherit; transition: all .15s;
}
.ag-tab:hover { border-color: var(--purple); color: var(--purple-light); }
.ag-tab.active { background: var(--gradient); color: #fff; border-color: transparent; }

.ag-search {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-full); padding: .48rem 1.1rem;
    color: var(--text); font-family: inherit; font-size: .85rem;
    outline: none; min-width: 200px;
}
.ag-search::placeholder { color: var(--text-dim); }

.ag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding-bottom: 2.5rem;
}
.ag-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.ag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    color: inherit;
}
.ag-img {
    width: 100%; height: 170px;
    background: var(--gradient-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; position: relative; overflow: hidden; flex-shrink: 0;
}
.ag-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ag-img-placeholder { position: relative; z-index: 1; }

.ag-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.ag-tag {
    display: inline-block; background: rgba(168,85,247,.1); color: var(--purple-light);
    font-size: .7rem; font-weight: 600; padding: .2rem .6rem;
    border-radius: 6px; margin-bottom: .5rem; align-self: flex-start;
}
.ag-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.4; color: #fff; }
.ag-excerpt { font-size: .82rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.ag-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: .9rem; margin-top: .9rem;
    border-top: 1px solid var(--border);
    font-size: .75rem; color: var(--text-dim);
}
.ag-date { font-size: .75rem; color: var(--text-dim); }
.ag-read-more {
    font-size: .75rem; font-weight: 600; color: var(--purple-light);
    transition: color .15s;
}
.ag-read-more:hover { color: var(--purple); }

.ag-card.featured { grid-column: span 2; flex-direction: row; }
.ag-card.featured .ag-img { width: 45%; height: auto; min-height: 200px; flex-shrink: 0; }
.ag-card.featured .ag-body h3 { font-size: 1.15rem; }
.ag-card.featured .ag-excerpt { -webkit-line-clamp: 5; }

.ag-no-results {
    grid-column: 1 / -1; text-align: center;
    padding: 4rem 0; color: var(--text-dim); font-size: 1rem;
}

.ag-pager {
    display: flex; justify-content: center; gap: .4rem;
    padding-bottom: 2.5rem;
}
.ag-page-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 600;
    border: 1px solid var(--glass-border); color: var(--text-mid);
    background: var(--bg-card); transition: all .15s; font-family: inherit;
}
.ag-page-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }
.ag-page-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple-light); }

@media (max-width: 900px) {
    .ag-grid { grid-template-columns: repeat(2, 1fr); }
    .ag-card.featured { grid-column: span 2; flex-direction: column; }
    .ag-card.featured .ag-img { width: 100%; height: 170px; }
}
@media (max-width: 600px) {
    .ag-grid { grid-template-columns: 1fr; }
    .ag-card.featured { grid-column: span 1; }
}

/* ===== single-sd_slot.php ===== */
.slot-demo-wrapper {
    margin: 2rem 0 0;
    position: relative;
}

.slot-stats-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin: 1.25rem 0 0;
    padding: 0;
    overflow: hidden;
}
.slot-stats-title {
    padding: 1.25rem 1.75rem;
    border-right: 1px solid var(--glass-border);
    flex-shrink: 0;
}
.slot-stats-title h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.5px;
    white-space: nowrap;
    margin-bottom: .15rem;
}
.slot-stats-title .stat-provider {
    color: var(--purple-light);
    font-size: .8rem;
    font-weight: 600;
}
.slot-stats-chips {
    display: flex;
    flex: 1;
    align-items: stretch;
    flex-wrap: wrap;
}
.slot-stat-chip {
    flex: 1;
    min-width: 90px;
    text-align: center;
    padding: 1rem .75rem;
    border-right: 1px solid var(--glass-border);
}
.slot-stat-chip:last-child {
    border-right: none;
}
.slot-stat-chip .s-val {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.slot-stat-chip .s-lbl {
    font-size: .68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-top: .2rem;
}

.slot-casino-strip {
    margin-bottom: 2.5rem;
}
.slot-casino-strip-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.slot-casino-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.slot-casino-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: .9rem 1.25rem;
    transition: border-color .2s, transform .15s;
    text-decoration: none;
}
.slot-casino-row:hover {
    border-color: rgba(168,85,247,.35);
    transform: translateX(3px);
}
.slot-casino-row .sc-rank {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-dim);
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}
.slot-casino-row .sc-logo {
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    font-size: .6rem;
    color: var(--text-dim);
}
.slot-casino-row .sc-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}
.slot-casino-row .sc-info {
    flex: 1;
    min-width: 0;
}
.slot-casino-row .sc-name {
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slot-casino-row .sc-bonus {
    font-size: .8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: .1rem;
}
.slot-casino-row .sc-btn {
    background: var(--gradient);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: .5rem 1.2rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
    transition: box-shadow .15s;
}
.slot-casino-row:hover .sc-btn {
    box-shadow: 0 4px 14px rgba(168,85,247,.4);
}

.slot-content-area {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
}
.slot-content-area h2,
.slot-content-area h3 {
    margin-top: 1.5rem;
    margin-bottom: .6rem;
}
.slot-content-area h2:first-child,
.slot-content-area h3:first-child {
    margin-top: 0;
}
.slot-content-area p {
    color: var(--text-mid);
    margin-bottom: .9rem;
    line-height: 1.75;
}
.slot-content-area ul,
.slot-content-area ol {
    padding-left: 1.4rem;
    color: var(--text-mid);
    margin-bottom: .9rem;
}
.slot-content-area li {
    margin-bottom: .35rem;
    line-height: 1.65;
}
.slot-content-area a {
    color: var(--purple-light);
}
.slot-content-area a:hover {
    color: var(--purple);
}

.slot-related {
    margin-bottom: 3rem;
}
.slot-related-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.slot-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.slot-related-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.slot-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(168,85,247,.2);
}
.slot-related-thumb {
    width: 100%;
    height: 110px;
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: var(--text-dim);
    position: relative;
    overflow: hidden;
}
.slot-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot-related-rtp {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(8,5,15,.75);
    color: var(--purple-light);
    font-size: .65rem;
    font-weight: 700;
    padding: .2rem .45rem;
    border-radius: 6px;
}
.slot-related-body {
    padding: .85rem 1rem;
}
.slot-related-body h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .15rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slot-related-body p {
    font-size: .72rem;
    color: var(--text-dim);
}

@media (max-width: 1024px) {
    .slot-related-grid { grid-template-columns: repeat(2, 1fr); }
    .slot-stats-bar { flex-direction: column; align-items: stretch; }
    .slot-stats-title { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .slot-stats-chips { justify-content: center; }
}
@media (max-width: 768px) {
    .slot-stats-bar { border-radius: var(--radius); }
    .slot-stats-title h1 { font-size: 1.25rem; }
    .slot-stat-chip { min-width: 70px; padding: .75rem .5rem; }
    .slot-stat-chip .s-val { font-size: .88rem; }
    .slot-casino-row .sc-bonus { display: none; }
    .slot-related-grid { grid-template-columns: repeat(2, 1fr); }
    .slot-content-area { padding: 1.25rem 1.25rem; }
    .slot-cta-section .btn-play-real { font-size: .95rem; padding: .85rem 1.75rem; }
}
@media (max-width: 480px) {
    .slot-related-grid { grid-template-columns: 1fr 1fr; }
    .slot-stats-chips { flex-wrap: wrap; }
    .slot-stat-chip { min-width: 50%; border-right: none; border-bottom: 1px solid var(--glass-border); }
    .slot-stat-chip:nth-child(odd) { border-right: 1px solid var(--glass-border); }
    .slot-stat-chip:last-child,
    .slot-stat-chip:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ===== single-sd_minijeu.php ===== */
.mj-demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin: 28px 0 48px;
    align-items: start;
}

.mj-demo-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mj-specs-sidebar {
    position: sticky;
    top: 80px;
    background: var(--bg-card);
    border: 1px solid rgba(168,85,247,.2);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(168,85,247,.05);
}

.mj-specs-sidebar .mj-game-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
    line-height: 1.2;
}
.mj-specs-sidebar .mj-provider {
    font-size: .8rem;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.mj-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.mj-stars {
    display: flex;
    gap: 2px;
}
.mj-star {
    width: 14px;
    height: 14px;
    background: var(--gradient);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
}
.mj-star.empty {
    background: var(--bg-elevated);
}
.mj-rating-val {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
}

.mj-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.mj-spec-cell {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(168,85,247,.07);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
}
.mj-spec-cell .mj-spec-label {
    font-size: .68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}
.mj-spec-cell .mj-spec-value {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.mj-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient);
    color: #fff;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .2px;
    transition: box-shadow .25s, transform .2s;
    box-shadow: 0 4px 18px rgba(168,85,247,.35);
    margin-bottom: 0;
}
.mj-cta-btn:hover {
    box-shadow: 0 8px 28px rgba(168,85,247,.55);
    transform: translateY(-1px);
    color: #fff;
}

.mj-quick-casinos {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.mj-quick-casinos-title {
    font-size: .68rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 4px;
}
.mj-qc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: border-color .2s;
}
.mj-qc-row:hover {
    border-color: rgba(168,85,247,.35);
}
.mj-qc-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}
.mj-qc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mj-qc-info {
    flex: 1;
    min-width: 0;
}
.mj-qc-name {
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mj-qc-bonus {
    font-size: .68rem;
    color: var(--purple-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mj-qc-btn {
    background: var(--gradient);
    color: #fff;
    padding: 4px 9px;
    border-radius: 7px;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: box-shadow .2s;
}
.mj-qc-btn:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(168,85,247,.35);
}

.mj-content-body {
    margin-bottom: 48px;
}
.mj-content-body .entry-content {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.8;
}
.mj-content-body .entry-content h2,
.mj-content-body .entry-content h3 {
    color: #fff;
    margin-top: 1.8em;
    margin-bottom: .6em;
}
.mj-content-body .entry-content h2 {
    font-size: 1.3rem;
}
.mj-content-body .entry-content h3 {
    font-size: 1.1rem;
}
.mj-content-body .entry-content p {
    margin-bottom: 1em;
}
.mj-content-body .entry-content ul,
.mj-content-body .entry-content ol {
    margin: .5em 0 1em 1.4em;
}
.mj-content-body .entry-content li {
    margin-bottom: .4em;
}
.mj-content-body .entry-content a {
    color: var(--purple-light);
    text-decoration: underline;
    text-decoration-color: rgba(192,132,252,.3);
}
.mj-content-body .entry-content a:hover {
    color: var(--purple);
}
.mj-content-body .entry-content strong {
    color: #fff;
    font-weight: 600;
}

.mj-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mj-related-section {
    margin-bottom: 56px;
}
.mj-related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.mj-related-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    display: block;
}
.mj-related-card:hover {
    border-color: var(--pink);
    box-shadow: 0 0 28px rgba(236,72,153,.15);
    transform: translateY(-3px);
}
.mj-related-thumb {
    width: 100%;
    height: 72px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: .6rem;
    color: var(--text-dim);
    overflow: hidden;
}
.mj-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mj-related-card h4 {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mj-related-card .mj-related-provider {
    font-size: .7rem;
    color: var(--text-dim);
}

@media (max-width: 1024px) {
    .mj-demo-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 18px;
    }
    .mj-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .mj-demo-wrapper {
        grid-template-columns: 1fr;
    }
    .mj-specs-sidebar {
        position: static;
    }
    .mj-demo-frame iframe {
        height: 400px;
    }
    .mj-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .mj-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .mj-spec-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== single-sd_review.php ===== */
.review-hero {
    background: linear-gradient(135deg, rgba(124,58,237,.18) 0%, rgba(168,85,247,.10) 100%);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0 2rem;
}
.review-hero-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}
.review-casino-logo {
    width: 160px;
    height: 72px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 8px 12px;
}
.review-casino-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.review-casino-logo .logo-placeholder {
    font-size: .75rem;
    color: var(--text-dim);
    text-align: center;
    padding: .4rem;
}
.review-casino-meta {
    flex: 1;
    min-width: 220px;
}
.review-casino-meta h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
.review-inline-stats {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}
.review-score-big {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.review-score-track {
    width: 80px;
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 4px;
    overflow: hidden;
}
.review-score-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--gradient);
}
.review-badge {
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    background: rgba(34,197,94,.12);
    color: var(--green);
}
.review-hero-cta {
    margin-top: .5rem;
    display: flex;
    gap: .75rem;
    align-items: center;
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 1.75rem 0;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.1rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.stat-card .stat-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-dim);
    margin-bottom: .35rem;
}
.stat-card .stat-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.stat-card .stat-value.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.75rem 0;
}
.pros-card,
.cons-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
}
.pros-card .pc-heading {
    font-size: .95rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
}
.cons-card .pc-heading {
    font-size: .95rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
}
.pc-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .65rem;
    font-size: .88rem;
    line-height: 1.5;
    color: var(--text-mid);
}
.pc-item:last-child {
    margin-bottom: 0;
}
.pc-icon-pro {
    color: var(--green);
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .05rem;
}
.pc-icon-con {
    color: var(--red);
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .05rem;
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    margin: 1.75rem 0;
}
.review-main-content {
    min-width: 0;
}

.review-main-content .review-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: #fff;
}
.review-main-content .review-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.review-main-content .review-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.2rem 0 .5rem;
    color: var(--purple-light);
}
.review-main-content .review-content p {
    color: var(--text-mid);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.review-main-content .review-content ul,
.review-main-content .review-content ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}
.review-main-content .review-content li {
    color: var(--text-mid);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: .3rem;
}
.review-main-content .review-content a {
    color: var(--purple-light);
}
.review-main-content .review-content a:hover {
    color: var(--purple);
}

/* Tables dans le contenu des reviews */
.review-main-content .review-content table,
.page-content table,
.single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: .85rem;
    display: table;
}
.review-main-content .review-content thead,
.page-content thead,
.single-content thead {
    background: rgba(168,85,247,.06);
}
.review-main-content .review-content th,
.page-content th,
.single-content th {
    padding: .65rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--glass-border);
}
.review-main-content .review-content td,
.page-content td,
.single-content td {
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    vertical-align: top;
}
.review-main-content .review-content tr:last-child td,
.page-content tr:last-child td,
.single-content tr:last-child td {
    border-bottom: none;
}
.review-main-content .review-content tr:hover td,
.page-content tr:hover td {
    background: rgba(168,85,247,.03);
}

/* Tables dans TOUS les wrappers de contenu (guide, slot, minijeu, paiement) */
.guide-content table,
.entry-content table,
.slot-content-area table,
.mj-content-body table,
.paiement-description table,
.as-seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: .85rem;
    display: table;
}
.guide-content thead, .entry-content thead, .slot-content-area thead,
.mj-content-body thead, .paiement-description thead, .as-seo-content thead {
    background: rgba(168,85,247,.06);
}
.guide-content th, .entry-content th, .slot-content-area th,
.mj-content-body th, .paiement-description th, .as-seo-content th {
    padding: .65rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--glass-border);
}
.guide-content td, .entry-content td, .slot-content-area td,
.mj-content-body td, .paiement-description td, .as-seo-content td {
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    vertical-align: top;
}
.guide-content tr:last-child td, .entry-content tr:last-child td,
.slot-content-area tr:last-child td, .mj-content-body tr:last-child td,
.paiement-description tr:last-child td, .as-seo-content tr:last-child td {
    border-bottom: none;
}

/* Logos dans les cards - éviter le cropping */
.tq-logo img, .tcf-logo img {
    object-fit: contain !important;
    object-position: center !important;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
}
.tq-logo {
    width: 70px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tcf-logo {
    width: 90px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-sidebar {
    position: sticky;
    top: 80px;
}
.sidebar-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--purple);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
}
.sidebar-cta-card .sc-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .3rem;
}
.sidebar-cta-card .sc-bonus {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .2rem;
}
.sidebar-cta-card .sc-detail {
    font-size: .78rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
}
.sidebar-cta-card .sc-detail b {
    color: var(--text);
}
.sidebar-cta-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: .5rem;
    border-radius: var(--radius);
    font-size: .9rem;
    padding: .8rem 1.2rem;
}
.sidebar-cta-card .sc-disclaimer {
    font-size: .68rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin-top: .5rem;
}
.sidebar-stats {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-top: 1rem;
}
.sidebar-stats .ss-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .82rem;
}
.sidebar-stats .ss-row:last-child {
    border-bottom: none;
}
.sidebar-stats .ss-label {
    color: var(--text-dim);
}
.sidebar-stats .ss-val {
    font-weight: 600;
    color: var(--text);
}

.review-cta-section {
    background: linear-gradient(135deg, rgba(168,85,247,.12), rgba(236,72,153,.08));
    border: 1px solid rgba(168,85,247,.25);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}
.review-cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.review-cta-section p {
    color: var(--text-mid);
    font-size: .9rem;
    margin-bottom: 1.4rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.review-cta-section .btn-primary {
    font-size: 1rem;
    padding: .9rem 2.2rem;
    border-radius: var(--radius);
}
.review-cta-section .cta-note {
    display: block;
    margin-top: .75rem;
    font-size: .72rem;
    color: var(--text-dim);
}

.related-section {
    margin: 2rem 0 3rem;
}
.related-section .section-head {
    padding: 0 0 1rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.related-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transition: border-color .15s, box-shadow .15s;
}
.related-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-glow);
}
.related-card .rc-header {
    display: flex;
    align-items: center;
    gap: .7rem;
}
.related-card .rc-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: var(--text-dim);
    flex-shrink: 0;
    overflow: hidden;
}
.related-card .rc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.related-card .rc-name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}
.related-card .rc-bonus {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.related-card .rc-meta {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.related-card .rc-tag {
    font-size: .7rem;
    font-weight: 500;
    padding: .15rem .5rem;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    color: var(--text-mid);
}
.related-card .rc-cta-row {
    display: flex;
    gap: .5rem;
    margin-top: .3rem;
}
.related-card .rc-cta {
    flex: 1;
    text-align: center;
    padding: .4rem .5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .78rem;
}
.related-card .rc-cta.primary {
    background: var(--gradient);
    color: #fff;
}
.related-card .rc-cta.primary:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(168,85,247,.3);
}
.related-card .rc-cta.outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-mid);
}

.review-hero-left { display: flex; flex-direction: column; gap: .7rem; }
.review-hero-left h1 { font-size: 1.6rem; font-weight: 800; margin: 0; }
.review-hero-center { text-align: center; }
.hero-bonus-amount {
    font-size: 2.6rem; font-weight: 800; line-height: 1;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: .2rem;
}
.hero-spins { font-size: 1.6rem; }
.hero-bonus-label { font-size: .8rem; color: var(--text-dim); margin-bottom: 1rem; }
.hero-main-cta { width: 100%; justify-content: center; margin-bottom: .6rem; }
.hero-legal { font-size: .72rem; color: var(--text-dim); }

.review-trust-col {
    display: flex; flex-direction: column; gap: .5rem; min-width: 200px;
}
.trust-badge {
    display: flex; align-items: center; gap: .55rem;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); padding: .55rem .9rem;
    font-size: .8rem; font-weight: 500; color: var(--text);
}
.trust-badge .tb-icon { font-size: 1rem; flex-shrink: 0; }
.trust-badge .tb-check { margin-left: auto; color: var(--green); font-weight: 700; }
.trust-badge.highlight { border-color: rgba(168,85,247,.3); background: rgba(168,85,247,.06); }

.review-ficha {
    margin: 1.5rem 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.review-ficha-title {
    padding: .8rem 1.4rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    background: rgba(168,85,247,.04);
}
.review-ficha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.rf-cell {
    padding: .9rem 1.4rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.rf-cell:nth-child(3n) { border-right: none; }
.rf-cell:nth-last-child(-n+3) { border-bottom: none; }
.rf-cell:nth-last-child(-n+2):nth-child(3n+2) { border-bottom: none; }
.rf-cell:last-child:nth-child(3n+1),
.rf-cell:last-child:nth-child(3n+2) { border-bottom: none; }
.rf-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--text-dim);
    margin-bottom: .25rem;
}
.rf-value {
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
}
.rf-value.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rf-value.good { color: var(--green); }
.rf-value.warn { color: #f59e0b; }

.review-payments {
    margin: 1.5rem 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.review-payments-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.4rem;
    border-bottom: 1px solid var(--border);
    background: rgba(168,85,247,.04);
}
.review-payments-head h3 {
    font-size: .88rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.review-payments-body {
    padding: 1rem 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.pm-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .75rem;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 500;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-mid);
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .review-layout { grid-template-columns: 1fr; }
    .review-sidebar { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .review-ficha-grid { grid-template-columns: repeat(2, 1fr); }
    .rf-cell:nth-child(3n) { border-right: 1px solid var(--border); }
    .rf-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 1024px) {
    .review-hero-inner { grid-template-columns: 1fr 1fr; }
    .review-trust-col { grid-column: span 2; flex-direction: row; flex-wrap: wrap; }
    .trust-badge { flex: 1; min-width: 180px; }
}
@media (max-width: 768px) {
    .review-hero-inner { grid-template-columns: 1fr; gap: 1.2rem; }
    .review-trust-col { grid-column: auto; flex-direction: column; }
    .trust-badge { min-width: auto; }
    .hero-bonus-amount { font-size: 2rem; }
    .review-hero-left h1 { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .review-cta-section { padding: 1.5rem; }
    .review-cta-section h2 { font-size: 1.2rem; }
    .review-ficha-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== single-sd_paiement.php ===== */
.paiement-wrap { padding: 1.5rem 0 3rem; }

.paiement-hero { padding: 2rem 0 1.8rem; }
.paiement-hero-inner {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.paiement-icon {
    width: 76px; height: 76px;
    background: var(--gradient-subtle);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 800; color: var(--purple-light);
    flex-shrink: 0;
    overflow: hidden;
}
.paiement-icon img { width: 100%; height: 100%; object-fit: contain; }
.paiement-hero-info { flex: 1; min-width: 180px; }
.paiement-hero-info h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: .4rem; }
.paiement-hero-info h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.paiement-hero-sub { font-size: .88rem; color: var(--text-mid); margin-bottom: 1rem; }
.hero-pills-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.h-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    padding: .5rem 1rem; border-radius: var(--radius-full);
    font-size: .78rem; font-weight: 600;
}
.h-pill .h-pill-val { color: var(--purple-light); }
.paiement-rating { text-align: center; flex-shrink: 0; }
.rating-ring {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 4px solid var(--purple);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto .5rem;
    box-shadow: 0 0 20px rgba(168,85,247,.25);
}
.rating-ring span { font-size: 1.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rating-ring-label { font-size: .68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .8px; }

.paiement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.pg-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color .2s;
}
.pg-card:hover { border-color: rgba(168,85,247,.3); }
.pg-card.full { grid-column: 1 / -1; }
.pg-card-head {
    display: flex; align-items: center; gap: .8rem;
    margin-bottom: 1.2rem;
}
.pg-card-icon {
    width: 36px; height: 36px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 700; color: var(--purple-light);
    flex-shrink: 0;
}
.pg-card-head h3 { font-size: .95rem; font-weight: 700; }

.pro-list, .con-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.pro-list li, .con-list li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .85rem; color: var(--text-mid); line-height: 1.5;
}
.pro-list li::before { content: '+'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.con-list li::before { content: '-'; color: var(--red); font-weight: 800; flex-shrink: 0; }

.pg-data-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
}
.pg-data-row:last-child { border-bottom: none; }
.pg-label { color: var(--text-mid); }
.pg-val { font-weight: 600; color: var(--text); }
.pg-val.good { color: var(--green); }
.pg-val.warn { color: var(--orange); }

.speed-bar-group { display: flex; flex-direction: column; gap: 1rem; }
.speed-bar-item {}
.speed-bar-meta {
    display: flex; justify-content: space-between;
    font-size: .78rem; color: var(--text-mid);
    margin-bottom: .4rem;
}
.speed-track {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 4px;
    overflow: hidden;
}
.speed-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

.paiement-steps-section { margin-bottom: 2rem; }
.paiement-steps-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.2rem; }
.steps-track {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.step-item { text-align: center; }
.step-num {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 800; color: #fff;
    margin: 0 auto .8rem;
}
.step-item h4 { font-size: .85rem; font-weight: 700; margin-bottom: .3rem; }
.step-item p { font-size: .78rem; color: var(--text-mid); }

.paiement-casinos { margin-bottom: 2rem; }
.paiement-casinos h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.casinos-compat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
}
.compat-item {
    display: flex; align-items: center; gap: .9rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
}
.compat-item:last-child { border-bottom: none; }
.compat-logo {
    width: 40px; height: 40px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700; color: var(--purple-light);
    flex-shrink: 0;
    overflow: hidden;
}
.compat-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.compat-info { flex: 1; }
.compat-name { font-size: .88rem; font-weight: 600; }
.compat-bonus { font-size: .75rem; color: var(--purple-light); }

.paiement-description {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}
.paiement-description h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.paiement-description p { font-size: .88rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.paiement-description p:last-child { margin-bottom: 0; }
.paiement-description ul { list-style: none; margin: 0 0 1rem; }
.paiement-description ul li {
    padding: .45rem 0 .45rem 1.3rem;
    position: relative;
    font-size: .88rem;
    color: var(--text-mid);
}
.paiement-description ul li::before {
    content: '';
    position: absolute; left: 0; top: .9em;
    width: 6px; height: 6px;
    background: var(--gradient);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .paiement-grid { grid-template-columns: 1fr 1fr; }
    .pg-card.full { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    .paiement-hero-inner { flex-direction: column; align-items: flex-start; }
    .paiement-grid { grid-template-columns: 1fr; }
    .casinos-compat-grid { grid-template-columns: 1fr; }
    .steps-track { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
    .steps-track { grid-template-columns: 1fr; }
}

/* ===== page-top-casinos.php ===== */
.tc-wrap { padding-bottom: 3rem; }
.tc-header { padding: 2.5rem 0 1.5rem; }
.tc-header .tc-bar { width: 40px; height: 4px; background: var(--gradient); border-radius: 2px; margin-bottom: 12px; }
.tc-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: .4rem; }
.tc-header .tc-sub { color: var(--text-mid); font-size: .95rem; max-width: 640px; }
.tc-update { font-size: .72rem; color: var(--text-dim); margin-top: .4rem; }
.tc-update time { color: var(--purple-light); }

.tc-quick-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.tc-quick-item {
    display: grid; grid-template-columns: 38px 70px 1fr auto auto;
    align-items: center; gap: .9rem;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); padding: .75rem 1.2rem;
    transition: border-color .15s;
}
.tc-quick-item:hover { border-color: var(--purple); }
.tc-quick-item:first-child { border-color: rgba(168,85,247,.3); background: rgba(168,85,247,.04); }
.tq-rank { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; background: var(--bg-surface); color: var(--text-dim); flex-shrink: 0; }
.tc-quick-item:first-child .tq-rank { background: var(--gradient); color: #fff; }
.tc-quick-item:nth-child(2) .tq-rank { background: rgba(245,158,11,.15); color: #f59e0b; }
.tc-quick-item:nth-child(3) .tq-rank { background: rgba(168,85,247,.1); color: var(--purple-light); }
.tq-logo { width: 66px; height: 32px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.tq-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tq-info .tq-name { font-size: .88rem; font-weight: 700; color: #fff; }
.tq-info .tq-bonus { font-size: .75rem; color: #ffd700; font-weight: 600; }
.tq-rating { font-size: 1.05rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; min-width: 36px; text-align: center; }
.tq-cta { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.tq-btn { font-size: .75rem; font-weight: 700; padding: .4rem .9rem; border-radius: 7px; background: linear-gradient(135deg, #7e22ce, #be185d); color: #fff; white-space: nowrap; }
.tq-btn:hover { color: #fff; box-shadow: 0 3px 10px rgba(168,85,247,.3); }
.tq-review { font-size: .65rem; color: var(--text-dim); }
.tq-review:hover { color: var(--purple-light); }

.tc-fiche {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); margin-bottom: 2.5rem;
    overflow: hidden;
}
.tc-fiche-header {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg, rgba(168,85,247,.07), rgba(236,72,153,.04));
    border-bottom: 1px solid var(--border);
}
.tcf-rank { font-size: 1.6rem; font-weight: 900; color: rgba(168,85,247,.35); min-width: 40px; }
.tc-fiche:first-child .tcf-rank { color: var(--purple); }
.tcf-logo { width: 80px; height: 40px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.tcf-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tcf-title-wrap { flex: 1; min-width: 0; }
.tcf-name { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: .2rem; }
.tcf-usp { font-size: .8rem; color: var(--text-mid); }
.tcf-rating-wrap { text-align: center; }
.tcf-rating { font-size: 1.6rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.tcf-rating-label { font-size: .6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .4px; }
.tcf-cta-header { display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; }
.tcf-btn-play { display: inline-flex; align-items: center; gap: .4rem; background: var(--gradient); color: #fff; font-weight: 700; font-size: .82rem; padding: .6rem 1.3rem; border-radius: 8px; white-space: nowrap; }
.tcf-btn-play:hover { color: #fff; box-shadow: 0 4px 16px rgba(168,85,247,.4); }
.tcf-btn-review { font-size: .68rem; color: var(--text-dim); text-align: right; }
.tcf-btn-review:hover { color: var(--purple-light); }

.tc-fiche-body { padding: 1.4rem 1.6rem; }
.tcf-intro { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; }

.tcf-section-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-dim); margin-bottom: .6rem; padding-bottom: .4rem; border-bottom: 1px solid var(--border); }
.tcf-table { width: 100%; border-collapse: collapse; font-size: .82rem; margin-bottom: 1.2rem; }
.tcf-table thead tr { background: rgba(168,85,247,.06); }
.tcf-table th { padding: .5rem .8rem; text-align: left; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .3px; color: var(--text-mid); border-bottom: 1px solid var(--glass-border); }
.tcf-table td { padding: .55rem .8rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.tcf-table tr:last-child td { border-bottom: none; }
.tcf-table .val-green { color: var(--green); font-weight: 600; }
.tcf-table .val-accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }

.tcf-pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.tcf-pros, .tcf-cons { border-radius: var(--radius-sm); padding: .9rem 1rem; }
.tcf-pros { background: rgba(34,197,94,.05); border: 1px solid rgba(34,197,94,.15); }
.tcf-cons { background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.15); }
.tcf-pc-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: .6rem; }
.tcf-pros .tcf-pc-title { color: var(--green); }
.tcf-cons .tcf-pc-title { color: var(--red); }
.tcf-pc-item { display: flex; align-items: flex-start; gap: .4rem; font-size: .8rem; color: var(--text); margin-bottom: .35rem; line-height: 1.5; }
.tcf-pc-item:last-child { margin-bottom: 0; }
.tcf-pc-item .icon { font-size: .75rem; flex-shrink: 0; margin-top: .1rem; }
.tcf-pros .icon { color: var(--green); }
.tcf-cons .icon { color: var(--red); }

.tcf-pm-wrap { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.2rem; }
.tcf-pm-tag { font-size: .72rem; padding: .25rem .6rem; border-radius: 5px; background: var(--bg-surface); border: 1px solid var(--glass-border); color: var(--text-mid); }

.tcf-cta-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.6rem; background: rgba(168,85,247,.04); border-top: 1px solid var(--border); flex-wrap: wrap; }
.tcf-cta-bonus { font-size: .88rem; font-weight: 700; color: #fff; }
.tcf-cta-bonus span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tcf-cta-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--gradient); color: #fff; font-weight: 700; font-size: .82rem; padding: .6rem 1.4rem; border-radius: 8px; }
.tcf-cta-btn:hover { color: #fff; box-shadow: 0 4px 16px rgba(168,85,247,.4); }
.tcf-legal { font-size: .62rem; color: var(--text-dim); }

.tc-compare-wrap { overflow-x: auto; margin: 2rem 0; }
.tc-compare { width: 100%; border-collapse: collapse; font-size: .82rem; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; }
.tc-compare thead { background: rgba(168,85,247,.08); }
.tc-compare th { padding: .65rem .9rem; text-align: left; font-weight: 600; font-size: .7rem; text-transform: uppercase; letter-spacing: .4px; color: var(--text-dim); border-bottom: 1px solid var(--glass-border); white-space: nowrap; }
.tc-compare td { padding: .6rem .9rem; border-bottom: 1px solid var(--border); color: var(--text-mid); white-space: nowrap; }
.tc-compare tr:last-child td { border-bottom: none; }
.tc-compare tr:hover td { background: rgba(168,85,247,.02); }
.tc-compare .casino-col { display: flex; align-items: center; gap: .5rem; }
.tc-compare .casino-col img { width: 50px; height: 24px; object-fit: contain; background: #fff; border-radius: 4px; padding: 1px; }
.tc-compare .badge-green { color: var(--green); font-weight: 600; }
.tc-compare .badge-accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
.tc-compare .cta-sm { font-size: .7rem; font-weight: 700; padding: .25rem .6rem; border-radius: 5px; background: var(--gradient); color: #fff; }
.tc-compare .cta-sm:hover { color: #fff; }

.tc-editorial { margin-top: 2.5rem; }
.tc-editorial h2 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 .75rem; padding-top: 1rem; border-top: 1px solid var(--border); color: #fff; }
.tc-editorial h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.tc-editorial h3 { font-size: 1rem; font-weight: 600; margin: 1rem 0 .5rem; color: var(--purple-light); }
.tc-editorial p { color: var(--text-mid); font-size: .88rem; line-height: 1.75; margin-bottom: .9rem; }
.tc-editorial ul, .tc-editorial ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.tc-editorial li { color: var(--text-mid); font-size: .88rem; line-height: 1.7; margin-bottom: .3rem; }
.tc-editorial a { color: var(--purple-light); }
.tc-editorial table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); overflow: hidden; font-size: .85rem; }
.tc-editorial thead { background: rgba(168,85,247,.06); }
.tc-editorial th { padding: .65rem 1rem; text-align: left; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .3px; color: var(--text-dim); border-bottom: 1px solid var(--glass-border); }
.tc-editorial td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.tc-editorial tr:last-child td { border-bottom: none; }
.tc-editorial details { margin: .6rem 0; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); overflow: hidden; }
.tc-editorial summary { cursor: pointer; font-weight: 600; font-size: .88rem; color: var(--text); padding: .75rem 1rem; background: var(--bg-card); }
.tc-editorial details[open] summary { border-bottom: 1px solid var(--border); }
.tc-editorial details p { padding: .75rem 1rem; margin: 0; }

@media (max-width: 900px) {
    .tc-quick-item { grid-template-columns: 30px 54px 1fr; }
    .tq-rating { display: none; }
    .tc-fiche-header { flex-wrap: wrap; }
    .tcf-pc-grid { grid-template-columns: 1fr; }
    .tc-fiche-body { padding: 1rem; }
}

/* ===== page.php ===== */
.page-header {
    padding: 2.5rem 0 1.5rem;
}
.page-header .page-bar { width: 40px; height: 4px; background: var(--gradient); border-radius: 2px; margin-bottom: 12px; }
.page-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: .4rem; }
.page-header h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-header .page-sub { color: var(--text-mid); font-size: .95rem; max-width: 640px; }

.page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    padding-bottom: 3rem;
}

.page-content h2 {
    font-size: 1.3rem; font-weight: 700; margin: 2rem 0 .75rem;
    padding-top: 1rem; border-top: 1px solid var(--border); color: #fff;
}
.page-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.page-content h3 { font-size: 1.05rem; font-weight: 600; margin: 1.2rem 0 .5rem; color: var(--purple-light); }
.page-content p { color: var(--text-mid); font-size: .9rem; line-height: 1.75; margin-bottom: 1rem; }
.page-content ul, .page-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.page-content li { color: var(--text-mid); font-size: .9rem; line-height: 1.7; margin-bottom: .3rem; }
.page-content a { color: var(--purple-light); }
.page-content a:hover { color: var(--purple); }

.page-content table {
    width: 100%; border-collapse: collapse; margin: 1.25rem 0;
    background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
    overflow: hidden; font-size: .88rem;
}
.page-content thead { background: rgba(168,85,247,.06); }
.page-content th {
    padding: .75rem 1rem; text-align: left; font-weight: 600; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .4px; color: var(--text-dim);
    border-bottom: 1px solid var(--glass-border);
}
.page-content td {
    padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-mid);
}
.page-content tr:last-child td { border-bottom: none; }
.page-content tr:hover td { background: rgba(168,85,247,.03); }

.page-sidebar { position: sticky; top: 80px; }
.page-sidebar .sidebar-casino-list {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); overflow: hidden;
}
.page-sidebar .scl-title {
    padding: .9rem 1.2rem; font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; color: var(--text-dim);
    border-bottom: 1px solid var(--border); background: rgba(168,85,247,.04);
}
.page-sidebar .scl-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .75rem 1.2rem; border-bottom: 1px solid var(--border);
    transition: background .15s;
}
.page-sidebar .scl-item:last-child { border-bottom: none; }
.page-sidebar .scl-item:hover { background: rgba(168,85,247,.04); }
.page-sidebar .scl-rank {
    width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 700; background: var(--bg-surface); color: var(--text-dim); flex-shrink: 0;
}
.page-sidebar .scl-item:first-child .scl-rank { background: var(--gradient); color: #fff; }
.page-sidebar .scl-logo {
    width: 36px; height: 36px; border-radius: 6px; background: #fff; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.page-sidebar .scl-logo img { width: 100%; height: 100%; object-fit: contain; }
.page-sidebar .scl-info { flex: 1; min-width: 0; }
.page-sidebar .scl-name { font-size: .82rem; font-weight: 600; color: #fff; }
.page-sidebar .scl-bonus { font-size: .72rem; color: var(--purple-light); }
.page-sidebar .scl-btn {
    font-size: .7rem; font-weight: 700; padding: .3rem .7rem; border-radius: 6px;
    background: var(--gradient); color: #fff; white-space: nowrap; flex-shrink: 0;
}
.page-sidebar .scl-btn:hover { color: #fff; box-shadow: 0 2px 8px rgba(168,85,247,.3); }

@media (max-width: 1024px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { position: static; }
}

/* ===== 404.php ===== */
.error-404 {
    min-height: calc(100dvh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
}
.error-inner {
    max-width: 520px;
}
.error-code {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .5rem;
}
.error-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: #fff;
}
.error-desc {
    color: var(--text-mid);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.error-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.error-actions .btn {
    padding: .7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .88rem;
    transition: all .15s;
}
.error-actions .btn-primary {
    background: var(--gradient);
    color: #fff;
}
.error-actions .btn-primary:hover {
    color: #fff;
    box-shadow: 0 4px 20px rgba(168,85,247,.35);
    transform: translateY(-1px);
}
.error-actions .btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-mid);
    background: transparent;
}
.error-actions .btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple-light);
}

.error-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.error-links a {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--text-dim);
    transition: color .15s;
}
.error-links a:hover { color: var(--purple-light); }
.error-links .la { font-size: 1rem; }

.error-casinos {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}
.error-casinos-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-dim);
    margin-bottom: .75rem;
}
.error-casino-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem .8rem;
    border-radius: var(--radius-sm);
    transition: background .15s;
    text-align: left;
}
.error-casino-row:hover { background: rgba(168,85,247,.06); }
.error-casino-logo {
    width: 32px; height: 32px; border-radius: 6px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.error-casino-logo img { width: 100%; height: 100%; object-fit: contain; }
.error-casino-info { flex: 1; min-width: 0; }
.error-casino-name { font-size: .82rem; font-weight: 600; color: #fff; }
.error-casino-bonus { font-size: .72rem; color: var(--purple-light); }
.error-casino-cta {
    font-size: .7rem; font-weight: 700; padding: .25rem .6rem;
    border-radius: 6px; background: var(--gradient); color: #fff; white-space: nowrap;
}
.error-casino-cta:hover { color: #fff; box-shadow: 0 2px 8px rgba(168,85,247,.3); }

/* ===== Bonus page (page-bonus.php) ===== */
.bp-header { padding: 2.5rem 0 1.5rem; }
.bp-bar { width: 40px; height: 4px; background: var(--gradient); border-radius: 2px; margin-bottom: 12px; }
.bp-sub { color: var(--text-mid); font-size: .95rem; max-width: 640px; }
.bp-update { font-size: .72rem; color: var(--text-dim); margin-top: .4rem; }
.bp-update time { color: var(--purple-light); }

/* Filter bar */
.bp-filter-bar {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: .9rem 1.2rem;
    display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
    margin-bottom: 1.5rem;
}
.bp-search-wrap {
    display: flex; align-items: center; gap: .5rem;
    flex: 1; min-width: 180px;
    background: var(--bg-surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius-full); padding: .1rem .2rem .1rem .8rem;
}
.bp-search-wrap input {
    flex: 1; background: transparent; border: none; color: var(--text);
    font-family: inherit; font-size: .85rem; padding: .45rem .5rem; outline: none;
}
.bp-search-wrap input::placeholder { color: var(--text-dim); }
.bp-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.bf-chip {
    padding: .35rem .85rem; border-radius: var(--radius-full);
    background: transparent; border: 1px solid var(--glass-border);
    font-size: .75rem; font-weight: 600; color: var(--text-mid);
    cursor: pointer; font-family: inherit; transition: all .15s; white-space: nowrap;
}
.bf-chip:hover { border-color: var(--purple); color: var(--purple-light); }
.bf-chip.active { background: var(--gradient); color: #fff; border-color: transparent; }

/* Casino grid */
.bp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-bottom: 1rem;
}
.bp-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden; transition: border-color .15s, box-shadow .15s;
}
.bp-card:hover { border-color: var(--purple); box-shadow: var(--shadow-glow); }
.bp-hidden { display: none; }

/* Card header */
.bp-card-head {
    display: flex; align-items: center; gap: .65rem;
    padding: .8rem .9rem; border-bottom: 1px solid var(--border);
}
.bp-card-logo {
    width: 44px; height: 44px; background: #fff; border-radius: 10px;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 3px;
}
.bp-card-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.bp-card-logo span { font-size: .6rem; color: #999; }
.bp-card-info { flex: 1; min-width: 0; }
.bp-card-name { font-size: .85rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bp-card-excerpt { font-size: .72rem; color: var(--text-dim); line-height: 1.4; margin: .15rem 0 .1rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.bp-card-bonus { font-size: .7rem; color: #ffd700; font-weight: 600; }

/* Filter bar for page-top-casinos — exact copy of bf-chip */
.tc-filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.5rem; }
.tc-chip {
    padding: .35rem .85rem;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid var(--glass-border);
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
    white-space: nowrap;
}
.tc-chip:hover { border-color: var(--purple); color: var(--purple-light); }
.tc-chip.active { background: var(--gradient); color: #fff; border-color: transparent; }
.bp-card-rating { font-size: .95rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; flex-shrink: 0; }

/* Stats row */
.bp-card-stats {
    display: grid; grid-template-columns: 1fr 1fr 1fr; font-size: .7rem; text-align: center;
}
.bp-stat { padding: .45rem .3rem; border-right: 1px solid var(--border); }
.bp-stat:last-child { border-right: none; }
.bp-stat-label { display: block; color: var(--text-dim); font-size: .6rem; text-transform: uppercase; letter-spacing: .3px; margin-bottom: .15rem; }
.bp-stat-val { font-weight: 700; color: var(--text); }
.bp-stat-val.good { color: var(--green); }

/* CTA buttons */
.bp-card-cta { display: flex; gap: .5rem; padding: .6rem .9rem; }
.bp-btn-play {
    flex: 1; text-align: center; padding: .4rem; border-radius: 8px;
    background: var(--gradient); color: #fff; font-weight: 700; font-size: .78rem;
    transition: box-shadow .15s;
}
.bp-btn-play:hover { color: #fff; box-shadow: 0 4px 12px rgba(168,85,247,.35); }
.bp-btn-review {
    flex: 1; text-align: center; padding: .4rem; border-radius: 8px;
    border: 1px solid var(--glass-border); color: var(--text-mid); font-size: .78rem;
}
.bp-btn-review:hover { border-color: var(--purple); color: var(--purple-light); }

/* Show more */
.bp-show-more-wrap { text-align: center; margin: .5rem 0 2rem; }
.bp-show-more {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem 1.5rem; border-radius: var(--radius-full);
    background: var(--bg-card); border: 1px solid var(--glass-border);
    color: var(--text-mid); font-size: .82rem; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all .15s;
}
.bp-show-more:hover { border-color: var(--purple); color: var(--purple-light); }
.bp-show-more .la { font-size: .7rem; transition: transform .2s; }

/* No results */
.bp-no-results { text-align: center; padding: 3rem 0; color: var(--text-dim); font-size: .95rem; }

@media (max-width: 1024px) { .bp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .bp-grid { grid-template-columns: repeat(2, 1fr); } .bp-filter-bar { flex-direction: column; } }
@media (max-width: 480px) { .bp-grid { grid-template-columns: 1fr; } }

/* ===== Tested badge + author block (reviews) ===== */
.review-tested-block {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    padding: 1.2rem 1.5rem; margin: 2rem 0; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--glass-border);
}
.rtb-badge {
    display: flex; align-items: center; gap: .75rem;
}
.rtb-badge .la {
    font-size: 1.8rem; color: var(--green);
}
.rtb-label { font-size: .88rem; font-weight: 700; color: var(--green); }
.rtb-date { font-size: .72rem; color: var(--text-mid); }
.rtb-author { display: flex; align-items: center; gap: .6rem; }
.rtb-author-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.rtb-author-desc { font-size: .72rem; color: var(--text-mid); }
.rtb-author-desc a { color: var(--purple-light); }

/* ===== Global search in header ===== */
.nav-search {
    display: flex; align-items: center; gap: .3rem;
    background: var(--bg-surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius-full); padding: .15rem .15rem .15rem .7rem;
    margin-right: .5rem;
}
.nav-search input {
    background: transparent; border: none; color: var(--text);
    font-family: inherit; font-size: .78rem; width: 110px; outline: none;
    padding: .25rem .2rem;
}
.nav-search input::placeholder { color: var(--text-dim); }
.nav-search button {
    background: var(--gradient); border: none; border-radius: var(--radius-full);
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #fff; font-size: .75rem; flex-shrink: 0;
}
@media (max-width: 768px) { .nav-search { display: none; } }
