/* =====================================================
   VARIABLES — Modifiez ici pour changer les couleurs
===================================================== */
:root {
  --bg:         #121c18;
  --bg-card:    #172019;
  --bg-glass:   rgba(255,255,255,0.05);
  --border:     rgba(255,255,255,0.10);
  --gold:       #d4aa50;
  --gold-dim:   #b08a3a;
  --emerald:    #3ecf8e;
  --text:       #f0ede8;
  --text-muted: #8a9990;
  --red:        #e05252;
  --radius:     14px;
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(30,90,60,.45), transparent 60%),
              radial-gradient(ellipse 60% 50% at 100% 20%, rgba(180,140,40,.12), transparent 60%),
              var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* =====================================================
   UTILITIES
===================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-strong {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, #f0c96a 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0c96a, var(--gold-dim));
  color: #1a1200; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 20px rgba(212,170,80,.35);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: scale(1.03); box-shadow: 0 6px 28px rgba(212,170,80,.5); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 15px;
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.badge-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.badge-top  { background: linear-gradient(135deg,var(--gold),#f0c96a); color:#1a1200; }
.badge-new  { background: rgba(62,207,142,.15); border:1px solid rgba(62,207,142,.4); color:var(--emerald); }
.badge-excl { background: rgba(224,82,82,.15); border:1px solid rgba(224,82,82,.4); color:var(--red); }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  background: rgba(212,170,80,.1); border: 1px solid rgba(212,170,80,.2);
  margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(28px, 5vw, 46px); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 17px; }

/* =====================================================
   HEADER & NAV
===================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(18,28,24,.90);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  white-space: nowrap;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  display: grid; place-items: center; color: #1a1200;
  font-size: 18px; font-weight: 900; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-btn:hover, .nav-item.open .nav-btn { color: var(--text); background: var(--bg-glass); }
.nav-btn .arrow { font-size: 10px; transition: transform .2s; }
.nav-item.open .arrow { transform: rotate(180deg); }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(20,32,26,.97); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  min-width: 540px; z-index: 100;
}
.nav-item.open .dropdown { display: flex; gap: 24px; }
.dropdown-col h5 {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 700;
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.dropdown-col ul { display: flex; flex-direction: column; gap: 2px; }
.dropdown-col a {
  display: block; padding: 6px 10px; border-radius: 8px;
  font-size: 13px; color: var(--text-muted);
  transition: color .12s, background .12s;
}
.dropdown-col a:hover { color: var(--gold); background: rgba(212,170,80,.08); }
.dropdown-col .desc { font-size: 11px; color: rgba(138,153,144,.7); }
.nav-cta {
  padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  color: #1a1200; white-space: nowrap; transition: transform .15s; flex-shrink: 0;
}
.nav-cta:hover { transform: scale(1.03); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 20px 20px; border-top: 1px solid var(--border);
  background: rgba(18,28,24,.97);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text-muted); }
.mobile-menu a:hover { color: var(--text); background: var(--bg-glass); }
.mobile-menu .mobile-section { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); padding: 10px 12px 4px; font-weight: 700; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* =====================================================
   HERO
===================================================== */
.hero { padding: 140px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero-bg-glow {
  position: absolute; top: 60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,170,80,.22), transparent 65%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(36px, 7vw, 72px); font-weight: 800; margin-bottom: 22px; }
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: var(--text-muted); max-width: 620px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.hero-stat { border-radius: var(--radius); padding: 20px 16px; text-align: left; }
.hero-stat-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.hero-stat-sub { font-size: 12px; color: var(--text-muted); }
@media (max-width: 600px) { .hero-stats { grid-template-columns: 1fr; max-width: 340px; } }

/* =====================================================
   BARRE DE FILTRES
===================================================== */
.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 20px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.filter-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
}
.filter-pills {
  display: flex; flex-wrap: wrap; gap: 7px; flex: 1;
}
.filter-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.filter-pill:hover {
  background: rgba(212,170,80,.1); border-color: rgba(212,170,80,.3); color: var(--gold);
}
.filter-pill.active {
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  border-color: transparent; color: #1a1200;
  box-shadow: 0 2px 12px rgba(212,170,80,.3);
}
.filter-pill:active { transform: scale(.96); }
.filter-count {
  font-size: 12px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
  min-width: 80px; text-align: right;
}

.casino-card.hidden-by-filter { display: none; }

.filter-empty {
  text-align: center; padding: 48px 24px;
  color: var(--text-muted); font-size: 15px; display: none;
}
.filter-empty.visible { display: block; }
.filter-empty-icon { font-size: 36px; margin-bottom: 12px; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.casino-card:not(.hidden-by-filter) {
  animation: cardReveal .25s ease forwards;
}

/* =====================================================
   CASINO RANKING (main page)
===================================================== */
.ranking { padding: 80px 0; }
.casino-list { display: flex; flex-direction: column; gap: 12px; }

.casino-card { border-radius: var(--radius); overflow: hidden; position: relative; transition: transform .3s, box-shadow .3s; }
.casino-card:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(212,170,80,.15); }
.casino-card.top3 { box-shadow: 0 4px 30px rgba(212,170,80,.12); }
.casino-card.top3::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Layout grille de la carte ── */
.casino-inner {
  display: grid;
  grid-template-columns: 44px 140px 1fr 200px 164px;
  gap: 16px; padding: 18px 20px; align-items: center;
}

/* ── Numéro de rang ── */
.casino-rank {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  text-align: center; color: var(--text-muted);
}
.casino-rank.gold { color: var(--gold); }

/* ── Logo — plus grand ── */
.casino-logo-wrap {
  width: 140px; height: 100px;
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
}
.casino-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

/* ── Infos ── */
.casino-info { min-width: 0; overflow: hidden; }

/* Nom du casino — plus grand et bold */
.casino-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800;
  margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.casino-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; font-size: 14px; }
.casino-stars .rating-val { margin-left: 5px; font-size: 12px; font-weight: 700; color: var(--text); }
.star-on { color: var(--gold); }
.star-off { color: rgba(255,255,255,.2); }
.casino-pros { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 7px; }
.casino-pro { font-size: 11px; color: var(--text-muted); }
.casino-pro::before { content: '✓ '; color: var(--emerald); font-weight: 700; }

/* =====================================================
   TAGS DE PAIEMENT
===================================================== */
.casino-payment-tags { display:flex; flex-wrap:wrap; gap:5px; margin-top:4px; margin-bottom: 7px; }
.pm-tag {
  font-size:10px; font-weight:700; padding:2px 9px; border-radius:999px;
  background:rgba(212,170,80,.12); border:1px solid rgba(212,170,80,.3);
  color:var(--gold); white-space:nowrap;
}

/* =====================================================
   TAGS BONUS — couleurs par type + système compact
===================================================== */
.casino-bonus-tags { display:flex; flex-wrap:wrap; gap:4px; margin-top: 4px; align-items:center; }

.btag {
  font-size:9px; font-weight:700; padding:2px 8px; border-radius:999px;
  white-space:nowrap; display:inline-flex; align-items:center; gap:3px;
}

/* Tags cachés quand trop nombreux */
.btag.btag-extra.hidden { display: none; }

/* Bouton "voir plus" */
.btag.btag-more {
  background: rgba(255,255,255,.07);
  border: 1px dashed rgba(255,255,255,.25);
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s;
}
.btag.btag-more:hover { background: rgba(255,255,255,.12); color: var(--text); }

/* Couleurs par type de bonus */
.btag-bienvenue { background:rgba(59,130,246,.15); border:1px solid rgba(59,130,246,.45); color:#60a5fa; }
.btag-sansdepo  { background:rgba(167,139,250,.15); border:1px solid rgba(167,139,250,.45); color:#a78bfa; }
.btag-crash     { background:rgba(239,68,68,.15);   border:1px solid rgba(239,68,68,.45);   color:#f87171; }
.btag-freespins { background:rgba(34,197,94,.15);   border:1px solid rgba(34,197,94,.45);   color:#4ade80; }
.btag-vip       { background:rgba(212,170,80,.15);  border:1px solid rgba(212,170,80,.45);  color:var(--gold); }
.btag-sanswager { background:rgba(20,184,166,.15);  border:1px solid rgba(20,184,166,.45);  color:#2dd4bf; }
.btag-cashback  { background:rgba(249,115,22,.15);  border:1px solid rgba(249,115,22,.45);  color:#fb923c; }
.btag-crypto    { background:rgba(245,158,11,.15);  border:1px solid rgba(245,158,11,.45);  color:#fbbf24; }
.btag-live      { background:rgba(236,72,153,.15);  border:1px solid rgba(236,72,153,.45);  color:#f472b6; }
.btag-sport     { background:rgba(16,185,129,.15);  border:1px solid rgba(16,185,129,.45);  color:#34d399; }
.btag-freebet   { background:rgba(132,204,22,.15);  border:1px solid rgba(132,204,22,.45);  color:#a3e635; }
.btag-coteplus  { background:rgba(234,179,8,.15);   border:1px solid rgba(234,179,8,.45);   color:#facc15; }
.btag-parlive   { background:rgba(99,102,241,.15);  border:1px solid rgba(99,102,241,.45);  color:#818cf8; }
/* ← NOUVEAUX TAGS */
.btag-avec-vpn  { background:rgba(6,182,212,.15);   border:1px solid rgba(6,182,212,.45);   color:#22d3ee; }
.btag-sans-vpn  { background:rgba(34,197,94,.12);   border:1px solid rgba(34,197,94,.4);    color:#4ade80; }
.btag-sans-kyc  { background:rgba(168,85,247,.15);  border:1px solid rgba(168,85,247,.45);  color:#c084fc; }

/* =====================================================
   BONUS & CTA
===================================================== */
.casino-bonus { text-align: center; min-width: 120px; }

/* Montant du bonus — plus grand et percutant */
.casino-bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--gold) 0%, #f0c96a 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Détail du bonus */
.casino-bonus-detail {
  font-size: 11px; color: var(--text-muted);
  margin-bottom: 8px; line-height: 1.4;
}

.bonus-code {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px;
  border-radius: 7px; border: 1px dashed rgba(212,170,80,.5);
  background: rgba(212,170,80,.05); font-size: 10px; cursor: pointer;
  transition: background .15s;
}
.bonus-code:hover { background: rgba(212,170,80,.15); }
.bonus-code .code-label { color: var(--text-muted); font-size: 9px; text-transform: uppercase; }
.bonus-code .code-val { font-family: monospace; font-weight: 700; color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.bonus-code.no-code { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.03); cursor: default; pointer-events: none; }
.bonus-code.no-code .code-val { color: var(--text-muted); font-size: 10px; letter-spacing: 0; font-style: italic; }

.casino-meta { display: none; }
.casino-cta { min-width: 164px; text-align: center; }
.casino-cta a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  color: #1a1200; font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 18px rgba(212,170,80,.35);
  transition: transform .15s, box-shadow .15s; margin-bottom: 8px;
}
.casino-cta a:hover { transform: scale(1.03); box-shadow: 0 6px 28px rgba(212,170,80,.5); }
.casino-cta small { font-size: 10px; color: var(--text-muted); display: block; }
.casino-badge { display: block; text-align: center; margin-bottom: 8px; }

@media (max-width: 900px) {
  .casino-inner { grid-template-columns: 36px 100px 1fr; grid-template-rows: auto auto auto; gap: 10px; padding: 14px 14px; }
  .casino-logo-wrap { width: 100px; height: 76px; }
  .casino-name { font-size: 17px; }
  .casino-bonus-amount { font-size: 18px; }
  .casino-bonus { grid-column: 1/-1; text-align: left; }
  .casino-cta { grid-column: 1/-1; }
  .casino-cta a { max-width: 320px; font-size: 13px; padding: 11px 16px; }
}

/* =====================================================
   TAGS ROW — sous la photo (main card + compact card)
===================================================== */
.casino-tags-row {
  padding: 0 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.compact-tags {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* =====================================================
   COMPACT CASINO CARD (category pages)
===================================================== */
.compact-card { border-radius: var(--radius); padding: 20px; transition: transform .2s; }
.compact-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--gold); }
.compact-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.compact-num {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(212,170,80,.1); border: 1px solid rgba(212,170,80,.3);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold);
}
/* Logo compact — agrandi */
.compact-logo { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.compact-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.compact-info { flex: 1; min-width: 0; }

/* Nom compact — plus grand */
.compact-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800;
  margin-bottom: 4px;
}

.compact-stars { display: flex; align-items: center; gap: 2px; font-size: 13px; }
.compact-stars .rating-val { margin-left: 4px; font-size: 12px; color: var(--text-muted); }
.compact-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; }
.compact-bonus-label { font-size: 10px; text-transform: uppercase; color: var(--text-muted); letter-spacing: .8px; margin-bottom: 2px; }

/* Montant bonus compact — plus grand */
.compact-bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 2px;
  background: linear-gradient(135deg, var(--gold) 0%, #f0c96a 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compact-bonus-detail { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.compact-pros { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.compact-pro { font-size: 12px; color: var(--text-muted); }
.compact-pro::before { content: '✓ '; color: var(--emerald); font-weight: 700; }
.compact-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 10px 16px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  color: #1a1200; font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 14px rgba(212,170,80,.3);
  transition: transform .15s;
}
.compact-cta:hover { transform: scale(1.02); }

/* =====================================================
   SIDEBAR CASINOS MIS EN AVANT
===================================================== */
.layout-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
@media (max-width: 1100px) { .layout-with-sidebar { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: 88px; }
.sidebar-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); font-weight: 700;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.sidebar-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(212,170,80,.3), transparent);
}
.sidebar-sponsored {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 10px; font-weight: 600;
}
.ad-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(212,170,80,.2); margin-bottom: 14px;
  position: relative; transition: box-shadow .2s, transform .2s;
  background: rgba(255,255,255,0.04);
}
.ad-card:hover { box-shadow: 0 0 0 1px var(--gold); transform: translateY(-2px); }
.ad-card.ad-card-top { border-color: rgba(212,170,80,.4); box-shadow: 0 4px 24px rgba(212,170,80,.12); }
.ad-card.ad-card-top::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ad-badge { position: absolute; top: 10px; right: 10px; font-size: 9px; padding: 2px 7px; border-radius: 4px; background: rgba(18,28,24,.9); border: 1px solid var(--border); color: var(--text-muted); }
.ad-inner { padding: 16px; }
.ad-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ad-logo { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.ad-logo img { width: 100%; height: 100%; object-fit: cover; }
.ad-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; }
.ad-stars { display: flex; align-items: center; gap: 2px; font-size: 12px; margin-top: 2px; }
.ad-stars .rating-val { margin-left: 4px; font-size: 11px; color: var(--text-muted); }
.ad-bonus-box {
  border-radius: 10px; padding: 12px;
  background: linear-gradient(135deg, rgba(212,170,80,.12), rgba(62,207,142,.05));
  border: 1px solid rgba(212,170,80,.2); margin-bottom: 12px;
}
.ad-bonus-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; margin-bottom: 2px; }
.ad-bonus-amount { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold); }
.ad-bonus-detail { font-size: 11px; color: var(--text-muted); }
.ad-code { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; padding: 4px 8px; border-radius: 6px; border: 1px dashed rgba(212,170,80,.5); background: rgba(212,170,80,.05); cursor: pointer; }
.ad-code .code-label { font-size: 9px; text-transform: uppercase; color: var(--text-muted); }
.ad-code .code-val { font-family: monospace; font-size: 12px; font-weight: 700; color: var(--gold); }
.ad-pros { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.ad-pro { font-size: 11px; color: var(--text-muted); }
.ad-pro::before { content: '✓ '; color: var(--emerald); font-weight: 700; }
.ad-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  color: #1a1200; font-weight: 700; font-size: 13px;
  transition: transform .15s; border: none; cursor: pointer; text-decoration: none;
}
.ad-cta:hover { transform: scale(1.02); }
.ad-legal { font-size: 9px; text-align: center; color: var(--text-muted); margin-top: 6px; }

/* =====================================================
   BREADCRUMB
===================================================== */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

/* =====================================================
   PAGE SUBHEADER (category/payment pages)
===================================================== */
.subpage { padding: 110px 0 80px; }
.subpage-tagline { margin-bottom: 20px; }
.subpage h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.subpage-intro { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-bottom: 28px; line-height: 1.7; }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 40px; max-width: 560px; }
.highlight-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 10px; font-size: 13px;
}
.highlight-item::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }
@media (max-width: 600px) { .highlights-grid { grid-template-columns: 1fr; } }
.other-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.other-link {
  padding: 6px 14px; border-radius: 999px; font-size: 12px;
  color: var(--text-muted); border: 1px solid var(--border);
  transition: color .15s, border-color .15s;
}
.other-link:hover { color: var(--gold); border-color: rgba(212,170,80,.4); }
.trust-box { border-radius: var(--radius); padding: 20px 24px; margin-top: 32px; }
.trust-box h3 { font-size: 17px; margin-bottom: 6px; }
.trust-box p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.pm-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pm-logo { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 800; flex-shrink: 0; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.pm-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.pm-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px; }
.pm-stat { border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.pm-stat-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(212,170,80,.1); display: grid; place-items: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.pm-stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); }
.pm-stat-val { font-size: 13px; font-weight: 600; }
@media (max-width: 700px) { .pm-stats { grid-template-columns: 1fr 1fr; } }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box { border-radius: var(--radius); padding: 18px; border: 1px solid rgba(62,207,142,.2); }
.cons-box { border-radius: var(--radius); padding: 18px; border: 1px solid rgba(224,82,82,.2); }
.pros-box h3 { color: var(--emerald); font-size: 15px; margin-bottom: 12px; }
.cons-box h3 { color: var(--red); font-size: 15px; margin-bottom: 12px; }
.pros-box li, .cons-box li { font-size: 13px; color: var(--text-muted); padding: 3px 0; }
.pros-box li::before { content: '✓ '; color: var(--emerald); font-weight: 700; }
.cons-box li::before { content: '✗ '; color: var(--red); font-weight: 700; }
.how-to { border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; }
.how-to h3 { font-size: 17px; margin-bottom: 14px; }
.how-to ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.how-to li { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* =====================================================
   BONUSES SECTION
===================================================== */
.bonuses { padding: 80px 0; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bonus-item { border-radius: 20px; padding: 28px 24px; position: relative; overflow: hidden; transition: transform .3s; }
.bonus-item:hover { transform: translateY(-6px); }
.bonus-item.featured { background: rgba(255,255,255,0.08); border: 1px solid rgba(212,170,80,.3); box-shadow: 0 4px 30px rgba(212,170,80,.12); }
.bonus-item:not(.featured) { background: var(--bg-glass); border: 1px solid var(--border); }
.bonus-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,#1a3d28,#2a6a46); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.bonus-highlight { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.bonus-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.bonus-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.bonus-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--gold); transition: gap .15s; }
.bonus-link:hover { gap: 8px; }
@media (max-width: 900px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bonus-grid { grid-template-columns: 1fr; } }

/* =====================================================
   PAYMENTS SECTION
===================================================== */
.payments { padding: 80px 0; }
.payment-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.payment-item { border-radius: var(--radius); padding: 16px 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 130px; justify-content: center; position: relative; transition: transform .2s; }
.payment-item:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--gold); }
.payment-logo { width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.payment-name { font-size: 13px; font-weight: 600; text-align: center; }
.payment-tag { font-size: 10px; color: var(--text-muted); text-align: center; line-height: 1.3; }
@media (max-width: 900px) { .payment-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 500px) { .payment-grid { grid-template-columns: repeat(2,1fr); } }

/* =====================================================
   REVIEWS
===================================================== */
.reviews { padding: 80px 0; }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.review-card { border-radius: var(--radius); padding: 24px; transition: transform .2s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--gold); }
.review-quote { font-size: 28px; color: rgba(212,170,80,.35); margin-bottom: 12px; line-height: 1; }
.review-text { font-size: 14px; color: rgba(240,237,232,.85); line-height: 1.6; margin-bottom: 20px; }
.review-footer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,170,80,.3); }
.review-name { font-size: 14px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--text-muted); }
.review-stars { display: flex; margin-left: auto; gap: 2px; font-size: 13px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 550px) { .review-grid { grid-template-columns: 1fr; } }

/* =====================================================
   FAQ
===================================================== */
.faq { padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: 0 0 0 1px var(--gold); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; background: none; border: none; cursor: pointer; color: var(--text); }
.faq-q { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; line-height: 1.4; }
.faq-icon { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), #f0c96a); display: grid; place-items: center; color: #1a1200; font-size: 20px; font-weight: 300; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   FOOTER
===================================================== */
footer { padding: 72px 0 36px; border-top: 1px solid var(--border); background: rgba(12,20,16,.6); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 28px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 8px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 16px; background: var(--bg-glass); border: 1px solid var(--border); transition: background .15s, color .15s; }
.social-link:hover { background: var(--gold); color: #1a1200; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer { border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; display: flex; align-items: flex-start; gap: 16px; }
.footer-disclaimer-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: rgba(224,82,82,.15); display: grid; place-items: center; color: var(--red); font-size: 18px; }
.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-grid .footer-disclaimer,.footer-grid .footer-bottom { grid-column: 1/-1; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* =====================================================
   PROMO POPUP
===================================================== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
  background: rgba(6,14,10,.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .35s ease;
}
.popup-overlay.hidden { display: none; }
@media (min-width: 600px) { .popup-overlay { align-items: center; } }
.popup-box {
  position: relative; width: 100%; max-width: 460px;
  border-radius: 24px; padding: 32px 30px; overflow: hidden;
  animation: scaleIn .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 0 0 1px rgba(212,170,80,.5), 0 8px 60px rgba(0,0,0,.8), 0 0 80px rgba(212,170,80,.2);
}
.popup-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), #f0c96a, var(--gold), transparent);
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer { 0% { opacity: .6; } 50% { opacity: 1; } 100% { opacity: .6; } }
.popup-urgency {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 14px; margin-bottom: 16px; border-radius: 999px;
  background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.35);
  color: #f87171; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .65; } }
.popup-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-glass); border: 1px solid var(--border);
  display: grid; place-items: center; cursor: pointer;
  font-size: 18px; color: var(--text); transition: background .15s;
}
.popup-close:hover { background: rgba(255,255,255,.12); }
.popup-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 18px;
  background: linear-gradient(135deg,var(--gold),#f0c96a);
  color: #1a1200; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.popup-casino-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.popup-casino-img { width: 68px; height: 68px; border-radius: 14px; object-fit: cover; border: 2px solid rgba(212,170,80,.4); box-shadow: 0 4px 16px rgba(212,170,80,.2); }
.popup-casino-name { font-size: 24px; font-weight: 700; }
.popup-casino-sub { font-size: 12px; color: var(--text-muted); }
.popup-bonus-box {
  border-radius: 14px; padding: 18px;
  background: linear-gradient(135deg,rgba(212,170,80,.15),rgba(62,207,142,.06));
  border: 1px solid rgba(212,170,80,.3); margin-bottom: 18px;
}
.popup-bonus-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.popup-bonus-amount { font-size: 30px; font-weight: 700; color: var(--gold); margin-bottom: 2px; font-family: 'Playfair Display', serif; }
.popup-bonus-detail { font-size: 12px; color: var(--text-muted); }
.popup-code-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px; padding: 10px 12px; border-radius: 8px;
  border: 1px dashed rgba(212,170,80,.5);
  background: rgba(212,170,80,.07); cursor: pointer; transition: background .15s;
}
.popup-code-row:hover { background: rgba(212,170,80,.14); }
.popup-code-label { font-size: 10px; text-transform: uppercase; color: var(--text-muted); }
.popup-code-val { font-family: monospace; font-weight: 700; color: var(--gold); font-size: 15px; }
.popup-code-copy { margin-left: auto; font-size: 12px; color: var(--text-muted); }
.popup-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px; border-radius: 12px;
  background: linear-gradient(135deg,var(--gold),#f0c96a);
  color: #1a1200; font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 24px rgba(212,170,80,.4);
  margin-bottom: 10px; border: none; cursor: pointer; transition: transform .15s;
}
.popup-cta:hover { transform: scale(1.02); }
.popup-legal { font-size: 10px; color: var(--text-muted); text-align: center; }

/* =====================================================
   TOAST
===================================================== */
.toast {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(62,207,142,.15); border: 1px solid rgba(62,207,142,.3);
  color: var(--emerald); padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; z-index: 200;
  transition: transform .3s ease, opacity .3s ease; opacity: 0; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* =====================================================
   MODE COMPARAISON
===================================================== */
/* ================================================================
     COMPARATEUR — CSS reconstruit pour correspondre au JS
  ================================================================ */

  /* Bouton d'ajout sur chaque casino card */
  .compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--text-muted);
    transition: all .15s;
    width: 100%;
    justify-content: center;
    letter-spacing: .03em;
  }
  .compare-btn:hover {
    border-color: rgba(212,170,80,.45);
    color: var(--gold);
    background: rgba(212,170,80,.07);
  }
  .compare-btn .compare-check { font-size: 14px; }
  .casino-card.comparing {
    box-shadow: 0 0 0 2px var(--gold), 0 8px 40px rgba(212,170,80,.25) !important;
  }
  .casino-card.comparing .compare-btn {
    background: linear-gradient(135deg, var(--gold), #f0c96a);
    border-color: transparent;
    color: #1a1200;
    font-weight: 700;
  }

  /* Barre flottante de comparaison */
  .compare-bar {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px;
    border-radius: 999px;
    background: rgba(12,20,14,.97);
    border: 1px solid rgba(212,170,80,.45);
    box-shadow: 0 8px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(212,170,80,.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: bottom .35s cubic-bezier(.34,1.56,.64,1);
    white-space: nowrap;
  }
  .compare-bar.visible { bottom: 28px; }
  .compare-bar-chips { display: flex; gap: 8px; align-items: center; }
  .compare-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 8px;
    border-radius: 999px;
    background: rgba(212,170,80,.12);
    border: 1px solid rgba(212,170,80,.3);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
  }
  .compare-chip img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,.08);
  }
  .compare-chip-remove {
    cursor: pointer;
    margin-left: 4px;
    opacity: .55;
    font-size: 11px;
    transition: opacity .12s;
  }
  .compare-chip-remove:hover { opacity: 1; }
  .compare-bar-sep { width: 1px; height: 28px; background: var(--border); }
  .compare-bar-hint { font-size: 12px; color: var(--text-muted); }
  .compare-bar-cta {
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), #f0c96a);
    color: #1a1200;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 3px 14px rgba(212,170,80,.35);
  }
  .compare-bar-cta:hover { transform: scale(1.04); box-shadow: 0 6px 22px rgba(212,170,80,.45); }
  .compare-bar-clear {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color .15s, color .15s;
  }
  .compare-bar-clear:hover { border-color: var(--red, #ef4444); color: var(--red, #ef4444); }

  /* Modal overlay */
  .compare-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(4,8,6,.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .22s ease;
  }
  .compare-modal-overlay.hidden { display: none; }

  .compare-modal {
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    background: rgba(14,20,16,.99);
    border: 1px solid rgba(212,170,80,.28);
    box-shadow: 0 24px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(212,170,80,.12);
    animation: scaleIn .28s cubic-bezier(.34,1.56,.64,1);
  }
  .compare-modal::-webkit-scrollbar { width: 5px; }
  .compare-modal::-webkit-scrollbar-thumb { background: rgba(212,170,80,.25); border-radius: 3px; }

  /* Header modal */
  .compare-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: sticky;
    top: 0;
    background: rgba(14,20,16,.99);
    z-index: 2;
    border-radius: 20px 20px 0 0;
  }
  .compare-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold, #d4aa50);
    letter-spacing: -.01em;
  }
  .compare-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text, #e8eaf0);
    transition: background .15s;
  }
  .compare-modal-close:hover { background: rgba(255,255,255,.12); }

  /* ---- Tableau comparatif ---- */
  /* Le JS génère des .cg-row en grille, chacun étant un display:grid */
  .compare-table {
    padding: 20px 24px 24px;
    overflow-x: auto;
  }

  .cg-row {
    display: grid;
    border-bottom: 1px solid rgba(255,255,255,.055);
    transition: background .12s;
  }
  .cg-row:last-child { border-bottom: none; }

  /* Colonnes : 1 label + 2 ou 3 valeurs */
  .cg-row.cols-2 { grid-template-columns: 150px 1fr 1fr; }
  .cg-row.cols-3 { grid-template-columns: 150px 1fr 1fr 1fr; }

  /* Ligne header casino */
  .cg-header-row {
    background: rgba(212,170,80,.05);
    border-bottom: 1px solid rgba(212,170,80,.18) !important;
    border-radius: 12px 12px 0 0;
  }
  .cg-header-row:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; }

  /* Ligne footer CTA */
  .cg-footer-row {
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: none !important;
    border-radius: 0 0 12px 12px;
  }

  /* Lignes data alternées */
  .cg-row:not(.cg-header-row):not(.cg-footer-row):hover {
    background: rgba(255,255,255,.025);
  }

  /* Cellule label (colonne gauche) */
  .cg-label, .cg-label-cell {
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.055);
  }

  /* Cellule tête de casino */
  .cg-casino-head {
    padding: 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,.055);
  }
  .cg-casino-head:last-child { border-right: none; }
  .cg-logo-box {
    width: 54px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,170,80,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: var(--gold, #d4aa50);
    letter-spacing: .05em;
  }
  .cg-casino-head img {
    width: 54px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid rgba(212,170,80,.2);
    background: rgba(255,255,255,.04);
  }
  .cg-casino-name {
    font-size: 14px;
    font-weight: 800;
    color: #e8eaf0;
    text-align: center;
  }

  /* Cellule valeur */
  .cg-val {
    padding: 14px 16px;
    font-size: 13px;
    color: #c8cad4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,.055);
  }
  .cg-val:last-child { border-right: none; }

  /* Stars & rating */
  .cg-stars { font-size: 13px; color: var(--gold, #d4aa50); }
  .cg-rating { font-size: 12px; color: rgba(255,255,255,.4); }

  /* Bonus */
  .cg-bonus-amt {
    font-size: 17px;
    font-weight: 800;
    color: var(--gold, #d4aa50);
    line-height: 1.1;
  }
  .cg-bonus-detail {
    font-size: 11px;
    color: rgba(255,255,255,.35);
    line-height: 1.4;
  }

  /* Code promo */
  .cg-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,170,80,.1);
    border: 1px solid rgba(212,170,80,.3);
    color: var(--gold, #d4aa50);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: monospace;
    letter-spacing: .05em;
  }
  .cg-no-code {
    color: rgba(255,255,255,.2);
    font-size: 16px;
  }

  /* Tags */
  .cg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  /* Badge gagnant */
  .cg-winner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    background: rgba(212,170,80,.12);
    border: 1px solid rgba(212,170,80,.35);
    color: var(--gold, #d4aa50);
    margin-top: 5px;
    width: fit-content;
  }

  /* CTA dans le footer */
  .cg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4aa50, #f0c96a);
    color: #1a1200;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 2px 12px rgba(212,170,80,.25);
  }
  .cg-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,170,80,.4);
  }

  /* Contour global du tableau */
  .compare-table > .cg-row:first-child {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
  }
  .compare-table > .cg-row:last-child {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 680px) {
    .cg-row.cols-2 { grid-template-columns: 100px 1fr 1fr; }
    .cg-row.cols-3 { grid-template-columns: 80px 1fr 1fr 1fr; }
    .cg-label, .cg-label-cell { font-size: 9px; padding: 10px 8px; }
    .cg-val, .cg-casino-head { padding: 10px 8px; }
    .cg-bonus-amt { font-size: 14px; }
    .cg-casino-name { font-size: 12px; }
    .compare-modal { border-radius: 14px; }
    .compare-bar { flex-wrap: wrap; border-radius: 16px; padding: 12px 16px; }
  }


/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { transform:scale(.88); opacity:0; } to { transform:scale(1); opacity:1; } }
@media (prefers-reduced-motion: reduce) { * { animation:none!important; transition:none!important; } }
