/* Chicken Road France — feuille de style unique. Palette et composants
   pensés pour un rendu "confiserie" (or/grenat) et une charge minimale
   (aucune police externe, aucun framework, SVG inline). */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; }
[role="button"] { cursor: pointer; }

:root {
  --bg: #120b09;
  --bg-soft: #1c110c;
  --panel: #241511;
  --panel-2: #2e1913;
  --maroon: #7c1a24;
  --maroon-deep: #4d0f17;
  --line: rgba(255, 235, 210, 0.12);
  --text: #f7ead9;
  --text-dim: #cdb6a3;
  --white: #ffffff;
  --gold-1: #ffe9a8;
  --gold-2: #f6b93b;
  --gold-3: #c9791d;
  --ink: #241209;
  --ok: #3fc47a;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 14px 34px rgba(0, 0, 0, 0.38);
  --shadow-btn: 0 8px 20px rgba(246, 185, 59, 0.28);
  --maxw: 1180px;
  --gold-grad: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 62%, var(--gold-3) 100%);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Liens visuels ---------- */
.cr-link { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-gold {
  position: relative;
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: var(--shadow-btn);
  overflow: hidden;
}
.btn-gold:hover { filter: brightness(1.06); }
.btn-gold > span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes crShine { 0% { left: -20%; } 100% { left: 120%; } }
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 26px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  animation: crShine 2.6s infinite;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn-block { width: 100%; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(18, 11, 9, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.nav-toggle { display: none; }
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  transition: background 0.15s ease;
}
.burger:hover { background: var(--panel); }
.burger span { width: 18px; height: 2px; background: var(--gold-2); border-radius: 2px; }

.main-nav { margin-left: 24px; }
.main-nav__list { display: flex; gap: 22px; }
.main-nav__list li > * {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dim);
}
.main-nav__list li > *:hover { color: var(--gold-2); }

.header-cta { margin-left: auto; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 60px 0 0 0;
    z-index: 50;
    background: var(--panel);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
    padding: 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
    margin-left: 0;
  }
  .main-nav__list { flex-direction: column; gap: 4px; }
  .main-nav__list li > * { display: block; padding: 14px 12px; border-radius: var(--radius-sm); background: var(--panel-2); border: 1px solid var(--line); }
  .main-nav__list li { margin-bottom: 8px; }
  .main-nav__list li > *:hover { background: var(--maroon); color: var(--white); }
  .nav-toggle:checked ~ .main-nav { opacity: 1; pointer-events: auto; transform: none; }
  .burger { display: flex; order: 3; }
  .header-cta { order: 2; margin-left: auto; }
  .header-cta .btn { padding: 0 16px; font-size: 13.5px; height: 40px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; margin: 0 0 56px; }
.hero__bg {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 700 / 875;
  background-image: url("../images/hero/chicken-road-fond-accueil-mobile.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero__bg { aspect-ratio: 1600 / 600; background-image: url("../images/hero/chicken-road-fond-accueil.webp"); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 11, 9, 0) 40%, rgba(18, 11, 9, 0.92) 100%);
  pointer-events: none;
}
.hero__box {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 640px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.hero__left { display: contents; }
.hero__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  text-wrap: balance;
}
.hero__text { font-size: 15px; color: var(--text-dim); max-width: 46ch; }
.hero__actions { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (min-width: 860px) {
  .hero__box { padding: 28px 40px; bottom: 30px; }
  .hero__title { font-size: 34px; }
  .hero__actions { flex-wrap: nowrap; }
}

/* ============================================================
   BANDEAU LIVE (dernières mises)
   ============================================================ */
.live-feed { max-width: var(--maxw); margin: 0 auto 40px; padding: 0 20px; }
.live-feed__box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 14px 16px; }
.live-feed__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.live-feed__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(63, 196, 122, 0.2); animation: crPulse 1.6s infinite; }
@keyframes crPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.live-feed__live { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ok); }
.live-feed__title { font-size: 13.5px; color: var(--text-dim); }
.live-feed__list { display: flex; flex-direction: column; gap: 6px; }
.live-feed__item { display: flex; align-items: center; gap: 10px; padding: 8px 6px; border-radius: var(--radius-sm); font-size: 14px; }
.live-feed__item.is-new { animation: crFadeIn 0.4s ease; background: rgba(246, 185, 59, 0.08); }
@keyframes crFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.live-feed__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: var(--ink); flex-shrink: 0;
  background: var(--gold-grad);
}
.live-feed__avatar--2 { background: linear-gradient(180deg, #ffd7d7, #e2626b); }
.live-feed__avatar--3 { background: linear-gradient(180deg, #cfe7ff, #6ea3e0); }
.live-feed__avatar--4 { background: linear-gradient(180deg, #d9ffd6, #6cc17a); }
.live-feed__body { flex: 1; min-width: 0; }
.live-feed__line { display: block; }
.live-feed__amount, .live-feed__nick { color: var(--white); }
.live-feed__meta { display: block; font-size: 12.5px; color: var(--text-dim); }
.live-feed__meta a { color: var(--gold-2); font-weight: 700; }
.live-feed__time { font-size: 12px; color: var(--text-dim); flex-shrink: 0; }

/* ============================================================
   TABLE DES MATIÈRES
   ============================================================ */
.toc { max-width: var(--maxw); margin: 0 auto 40px; padding: 0 20px; }
.toc__box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.toc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}
.toc__title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15.5px; color: var(--white); }
.toc__title svg { width: 18px; height: 18px; color: var(--gold-2); }
.toc__toggle { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-dim); }
.toc__toggle svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.toc.is-collapsed .toc__toggle svg { transform: rotate(-90deg); }
.toc.is-collapsed .toc__body { display: none; }
.toc__body { padding: 0 18px 16px; }
.toc__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px 24px;
}
.toc__list li a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--text-dim);
  border-bottom: 1px dashed var(--line);
}
.toc__list li a:hover { color: var(--gold-2); }

/* ============================================================
   BLOCS DE CONTENU
   ============================================================ */
.block { max-width: var(--maxw); margin: 0 auto 46px; padding: 0 20px; }
.block h2 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 14px; scroll-margin-top: 90px; }
.block h3 { font-size: 18px; font-weight: 800; color: var(--white); margin: 20px 0 10px; }
.block p { margin-bottom: 12px; color: var(--text); }
.block p:last-child { margin-bottom: 0; }
.block ul, .block ol { margin-bottom: 12px; }
.block li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--text); }
.block ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-2);
}
.block ol { counter-reset: cr-step; }
.block ol li { padding-left: 30px; }
.block ol li::before {
  counter-increment: cr-step;
  content: counter(cr-step);
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.block strong { color: var(--white); }

/* ---------- Tableaux ---------- */
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--line); margin-bottom: 12px; }
table { width: 100%; border-collapse: collapse; min-width: 460px; background: var(--panel); }
th, td { padding: 12px 16px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
th { background: var(--panel-2); color: var(--gold-2); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
td strong { color: var(--white); }

/* ---------- Cartes de facts (hero) ---------- */
.facts { max-width: var(--maxw); margin: -10px auto 46px; padding: 0 20px; }
.facts h2 { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 12px; }

/* ---------- Pour / contre ---------- */
.proscons { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons__col { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; }
.proscons__col h3 { margin-top: 0; }
.proscons__col--pros h3 { color: var(--ok); }
.proscons__col--cons h3 { color: #e3746f; }
.proscons__col ul li::before { background: currentColor; }
.proscons__col--pros li::before { background: var(--ok); }
.proscons__col--cons li::before { background: #e3746f; }

/* ============================================================
   OFFRE CASINO
   ============================================================ */
.offer {
  background: linear-gradient(160deg, var(--panel) 0%, var(--maroon-deep) 130%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.offer__logo { width: 96px; height: 96px; border-radius: var(--radius-md); background: #120b1c; padding: 10px; flex-shrink: 0; }
.offer__body { flex: 1; min-width: 220px; }
.offer__badge {
  display: inline-block;
  background: var(--gold-grad);
  color: var(--ink);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.offer__name { font-size: 20px; font-weight: 800; color: var(--white); }
.offer__bonus { color: var(--text-dim); margin-top: 4px; font-size: 15px; }
.offer__terms { margin-top: 12px; font-size: 12px; color: var(--text-dim); opacity: 0.8; }
.offer__cta { flex-shrink: 0; }

/* ---------- Bannière bonus (répétée dans la page) ---------- */
.bonus-banner {
  max-width: var(--maxw);
  margin: 0 auto 46px;
  padding: 0 20px;
}
.bonus-banner__inner {
  background: var(--maroon);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.bonus-banner__text { font-weight: 700; color: var(--white); font-size: 15.5px; }
.bonus-banner__text span { display: block; font-weight: 500; font-size: 13px; color: rgba(255, 255, 255, 0.75); margin-top: 2px; }

/* ============================================================
   AVIS JOUEURS
   ============================================================ */
.reviews-summary { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.reviews-summary__word { font-weight: 800; color: var(--white); }
/* Étoiles façon Trustpilot : carré vert, étoile blanche. */
.stars { display: inline-flex; gap: 3px; }
.star {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.star svg { width: 62%; height: 62%; fill: #ffffff; }
.star.is-empty { background: rgba(255, 255, 255, 0.14); }
.star.is-empty svg { fill: rgba(255, 255, 255, 0.7); }
.stars--sm .star { width: 16px; height: 16px; border-radius: 3px; }
.reviews-summary__text { font-size: 14px; color: var(--text-dim); }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
.review { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.review__head { display: flex; align-items: center; gap: 10px; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--ink); background: var(--gold-grad); flex-shrink: 0;
}
.review__avatar--2 { background: linear-gradient(180deg, #ffd7d7, #e2626b); color: #3a0d0d; }
.review__avatar--3 { background: linear-gradient(180deg, #cfe7ff, #6ea3e0); color: #0d2b3a; }
.review__avatar--4 { background: linear-gradient(180deg, #d9ffd6, #6cc17a); color: #123a12; }
.review__name { display: block; font-weight: 800; color: var(--white); font-size: 14.5px; }
.review__sub { display: block; font-size: 12.5px; color: var(--text-dim); }
.review__date { font-size: 12px; color: var(--text-dim); margin-left: auto; }
.review__rating { display: flex; align-items: center; justify-content: space-between; }
.review__title { font-weight: 800; color: var(--white); font-size: 15px; }
.review__text { color: var(--text-dim); font-size: 14.5px; }
.review__verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ok); }
.review__verified svg { width: 14px; height: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--white);
}
.faq__icon svg { width: 12px; height: 12px; color: var(--gold-2); transition: transform 0.2s ease; }
.faq__item.is-open .faq__icon svg { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq__item.is-open .faq__answer { max-height: 400px; }
.faq__answer-inner { padding: 0 18px 16px; color: var(--text-dim); font-size: 14.5px; }

/* ============================================================
   EXPERT / AUTEUR
   ============================================================ */
.expert-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.expert-card__photo {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 28px; color: var(--ink); flex-shrink: 0;
}
.expert-card__body { flex: 1; min-width: 240px; }
.expert-card__name { display: block; font-size: 17px; font-weight: 800; color: var(--white); }
.expert-card__role { display: block; font-size: 13px; color: var(--gold-2); margin-bottom: 8px; }
.expert-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 8px; }
.expert-card__quote { font-style: italic; border-left: 3px solid var(--gold-2); padding-left: 12px; }

/* ============================================================
   BLOC MISE À JOUR
   ============================================================ */
.updated { max-width: var(--maxw); margin: 0 auto 46px; padding: 0 20px; }
.updated__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.updated__icon { width: 34px; height: 34px; color: var(--gold-2); flex-shrink: 0; }
.updated__label { font-size: 12.5px; color: var(--text-dim); display: block; }
.updated__date { font-weight: 800; color: var(--white); }
.updated__note { font-size: 13px; color: var(--text-dim); }
.updated__badge {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ok); font-weight: 700; flex-shrink: 0;
}
.updated__badge svg { width: 15px; height: 15px; }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); margin-top: 60px; padding: 40px 0 0; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.site-footer__brand img { height: 42px; width: auto; margin-bottom: 10px; }
.site-footer__brand p { font-size: 13px; color: var(--text-dim); max-width: 280px; }
.footer-nav__title { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-2); font-weight: 800; margin-bottom: 12px; }
.footer-nav__list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav__list a, .footer-nav__list span { font-size: 14px; color: var(--text-dim); }
.footer-nav__list a:hover, .footer-nav__list span:hover { color: var(--gold-2); }
.site-footer__responsible {
  max-width: var(--maxw); margin: 30px auto 0; padding: 18px 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.badge-18 {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--gold-2); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; flex-shrink: 0;
}
.site-footer__responsible p { font-size: 12.5px; color: var(--text-dim); margin: 0; flex: 1; min-width: 220px; }
.site-footer__bottom { text-align: center; padding: 18px 20px; font-size: 12.5px; color: var(--text-dim); border-top: 1px solid var(--line); margin-top: 18px; }

/* ============================================================
   MODALE DE DÉMO
   ============================================================ */
.play-modal { position: fixed; inset: 0; z-index: 9999; display: none; background: var(--bg); }
.play-modal.active { display: block; }
.play-modal iframe { width: 100%; height: calc(100% - 60px); border: 0; }
.play-modal__close {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px;
  border-radius: var(--radius-sm); background: var(--gold-grad); color: var(--ink);
  font-size: 20px; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.play-modal__bottom { height: 60px; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); }

.offer-popup { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(10, 6, 5, 0.72); z-index: 3; padding: 16px; }
.offer-popup.is-visible { display: flex; }
.offer-popup__card {
  position: relative;
  width: 100%; max-width: 340px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.offer-popup__close { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; color: var(--text-dim); font-size: 18px; }
.offer-popup__logo { width: 56px; height: 56px; border-radius: var(--radius-sm); margin: 0 auto 10px; background: #120b1c; padding: 6px; }
.offer-popup__label { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-2); font-weight: 800; margin-bottom: 6px; }
.offer-popup__title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.offer-popup__text { font-size: 13.5px; color: var(--text-dim); margin-bottom: 8px; }
.offer-popup__bonus { font-size: 14px; font-weight: 700; color: var(--gold-2); margin-bottom: 14px; }
.offer-popup__continue { display: block; margin: 10px auto 0; font-size: 13px; color: var(--text-dim); text-decoration: underline; }

/* ============================================================
   BARRE FLOTTANTE + RETOUR HAUT
   ============================================================ */
.sticky-offer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  transform: translateY(110%); transition: transform 0.25s ease;
  background: var(--panel); border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.35);
}
.sticky-offer.is-visible { transform: none; }
.sticky-offer__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; gap: 12px; }
.sticky-offer__logo { width: 42px; height: 42px; border-radius: var(--radius-sm); background: #120b1c; padding: 4px; flex-shrink: 0; }
.sticky-offer__info { flex: 1; min-width: 0; }
.sticky-offer__label { display: block; font-size: 11px; color: var(--text-dim); }
.sticky-offer__name { font-weight: 800; color: var(--white); font-size: 14px; }
.sticky-offer__bonus { display: none; font-size: 12.5px; color: var(--text-dim); }
@media (min-width: 640px) { .sticky-offer__bonus { display: block; } }
.sticky-offer__close { width: 26px; height: 26px; color: var(--text-dim); font-size: 18px; flex-shrink: 0; }

.to-top {
  position: fixed; right: 16px; bottom: 78px; z-index: 300;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: 0.2s ease;
  box-shadow: var(--shadow-card);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 18px; height: 18px; }
body.sticky-offer-open .to-top { bottom: 138px; }

@media (max-width: 767px) {
  .block h2 { font-size: 21px; }
  .hero__box { width: calc(100% - 16px); }
}
