/* ============================================================
   Chicken Road France — leslocalistes.fr
   Palette « bonbon / lave » reprise du visuel du jeu
   ============================================================ */

:root {
  --bg: #1c0710;
  --panel: #2e0c1b;
  --panel-2: #401325;
  --line: #6a2038;
  --line-hover: #93314f;
  --head-bg: #240914;
  --txt: #ffffff;
  --txt-soft: #f0d8de;
  --muted: #d3a7b4;
  --dim: #a5798a;
  --gold-1: #ffb800;
  --gold-2: #ffe24a;
  --gold-txt: #ffd25e;
  --ink: #2a0710;
  --flame: #ff5a1f;
  --green: #00b67a;
  --red: #ff6b6b;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--txt);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
}

svg {
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 32px;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

h4 {
  font-size: 18px;
  font-weight: 800;
}

p {
  margin: 0 0 16px;
}

a {
  color: var(--gold-txt);
}

ul,
ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

[data-b64] {
  cursor: pointer;
}

.shell {
  padding-top: 66px;
  overflow: hidden;
  position: relative;
}

/* ---------- En-tête ---------- */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 66px;
  background: var(--head-bg);
  border-bottom: 1px solid var(--line);
}

.head-row {
  max-width: 1142px;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-main__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-main__list li {
  margin: 0;
  font-size: 15px;
}

.nav-main__list span {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--txt);
  transition: background 0.2s ease;
}

.nav-main__list span:hover {
  background: rgba(255, 255, 255, 0.09);
}

.menu-toggle,
.burger {
  display: none;
}

.cta-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  font-size: 14px;
  white-space: nowrap;
}

/* ---------- Boutons ---------- */
.btn-gold {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.btn-gold > span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: glint 2.4s infinite;
}

.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold-1) 100%);
}

.btn-gold:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

@keyframes glint {
  0% {
    left: -16px;
  }
  100% {
    left: calc(100% + 16px);
  }
}

.btn-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-2);
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  color: var(--txt);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-demo:hover {
  background: #521a30;
  border-color: var(--line-hover);
}

/* ---------- Premier écran ---------- */
.hero {
  margin-bottom: 56px;
}

.hero__inner {
  position: relative;
}

.hero__bg {
  display: block;
  width: 100%;
  height: calc(100vh - 66px);
  height: calc(100dvh - 66px);
  background-image: url(../images/game/chicken-road-jeu-crash-fond-accueil.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.hero__bg:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: -4px;
}

.hero__box {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 660px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(46, 12, 27, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.hero__title {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.hero__text {
  max-width: 540px;
  margin: 12px auto 0;
  font-size: 17px;
  color: var(--txt-soft);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__actions .btn-demo {
  width: 200px;
  height: 48px;
}

.hero__actions .btn-gold {
  width: 274px;
  height: 48px;
  font-size: 16px;
}

/* ---------- Conteneur de contenu ---------- */
.block,
.offers,
.live-wins,
.summary-nav,
.spec,
.updated-line-wrap {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto 56px;
  padding: 0 16px;
}

.block h2 + p,
.block h3 + p {
  margin-top: 0;
}

.block li,
.block p {
  color: var(--txt-soft);
}

.block li strong,
.block p strong {
  color: #fff;
}

.block__center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.block__center .btn-gold {
  width: 260px;
  height: 50px;
  font-size: 16px;
}

h2[id],
h3[id] {
  scroll-margin-top: 86px;
}

/* ---------- Offres casino ---------- */
.offers {
  margin-bottom: 0;
  padding-top: 40px;
}

.offers__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
}

.offers__intro {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
}

.offers__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offers__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  transition: border-color 0.3s ease;
}

.offers__row--1 {
  border-color: var(--gold-1);
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.3), 0 4px 24px rgba(255, 184, 0, 0.1);
}

.offers__rank {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.offers__logo {
  flex: 0 0 150px;
  width: 150px;
  height: 99px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.offers__info {
  flex: 1 1 auto;
  min-width: 0;
}

.offers__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.offers__medal {
  padding: 3px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.offers__bonus {
  margin-top: 6px;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold-txt);
}

.offers__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.offers__flag svg {
  flex: 0 0 auto;
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.offers__btn {
  flex: 0 0 200px;
  width: 200px;
  height: 46px;
  font-size: 16px;
}

.offers__terms {
  margin: 16px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--dim);
}

/* ---------- Derniers gains ---------- */
.live-wins {
  margin-bottom: 0;
  padding-top: 24px;
}

.live-wins__box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}

.live-wins__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}

.live-wins__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  border: 1px solid rgba(0, 182, 122, 0.4);
  border-radius: 20px;
  background: rgba(0, 182, 122, 0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.live-wins__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: winsPulse 1.6s ease-out infinite;
}

@keyframes winsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.6);
  }
  100% {
    box-shadow: 0 0 0 7px rgba(0, 182, 122, 0);
  }
}

.live-wins__title {
  font-size: 16px;
  font-weight: 700;
}

.live-wins__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-wins__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 11px 20px;
  border-bottom: 1px solid var(--line);
}

.live-wins__item:last-child {
  border-bottom: 0;
}

.live-wins__item.is-new {
  animation: winIn 0.5s ease-out;
}

@keyframes winIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(255, 184, 0, 0.14);
  }
  60% {
    background: rgba(255, 184, 0, 0.14);
  }
  100% {
    opacity: 1;
    transform: none;
    background: transparent;
  }
}

.live-wins__avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #b8203f 0%, #ff5a1f 100%);
}

.live-wins__avatar--2 {
  background: linear-gradient(135deg, #7a1b46 0%, #c0306b 100%);
}

.live-wins__avatar--3 {
  background: linear-gradient(135deg, #a35a12 0%, #ffb800 100%);
}

.live-wins__avatar--4 {
  background: linear-gradient(135deg, #1f8a70 0%, #00b67a 100%);
}

.live-wins__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 14px;
  color: var(--muted);
}

.live-wins__nick {
  color: #fff;
}

.live-wins__amount {
  font-size: 15px;
  color: var(--gold-txt);
}

.live-wins__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.live-wins__casino {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.live-wins__casino:hover {
  color: var(--gold-2);
  border-bottom-color: rgba(255, 226, 74, 0.5);
}

.live-wins__casino img {
  width: 28px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
}

.live-wins__time {
  flex: 0 0 auto;
  font-size: 12px;
  white-space: nowrap;
  color: var(--dim);
}

/* ---------- Sommaire ---------- */
.summary-nav {
  margin-bottom: 0;
  padding-top: 32px;
}

.summary-nav__box {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.summary-nav__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--txt);
  text-align: left;
  cursor: pointer;
}

.summary-nav__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
}

.summary-nav__label svg {
  width: 20px;
  height: 20px;
  color: var(--gold-txt);
}

.summary-nav__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.summary-nav__toggle svg {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
  transition: transform 0.35s ease;
}

.summary-nav.is-collapsed .summary-nav__toggle svg {
  transform: rotate(0deg);
}

.summary-nav__body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}

.summary-nav.is-collapsed .summary-nav__body {
  grid-template-rows: 0fr;
}

.summary-nav__list {
  min-height: 0;
  margin: 0;
  padding: 14px 0 0;
  overflow: hidden;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  counter-reset: toc;
}

.summary-nav__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  counter-increment: toc;
}

.summary-nav__list li::before {
  content: counter(toc, decimal-leading-zero);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-txt);
}

.summary-nav__list a {
  font-size: 16px;
  color: var(--txt);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.summary-nav__list a:hover {
  color: var(--gold-2);
  border-bottom-color: rgba(255, 226, 74, 0.5);
}

/* ---------- Tableaux ---------- */
.spec {
  margin-bottom: 0;
  padding-top: 32px;
}

.spec__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.t-wrap {
  width: 100%;
  margin: 0 0 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.t-wrap table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  background: var(--panel);
}

.t-wrap th,
.t-wrap td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.t-wrap th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel-2);
}

.t-wrap td {
  font-size: 15px;
  color: var(--txt-soft);
}

.t-wrap td:first-child {
  font-weight: 600;
  color: #fff;
}

.t-wrap tbody tr:hover td {
  background: var(--panel-2);
}

.t-wrap tr:last-child td {
  border-bottom: 0;
}

/* ---------- Pour / contre ---------- */
.verdict-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.verdict-cols__col {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.verdict-cols__col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 18px;
}

.verdict-cols__col h3::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}

.verdict-cols__col--plus h3::before {
  background-color: rgba(0, 182, 122, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='%2300b67a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.verdict-cols__col--moins h3::before {
  background-color: rgba(255, 107, 107, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%23ff6b6b' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.verdict-cols__col ul {
  margin: 0;
  padding-left: 20px;
}

.verdict-cols__col li {
  font-size: 15px;
  color: var(--txt-soft);
}

/* ---------- Avis joueurs ---------- */
.avis__summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.avis__word {
  font-size: 22px;
  font-weight: 700;
}

.avis__count {
  font-size: 14px;
  color: var(--muted);
}

.avis__count strong {
  color: #fff;
}

.stars {
  display: inline-flex;
  gap: 3px;
}

.star {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--green);
}

.star.is-empty {
  background: #4a2233;
}

.star.is-half {
  background: linear-gradient(90deg, var(--green) 50%, #4a2233 50%);
}

.star svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.stars--sm {
  gap: 2px;
}

.stars--sm .star {
  width: 20px;
  height: 20px;
}

.stars--sm .star svg {
  width: 13px;
  height: 13px;
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card-avis {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  transition: border-color 0.3s ease;
}

.card-avis:hover {
  border-color: var(--line-hover);
}

.card-avis__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-avis__photo {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.card-avis__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-avis__name {
  font-size: 15px;
  font-weight: 700;
}

.card-avis__city {
  font-size: 12px;
  color: var(--dim);
}

.card-avis__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-avis__date {
  font-size: 12px;
  color: var(--dim);
}

.card-avis__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.card-avis__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 15px;
  color: var(--txt-soft);
}

.card-avis__ok {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.card-avis__ok svg {
  width: 14px;
  height: 14px;
}

/* ---------- Carte expert ---------- */
.expert-card {
  display: flex;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.expert-card__photo {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
}

.expert-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.expert-card__name {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.expert-card__role {
  display: block;
  margin: 2px 0 12px;
  font-size: 13px;
  color: var(--dim);
}

.expert-card__body p {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--txt-soft);
}

.expert-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.expert-card__tags li {
  margin: 0;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.expert-card__quote {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold-1);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 184, 0, 0.07);
  font-style: italic;
  color: var(--txt-soft);
}

/* ---------- FAQ ---------- */
.qa__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.qa__item.is-open {
  border-color: rgba(255, 184, 0, 0.6);
}

.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: var(--txt);
  cursor: pointer;
  transition: color 0.2s ease;
}

.qa__q:hover {
  color: var(--gold-2);
}

.qa__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  color: #fff;
  transition: transform 0.35s ease, background 0.3s ease;
}

.qa__icon svg {
  width: 14px;
  height: 14px;
}

.qa__item.is-open .qa__icon {
  transform: rotate(180deg);
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  border-color: transparent;
  color: var(--ink);
}

.qa__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.qa__item.is-open .qa__a {
  grid-template-rows: 1fr;
}

.qa__a-inner {
  overflow: hidden;
}

.qa__a p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--txt-soft);
}

/* ---------- Dernière mise à jour ---------- */
.updated-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-1);
  border-radius: 12px;
  background: var(--panel);
}

.updated-line__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 184, 0, 0.14);
  color: var(--gold-1);
}

.updated-line__icon svg {
  width: 24px;
  height: 24px;
}

.updated-line__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 10px;
}

.updated-line__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.updated-line__date {
  font-size: 17px;
  font-weight: 800;
}

.updated-line__note {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--muted);
}

.updated-line__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 182, 122, 0.35);
  border-radius: 20px;
  background: rgba(0, 182, 122, 0.12);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.updated-line__badge svg {
  width: 16px;
  height: 16px;
}

/* ---------- Démo en plein écran ---------- */
body.modal-open {
  overflow: hidden;
}

.demo-frame {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: var(--bg);
}

.demo-frame.active {
  display: block;
}

.demo-frame iframe {
  display: block;
  width: 100%;
  height: calc(100% - 72px);
  border: 0;
  background: var(--bg);
}

.demo-frame__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10000;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.demo-frame__bottom {
  height: 72px;
  padding: 8px 16px 18px;
  display: flex;
  justify-content: center;
  background: var(--bg);
}

.demo-frame__bottom .btn-gold {
  width: 100%;
  max-width: 360px;
  height: 46px;
  font-size: 16px;
}

/* ---------- Offre au-dessus de la démo ---------- */
.demo-offer {
  position: absolute;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(28, 7, 16, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-offer.is-visible {
  opacity: 1;
  visibility: visible;
}

.demo-offer__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 28px 24px 22px;
  border: 1px solid var(--gold-1);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s ease;
}

.demo-offer.is-visible .demo-offer__card {
  transform: none;
}

.demo-offer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.demo-offer__logo {
  display: block;
  width: 120px;
  height: 79px;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.demo-offer__label {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-offer__title {
  margin: 12px 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.demo-offer__text {
  margin: 0;
  font-size: 15px;
  color: var(--txt-soft);
}

.demo-offer__bonus {
  margin: 12px 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-txt);
}

.demo-offer__btn {
  width: 100%;
  height: 48px;
  font-size: 16px;
}

.demo-offer__continue {
  margin-top: 14px;
  padding: 4px 8px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- Barre collante ---------- */
.sticky-offer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  padding: 0 16px 12px;
  transform: translateY(115%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.sticky-offer.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-offer__inner {
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--gold-1);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.55);
}

.sticky-offer__logo {
  flex: 0 0 84px;
  width: 84px;
  height: 55px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.sticky-offer__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-offer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-txt);
}

.sticky-offer__name {
  font-size: 16px;
  font-weight: 700;
}

.sticky-offer__bonus {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-offer__btn {
  flex: 0 0 auto;
  width: 180px;
  height: 44px;
  font-size: 16px;
}

.sticky-offer__close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

/* ---------- Bouton haut de page ---------- */
.up-btn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 70;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--gold-1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s, bottom 0.3s ease;
}

.up-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s ease, bottom 0.3s ease;
}

.up-btn:hover {
  background: var(--gold-1);
  color: var(--ink);
}

.up-btn svg {
  width: 22px;
  height: 22px;
}

body.sticky-open .up-btn {
  bottom: 112px;
}

/* ---------- Pied de page ---------- */
.site-foot {
  padding: 56px 16px 0;
  background: var(--head-bg);
  border-top: 1px solid var(--line);
}

.site-foot__main {
  margin-bottom: 32px;
}

.site-foot__row {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-foot__brand img {
  height: 64px;
  width: auto;
}

.site-foot__about {
  max-width: 420px;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.foot-nav {
  display: flex;
  gap: 64px;
}

.foot-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-nav li {
  margin-bottom: 12px;
  font-size: 15px;
}

.foot-nav li span,
.foot-nav li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-nav li span:hover,
.foot-nav li a:hover {
  color: var(--gold-txt);
}

.site-foot__legal {
  max-width: 1110px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.age-badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
}

.site-foot__rg {
  flex: 1 1 320px;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.site-foot__bottom {
  padding: 24px 0 32px;
  font-size: 12px;
  text-align: center;
  color: var(--dim);
}

body.sticky-open .site-foot__bottom {
  padding-bottom: 108px;
}

/* ---------- Mobile / tablette ---------- */
@media (max-width: 1023px) {
  .nav-main {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    max-width: 286px;
    height: 100vh;
    padding: 85px 0;
    background: var(--head-bg);
    border-left: 1px solid var(--line);
  }

  .menu-toggle:checked ~ .nav-main {
    display: block;
  }

  .nav-main__list {
    display: block;
  }

  .nav-main__list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-main__list li:first-child {
    border-top: 1px solid var(--line);
  }

  .nav-main__list span {
    padding: 14px 16px;
    border-radius: 0;
    font-size: 17px;
  }

  .burger {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 38px;
    height: 38px;
    margin-left: 8px;
    padding: 12px 5px;
    border-radius: 6px;
    background: var(--panel-2);
    cursor: pointer;
  }

  .burger span {
    display: block;
    width: 20px;
    height: 1px;
    border-radius: 4px;
    background: #fff;
  }

  .menu-toggle:checked + .burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
  }

  .menu-toggle:checked + .burger span:nth-child(2) {
    display: none;
  }

  .menu-toggle:checked + .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .head-row .cta-head {
    order: 2;
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .avis__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .shell {
    padding-top: 54px;
  }

  .site-head {
    height: 54px;
  }

  .brand img {
    height: 32px;
  }

  .cta-head {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero__bg {
    height: calc(100vh - 54px);
    height: calc(100dvh - 54px);
    background-image: url(../images/game/chicken-road-jeu-crash-fond-mobile.webp);
  }

  .hero__box {
    bottom: 16px;
    gap: 14px;
    max-width: calc(100% - 24px);
    padding: 22px 16px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__text {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column-reverse;
    width: 100%;
  }

  .hero__actions .btn-demo,
  .hero__actions .btn-gold {
    width: 100%;
  }

  .block,
  .offers,
  .live-wins,
  .summary-nav,
  .spec,
  .updated-line-wrap {
    margin-bottom: 40px;
  }

  .hero {
    margin-bottom: 40px;
  }

  .spec__title {
    font-size: 26px;
  }

  .offers__title {
    font-size: 22px;
  }

  .offers__row {
    flex-wrap: wrap;
    gap: 12px 14px;
    padding: 14px;
  }

  .offers__rank {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .offers__logo {
    flex-basis: 104px;
    width: 104px;
    height: 69px;
  }

  .offers__info {
    flex: 1 1 140px;
  }

  .offers__btn {
    flex-basis: 100%;
    width: 100%;
  }

  .summary-nav__box {
    padding: 16px;
  }

  .summary-nav__list {
    grid-template-columns: 1fr;
  }

  .t-wrap th,
  .t-wrap td {
    padding: 10px 12px;
    font-size: 14px;
  }

  .t-wrap table.t-wide {
    min-width: 660px;
  }

  .verdict-cols {
    grid-template-columns: 1fr;
  }

  .avis__grid {
    gap: 12px;
  }

  .card-avis {
    padding: 16px;
  }

  .expert-card {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .expert-card__photo {
    width: 96px;
    height: 96px;
  }

  .live-wins__head {
    padding: 12px 14px;
  }

  .live-wins__item {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 14px;
  }

  .live-wins__body {
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .live-wins__time {
    flex-basis: auto;
    margin-left: auto;
    align-self: flex-start;
  }

  .site-foot__row {
    flex-direction: column;
  }

  .foot-nav {
    gap: 40px;
  }

  .sticky-offer {
    padding: 0 8px 8px;
  }

  .sticky-offer__inner {
    gap: 10px;
    padding: 10px 12px;
  }

  .sticky-offer__logo {
    flex-basis: 56px;
    width: 56px;
    height: 37px;
  }

  .sticky-offer__label {
    display: none;
  }

  .sticky-offer__name {
    font-size: 14px;
  }

  .sticky-offer__bonus {
    font-size: 12px;
    white-space: normal;
  }

  .sticky-offer__btn {
    width: 96px;
    height: 40px;
    font-size: 14px;
  }

  .sticky-offer__close {
    position: absolute;
    top: -12px;
    right: -2px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .up-btn {
    right: 12px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  body.sticky-open .up-btn {
    bottom: 108px;
  }

  body.sticky-open .site-foot__bottom {
    padding-bottom: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-gold::before,
  .live-wins__dot,
  .live-wins__item.is-new {
    animation: none;
  }

  .qa__a,
  .qa__icon,
  .sticky-offer,
  .up-btn,
  .summary-nav__body {
    transition: none;
  }
}
