/* ============================================================
   comemartin.fr — Chicken Road France
   Palette : sarcelle profond + or de la piece + brique de la route
   ============================================================ */

:root {
  --cr-bg: #071A20;
  --cr-panel: #0E2830;
  --cr-panel-2: #143842;
  --cr-line: #1F5361;
  --cr-line-hi: #2C7284;
  --cr-head-bg: #0A2129;
  --cr-text: #FFFFFF;
  --cr-muted: #9DB4BB;
  --cr-muted-2: #C7D7DB;
  --cr-dim: #6C868E;
  --cr-gold: #F0A81B;
  --cr-gold-2: #FFD452;
  --cr-gold-soft: #FFCE4A;
  --cr-brick: #C2582F;
  --cr-brick-hi: #A94720;
  --cr-green: #00B67A;
  --cr-red: #E0574B;
  --cr-shell-pad: 66px;
  --cr-container: 1110px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--cr-bg);
  color: var(--cr-text);
}
main, section, article, aside, header, footer, nav, figure, figcaption { display: block; }
figure { margin: 0; }
img { max-width: 100%; height: auto; border-style: none; vertical-align: top; }
svg { transform: translateZ(0); }
a { color: inherit; cursor: pointer; background-color: transparent; }
button { margin: 0; overflow: visible; text-transform: none; font: inherit; }
button::-moz-focus-inner { border-style: none; padding: 0; }
[hidden] { display: none !important; }
* { outline: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
b, strong { font-weight: 700; }

h1 { font-weight: 700; font-size: 48px; line-height: normal; margin: 0 auto 32px; }
h2 { font-weight: 700; font-size: 40px; line-height: normal; margin: 0 auto 32px; }
h3 { font-weight: 600; font-size: 36px; line-height: normal; margin: 0 auto 28px; }
h4 { font-weight: 700; font-size: 32px; line-height: normal; margin: 0 auto 20px; }
@media only screen and (max-width: 767px) {
  h1 { font-size: 32px; margin-bottom: 20px; }
  h2 { font-size: 26px; margin-bottom: 20px; }
  h3 { font-size: 22px; margin-bottom: 16px; }
  h4 { font-size: 20px; margin-bottom: 16px; }
}

h2[id], h3[id] { scroll-margin-top: 86px; }

.cr-shell {
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  padding: var(--cr-shell-pad) 0 0;
}
@media only screen and (max-width: 767px) {
  .cr-shell { padding: 54px 0 0; }
}

@keyframes crPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--cr-brick); }
  70% { transform: scale(1); box-shadow: 0 4px 24px 0 var(--cr-brick-hi); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 transparent; }
}
@keyframes crGlide {
  0% { left: -16px; }
  100% { left: calc(100% + 16px); }
}

/* ============================================================
   EN-TETE
   ============================================================ */
.cr-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 66px;
  background: var(--cr-head-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 99;
}
@media only screen and (max-width: 767px) { .cr-head { height: 54px; } }
.cr-head__inner {
  max-width: 1142px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1023px) { .cr-head__inner { justify-content: flex-start; gap: 12px; } }
.cr-logo { display: flex; align-items: center; }
.cr-logo img { max-height: 40px; height: 40px; width: auto; display: block; }
@media only screen and (max-width: 1023px) { .cr-logo { order: -2; } }
@media only screen and (max-width: 767px) {
  .cr-logo img { max-height: 32px; height: 32px; max-width: none; }
}

@media only screen and (min-width: 1024px) {
  .cr-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.cr-nav__list { display: flex; align-items: center; justify-content: center; list-style: none; margin: 0; padding: 0; }
.cr-nav__list li { font-size: 16px; margin: 0 2px; }
.cr-nav__list li [data-go] {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--cr-text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
@media only screen and (min-width: 1024px) {
  .cr-nav__list li [data-go]:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
}

.cr-head__buttons { display: flex; align-items: center; margin-left: auto; }
.cr-head__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 38px;
  padding: 0 14px;
  margin-left: 10px;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  font-size: 14px;
  font-weight: 700;
  color: #0B1418;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.cr-head__cta > span { position: relative; z-index: 1; }
.cr-head__cta::before {
  content: '';
  position: absolute;
  top: 0; left: -16px;
  z-index: 0;
  width: 32px; height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: crGlide 2s infinite;
}
.cr-head__cta:hover { background: linear-gradient(180deg, var(--cr-gold-2) 0%, var(--cr-gold) 100%); }
@media only screen and (max-width: 767px) {
  .cr-head__cta { height: 36px; padding: 0 12px; font-size: 13px; }
  .cr-head__buttons { max-width: 230px; justify-content: flex-end; }
}

/* ---------- Menu mobile plein ecran ---------- */
.cr-menu-toggle { position: absolute; opacity: 0; pointer-events: none; }
.cr-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cr-panel-2);
  border: 1px solid var(--cr-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.cr-burger span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
@media only screen and (max-width: 1023px) {
  .cr-burger { display: flex; order: 3; }
  .cr-head__buttons { order: 2; }
  .cr-nav {
    position: fixed;
    top: 66px; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 24px 16px;
    background: var(--cr-head-bg);
    border-top: 1px solid var(--cr-line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    overflow-y: auto;
    z-index: 40;
  }
  .cr-nav__list { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .cr-nav__list li { margin: 0; }
  .cr-nav__list li [data-go] {
    padding: 14px 12px;
    font-size: 18px;
    border-bottom: 1px solid var(--cr-line);
    border-radius: 0;
  }
  .cr-nav__actions { display: flex; width: 100%; }
  .cr-nav__actions .cr-head__cta { flex: 1 1 0; height: 48px; margin: 0; font-size: 16px; }
  .cr-menu-toggle:checked ~ .cr-nav {
    opacity: 1; visibility: visible; transform: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .cr-menu-toggle:checked ~ .cr-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .cr-menu-toggle:checked ~ .cr-burger span:nth-child(2) { opacity: 0; }
  .cr-menu-toggle:checked ~ .cr-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media only screen and (max-width: 767px) {
  .cr-nav { top: 54px; }
  .cr-burger { width: 38px; height: 38px; }
}
.cr-nav__actions { display: none; gap: 10px; }

/* ============================================================
   PREMIER ECRAN
   ============================================================ */
.cr-stage { width: 100%; margin: 0 0 56px; }
@media only screen and (max-width: 767px) { .cr-stage { margin: 0 0 40px; } }
.cr-stage__inner { position: relative; }
.cr-stage__bg {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh - 66px);
  height: calc(100dvh - 66px);
  overflow: hidden;
  cursor: pointer;
}
.cr-stage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cr-stage__bg:focus-visible { outline: 2px solid var(--cr-gold); outline-offset: -4px; }
@media only screen and (max-width: 767px) {
  .cr-stage__bg { height: calc(100vh - 54px); height: calc(100dvh - 54px); }
}
.cr-stage__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  max-width: 680px;
  width: 100%;
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--cr-panel);
  border: 1px solid var(--cr-line);
  text-align: center;
  margin-bottom: env(safe-area-inset-bottom, 0px);
}
.cr-stage__copy { max-width: none; width: 100%; }
.cr-stage__title {
  font-weight: 800;
  font-size: 52px;
  line-height: 1.2;
  margin: 0;
  padding: 0 6px;
  color: var(--cr-text);
  white-space: nowrap;
}
.cr-stage__text {
  max-width: 540px;
  margin: 12px auto 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cr-muted-2);
}
.cr-stage__cta { display: flex; align-items: center; justify-content: center; gap: 14px; }
@media only screen and (max-width: 991px) {
  .cr-stage__panel { bottom: 28px; padding: 30px 24px; max-width: min(680px, calc(100% - 32px)); }
  .cr-stage__title { font-size: 44px; }
}
@media only screen and (max-width: 767px) {
  .cr-stage__panel { bottom: 16px; padding: 26px 18px; max-width: calc(100% - 24px); gap: 14px; }
  .cr-stage__title { font-size: 32px; white-space: normal; }
  .cr-stage__text { font-size: 15px; margin-top: 10px; }
  .cr-stage__cta { width: 100%; flex-direction: column-reverse; }
}
@media only screen and (max-width: 360px) {
  .cr-stage__title { font-size: 28px; }
}

/* ---------- boutons ---------- */
.cr-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 46px;
  padding: 12px 28px;
  border-radius: 10px;
  background: #A7BCC1;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #0B1418;
  cursor: pointer;
  border: none;
  transition: 0.3s ease-in-out;
}
.cr-btn-ghost:hover { background: #C0D2D6; }
.cr-btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  width: 274px;
  height: 46px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #0B1418;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.cr-btn-gold span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cr-btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -16px;
  z-index: 0;
  width: 32px; height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: crGlide 2s infinite;
}
.cr-btn-gold:hover { background: linear-gradient(180deg, var(--cr-gold-2) 0%, var(--cr-gold) 100%); }
@media only screen and (max-width: 767px) {
  .cr-btn-ghost, .cr-btn-gold { width: 100%; }
}

/* ---------- fiche technique sous le hero ---------- */
.cr-stage__facts {
  max-width: var(--cr-container);
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 0;
}
@media only screen and (max-width: 1200px) { .cr-stage__facts { padding: 24px 16px 0; } }
.cr-stage__facts .cr-stage__h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--cr-text);
}
@media only screen and (max-width: 767px) {
  .cr-stage__facts .cr-stage__h2 { font-size: 26px; margin-bottom: 16px; }
}

/* ============================================================
   MODALE DEMO
   ============================================================ */
body.cr-locked { overflow: hidden; }
.cr-demo {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  display: none;
  background: var(--cr-bg);
}
.cr-demo.is-on { display: block; }
.cr-demo iframe {
  display: block;
  width: 100%;
  height: calc(100% - 72px);
  border: none;
  background: var(--cr-bg);
}
.cr-demo__close {
  position: absolute;
  top: 15px; right: 15px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  color: #000;
  border: 1px solid #000;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
}
.cr-demo__foot { height: 72px; padding: 8px 16px 18px; background: var(--cr-bg); }
.cr-demo__foot .cr-btn-gold {
  width: 100%;
  animation: crPulse 2s infinite;
}
@media only screen and (min-width: 768px) {
  .cr-demo__foot { display: flex; justify-content: center; }
  .cr-demo__foot .cr-btn-gold { width: 360px; }
}

/* ---------- offre par-dessus la demo ---------- */
.cr-nudge {
  position: absolute;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(7, 26, 32, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.cr-nudge.is-on { opacity: 1; visibility: visible; }
.cr-nudge__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 28px 24px 22px;
  border-radius: 14px;
  border: 1px solid var(--cr-gold);
  background: var(--cr-panel);
  box-shadow: 0 0 0 1px rgba(240, 168, 27, 0.25), 0 20px 60px rgba(0, 0, 0, 0.6);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s ease-in-out;
}
.cr-nudge.is-on .cr-nudge__card { transform: none; }
.cr-nudge__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
  font-size: 20px;
  line-height: 1;
  color: var(--cr-muted);
  cursor: pointer;
}
.cr-nudge__close:hover { color: #fff; }
.cr-nudge__logo {
  display: block;
  width: 120px; height: 79px;
  margin: 0 auto 14px;
  border-radius: 8px;
  border: 1px solid var(--cr-line);
  object-fit: cover;
}
.cr-nudge__label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cr-muted);
}
.cr-nudge__title { margin: 12px 0 8px; font-size: 22px; font-weight: 700; line-height: 130%; color: #fff; }
.cr-nudge__text { margin: 0; font-size: 15px; line-height: 155%; color: var(--cr-muted-2); }
.cr-nudge__bonus { margin: 12px 0 18px; font-size: 16px; font-weight: 700; line-height: 140%; color: var(--cr-gold-soft); }
.cr-nudge__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #0B1418;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: 0.3s ease-in-out;
}
.cr-nudge__btn > span { position: relative; z-index: 1; }
.cr-nudge__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -16px;
  z-index: 0;
  width: 32px; height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: crGlide 2s infinite;
}
.cr-nudge__btn:hover { background: linear-gradient(180deg, var(--cr-gold-2) 0%, var(--cr-gold) 100%); }
.cr-nudge__continue {
  margin-top: 14px;
  padding: 4px 8px;
  border: 0;
  background: none;
  font-size: 14px;
  text-decoration: underline;
  color: var(--cr-muted);
  cursor: pointer;
}
.cr-nudge__continue:hover { color: #fff; }
@media only screen and (max-width: 767px) {
  .cr-nudge__card { padding: 22px 16px 18px; }
  .cr-nudge__logo { width: 96px; height: 63px; }
  .cr-nudge__title { font-size: 19px; }
}

/* ============================================================
   OFFRES CASINO
   ============================================================ */
.cr-tops {
  max-width: var(--cr-container);
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0;
}
@media only screen and (max-width: 1200px) { .cr-tops { padding: 40px 16px 0; } }
@media only screen and (max-width: 767px) { .cr-tops { padding: 32px 16px 0; } }
.cr-tops__title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cr-text);
}
.cr-tops__intro { margin: 0 0 20px; font-size: 15px; line-height: 150%; color: var(--cr-muted); }
.cr-tops__list { display: flex; flex-direction: column; gap: 12px; }
.cr-tops__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel);
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.cr-tops__row:hover { background: var(--cr-panel-2); border-color: var(--cr-line-hi); }
.cr-tops__row--1 {
  border-color: var(--cr-gold);
  box-shadow: 0 0 0 1px rgba(240, 168, 27, 0.35), 0 4px 24px rgba(240, 168, 27, 0.12);
}
.cr-tops__row--1:hover { border-color: var(--cr-gold-2); }
.cr-tops__rank {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
  font-weight: 700;
  font-size: 18px;
  color: var(--cr-text);
}
.cr-tops__row--1 .cr-tops__rank {
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  border-color: transparent;
  color: #0B1418;
}
.cr-tops__logo {
  flex: 0 0 150px;
  width: 150px; height: 99px;
  border-radius: 8px;
  border: 1px solid var(--cr-line);
  object-fit: cover;
  background: var(--cr-bg);
}
.cr-tops__info { flex: 1 1 auto; min-width: 0; }
.cr-tops__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--cr-text);
}
.cr-tops__medal {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cr-muted);
}
.cr-tops__row--1 .cr-tops__medal {
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  border-color: transparent;
  color: #0B1418;
}
.cr-tops__bonus { margin-top: 6px; font-weight: 600; font-size: 16px; line-height: 140%; color: var(--cr-gold-soft); }
.cr-tops__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 140%;
  color: var(--cr-muted);
}
.cr-tops__flag svg { flex: 0 0 auto; width: 20px; height: 15px; border-radius: 2px; }
.cr-tops__btn {
  flex: 0 0 200px;
  width: 200px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--cr-brick);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: 0.3s ease-in-out;
}
.cr-tops__btn:hover { background: var(--cr-brick-hi); }
.cr-tops__btn--top {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  color: #0B1418;
}
.cr-tops__btn--top > span { position: relative; z-index: 1; }
.cr-tops__btn--top::before {
  content: '';
  position: absolute;
  top: 0; left: -16px;
  z-index: 0;
  width: 32px; height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: crGlide 2s infinite;
}
.cr-tops__btn--top:hover { background: linear-gradient(180deg, var(--cr-gold-2) 0%, var(--cr-gold) 100%); color: #0B1418; }
.cr-tops__btn:focus-visible { outline: 2px solid var(--cr-gold-2); outline-offset: 3px; }
.cr-tops__terms { margin: 16px 0 0; font-size: 12px; line-height: 150%; text-align: center; color: var(--cr-dim); }
@media only screen and (max-width: 767px) {
  .cr-tops__title { font-size: 26px; }
  .cr-tops__intro { font-size: 14px; }
  .cr-tops__row { flex-wrap: wrap; gap: 12px 14px; padding: 14px; }
  .cr-tops__rank { flex-basis: 36px; width: 36px; height: 36px; font-size: 16px; }
  .cr-tops__logo { flex-basis: 104px; width: 104px; height: 69px; }
  .cr-tops__info { flex: 1 1 140px; }
  .cr-tops__name { font-size: 16px; }
  .cr-tops__bonus { font-size: 14px; }
  .cr-tops__btn { flex-basis: 100%; width: 100%; }
}

/* ============================================================
   BANDEAU FIXE EN BAS
   ============================================================ */
.cr-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  padding: 0 16px 12px;
  transform: translateY(115%);
  transition: transform 0.4s ease-in-out;
  pointer-events: none;
}
.cr-sticky.is-on { transform: translateY(0); pointer-events: auto; }
.cr-sticky__inner {
  position: relative;
  max-width: var(--cr-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--cr-gold);
  background: var(--cr-panel);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(240, 168, 27, 0.25);
}
.cr-sticky__logo {
  flex: 0 0 84px;
  width: 84px; height: 55px;
  border-radius: 6px;
  border: 1px solid var(--cr-line);
  object-fit: cover;
}
.cr-sticky__info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cr-sticky__label {
  font-size: 11px; font-weight: 700; line-height: 140%;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--cr-gold-soft);
}
.cr-sticky__name { font-size: 16px; font-weight: 700; line-height: 140%; color: var(--cr-text); }
.cr-sticky__bonus {
  font-size: 14px; line-height: 140%; color: var(--cr-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cr-sticky__btn {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  width: 180px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #0B1418;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: 0.3s ease-in-out;
}
.cr-sticky__btn > span { position: relative; z-index: 1; }
.cr-sticky__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -16px;
  z-index: 0;
  width: 32px; height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: crGlide 2s infinite;
}
.cr-sticky__btn:hover { background: linear-gradient(180deg, var(--cr-gold-2) 0%, var(--cr-gold) 100%); }
.cr-sticky__close {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
  font-size: 20px;
  line-height: 1;
  color: var(--cr-muted);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.cr-sticky__close:hover { color: #fff; border-color: var(--cr-line-hi); }
body.cr-sticky-on .cr-foot__bottom { padding-bottom: 108px; }
@media only screen and (max-width: 767px) {
  .cr-sticky { padding: 0 8px 8px; }
  .cr-sticky__inner { gap: 10px; padding: 10px 12px; }
  .cr-sticky__logo { flex-basis: 56px; width: 56px; height: 37px; }
  .cr-sticky__label { display: none; }
  .cr-sticky__name { font-size: 14px; }
  .cr-sticky__bonus { font-size: 12px; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .cr-sticky__btn { width: 96px; height: 40px; font-size: 14px; }
  .cr-sticky__close { position: absolute; top: -12px; right: -2px; width: 26px; height: 26px; font-size: 16px; }
  body.cr-sticky-on .cr-foot__bottom { padding-bottom: 100px; }
}

/* ============================================================
   DERNIERS GAINS
   ============================================================ */
.cr-feed { max-width: var(--cr-container); width: 100%; margin: 0 auto; padding: 24px 0 0; }
@media only screen and (max-width: 1200px) { .cr-feed { padding: 24px 16px 0; } }
.cr-feed__box { border-radius: 12px; border: 1px solid var(--cr-line); background: var(--cr-panel); overflow: hidden; }
.cr-feed__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
}
.cr-feed__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  background: rgba(0, 182, 122, 0.15);
  border: 1px solid rgba(0, 182, 122, 0.4);
  font-size: 11px; font-weight: 700; line-height: 140%;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cr-green);
}
.cr-feed__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cr-green);
  animation: crWinsPulse 1.6s ease-out infinite;
}
@keyframes crWinsPulse {
  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); }
}
.cr-feed__title { font-size: 16px; font-weight: 700; line-height: 140%; color: var(--cr-text); }
.cr-feed__list { margin: 0; padding: 0; list-style: none; }
.cr-feed__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--cr-line);
}
.cr-feed__item:last-child { border-bottom: none; }
.cr-feed__item.is-new { animation: crWinIn 0.5s ease-out; }
@keyframes crWinIn {
  0% { opacity: 0; transform: translateY(-10px); background: rgba(240, 168, 27, 0.12); }
  60% { background: rgba(240, 168, 27, 0.12); }
  100% { opacity: 1; transform: none; background: transparent; }
}
.cr-feed__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, #1F5361 0%, #2C7284 100%);
}
.cr-feed__avatar--2 { background: linear-gradient(135deg, #1F8A70 0%, #00B67A 100%); }
.cr-feed__avatar--3 { background: linear-gradient(135deg, #A94720 0%, #C2582F 100%); }
.cr-feed__avatar--4 { background: linear-gradient(135deg, #B07A12 0%, #F0A81B 100%); }
.cr-feed__body {
  flex: 1 1 auto; min-width: 0;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 14px; line-height: 140%; color: var(--cr-muted);
}
.cr-feed__nick { color: #fff; }
.cr-feed__amount { color: var(--cr-gold-soft); font-size: 15px; }
.cr-feed__meta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.cr-feed__casino {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 600; text-decoration: none; cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.cr-feed__casino:hover { color: var(--cr-gold-2); border-bottom-color: rgba(255, 212, 82, 0.5); }
.cr-feed__casino img { width: 28px; height: 18px; border-radius: 4px; object-fit: cover; border: 1px solid var(--cr-line); }
.cr-feed__time { flex: 0 0 auto; font-size: 12px; line-height: 140%; color: var(--cr-dim); white-space: nowrap; }
@media only screen and (max-width: 767px) {
  .cr-feed__head { padding: 12px 14px; }
  .cr-feed__title { font-size: 15px; }
  .cr-feed__item { flex-wrap: wrap; gap: 8px 12px; padding: 10px 14px; }
  .cr-feed__body { flex: 1 1 0; flex-direction: column; align-items: flex-start; gap: 2px; }
  .cr-feed__time { flex-basis: auto; margin-left: auto; align-self: flex-start; }
}

/* ============================================================
   SOMMAIRE
   ============================================================ */
.cr-index { max-width: var(--cr-container); width: 100%; margin: 0 auto; padding: 32px 0 0; }
@media only screen and (max-width: 1200px) { .cr-index { padding: 32px 16px 0; } }
.cr-index__box { padding: 20px 24px; border-radius: 12px; border: 1px solid var(--cr-line); background: var(--cr-panel); }
.cr-index__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0; padding: 0;
  border: 0; background: none;
  text-align: left;
  color: var(--cr-text);
  cursor: pointer;
}
.cr-index__title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; line-height: 140%; }
.cr-index__title svg { width: 20px; height: 20px; color: var(--cr-gold-soft); }
.cr-index__toggle {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--cr-muted);
  transition: color 0.2s ease-in-out;
}
.cr-index__head:hover .cr-index__toggle { color: var(--cr-gold-2); }
.cr-index__toggle svg { width: 14px; height: 14px; transform: rotate(180deg); transition: transform 0.35s ease-in-out; }
.cr-index.is-shut .cr-index__toggle svg { transform: rotate(0deg); }
.cr-index__body { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.35s ease-in-out; }
.cr-index.is-shut .cr-index__body { grid-template-rows: 0fr; }
.cr-index__list {
  min-height: 0;
  overflow: hidden;
  margin: 0; padding: 14px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  counter-reset: crtoc;
}
.cr-index__list li { display: flex; align-items: baseline; gap: 10px; counter-increment: crtoc; }
.cr-index__list li::before {
  content: counter(crtoc, decimal-leading-zero);
  flex: 0 0 auto;
  font-weight: 700; font-size: 13px; color: var(--cr-gold-soft);
}
.cr-index__list a {
  font-size: 16px; line-height: 140%; color: var(--cr-text); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.cr-index__list a:hover { color: var(--cr-gold-2); border-bottom-color: rgba(255, 212, 82, 0.5); }
@media only screen and (max-width: 767px) {
  .cr-index__box { padding: 16px; }
  .cr-index__list { grid-template-columns: 1fr; }
  .cr-index__list a { font-size: 15px; }
}

/* ============================================================
   BLOCS DE CONTENU
   ============================================================ */
.cr-block {
  max-width: var(--cr-container);
  width: 100%;
  margin: 0 auto 56px;
}
@media only screen and (max-width: 1200px) { .cr-block { padding: 0 16px; } }
@media only screen and (max-width: 767px) { .cr-block { margin-bottom: 40px; } }
.cr-block h2 {
  font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--cr-text);
}
.cr-block h3 { font-size: 22px; font-weight: 800; line-height: 1.2; margin: 26px 0 12px; color: var(--cr-text); }
.cr-block h4 { font-size: 18px; font-weight: 800; line-height: 1.25; margin: 22px 0 10px; color: var(--cr-text); }
.cr-block h2 + p, .cr-block h3 + p { margin-top: 14px; }
.cr-block p { margin: 0 0 16px; font-size: 16px; line-height: 1.6; color: var(--cr-muted-2); }
.cr-block ul, .cr-block ol { margin: 0 0 16px; padding: 0 0 0 20px; }
.cr-block li { margin-bottom: 8px; font-size: 16px; line-height: 1.6; color: var(--cr-muted-2); }
.cr-block strong { color: #fff; }
@media only screen and (max-width: 767px) {
  .cr-block h2 { font-size: 26px; }
  .cr-block h3 { font-size: 20px; }
}

/* ---------- tableaux ---------- */
.cr-tablewrap {
  width: 100%;
  margin: 0 0 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--cr-line);
}
.cr-tablewrap table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: var(--cr-panel);
}
.cr-tablewrap th,
.cr-tablewrap td {
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
  color: var(--cr-muted-2);
  border: 1px solid var(--cr-line);
  border-top: none;
  background: var(--cr-panel);
}
.cr-tablewrap th {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cr-muted);
  background: var(--cr-panel-2);
}
.cr-tablewrap td:first-child { font-weight: 600; color: #fff; }
.cr-tablewrap tbody tr:hover td { background: var(--cr-panel-2); }
.cr-tablewrap tr:last-child td { border-bottom: none; }
@media only screen and (max-width: 767px) {
  .cr-tablewrap th, .cr-tablewrap td { padding: 10px 12px; font-size: 14px; }
  .cr-tablewrap table.cr-table-wide { min-width: 660px; }
}

/* ---------- pour / contre ---------- */
.cr-verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.cr-verdict__col { padding: 20px 22px; border-radius: 12px; background: var(--cr-panel); border: 1px solid var(--cr-line); }
.cr-verdict__col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; font-size: 18px; }
.cr-verdict__col h3::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}
.cr-verdict__col--pro h3::before {
  background-color: rgba(0, 182, 122, 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='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");
}
.cr-verdict__col--con h3::before {
  background-color: rgba(224, 87, 75, 0.16);
  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='%23e0574b' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.cr-verdict__col ul { margin: 0; padding-left: 20px; }
.cr-verdict__col li { margin-bottom: 8px; font-size: 15px; line-height: 1.55; color: var(--cr-muted-2); }
@media only screen and (max-width: 767px) { .cr-verdict { grid-template-columns: 1fr; } }

/* ============================================================
   AUTRES OPUS DE LA SERIE
   ============================================================ */
.cr-suite { max-width: var(--cr-container); width: 100%; margin: 0 auto 56px; }
@media only screen and (max-width: 1200px) { .cr-suite { padding: 0 16px; } }
@media only screen and (max-width: 767px) { .cr-suite { margin-bottom: 40px; } }
.cr-suite h2 { font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 16px; }
@media only screen and (max-width: 767px) { .cr-suite h2 { font-size: 26px; } }
.cr-suite__intro { margin: 0 0 20px; font-size: 16px; line-height: 150%; color: var(--cr-muted); }
.cr-suite__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cr-suite__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel);
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
}
.cr-suite__card:hover { border-color: var(--cr-line-hi); }
.cr-suite__media { position: relative; }
.cr-suite__media img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.cr-suite__badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(240, 168, 27, 0.5);
  background: rgba(7, 26, 32, 0.85);
  font-size: 11px; font-weight: 700; line-height: 140%;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cr-gold-soft);
}
.cr-suite__body { flex: 1 1 auto; display: flex; flex-direction: column; padding: 20px; }
.cr-suite__title { margin: 0 0 8px; font-size: 20px; font-weight: 700; line-height: 140%; color: var(--cr-text); }
.cr-suite__text { flex: 1 1 auto; margin: 0 0 18px; font-size: 15px; line-height: 150%; color: var(--cr-muted-2); }
.cr-suite__actions { display: flex; gap: 10px; }
.cr-suite__play,
.cr-suite__demo {
  flex: 1 1 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 700; font-size: 15px; line-height: 140%;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.cr-suite__play { background: var(--cr-brick); color: #fff; }
.cr-suite__play:hover { background: var(--cr-brick-hi); }
.cr-suite__demo { background: #A7BCC1; color: #0B1418; }
.cr-suite__demo:hover { background: #C0D2D6; }
@media only screen and (max-width: 1024px) { .cr-suite__grid { gap: 14px; } .cr-suite__body { padding: 16px; } }
@media only screen and (max-width: 767px) { .cr-suite__grid { grid-template-columns: 1fr; } }

/* ============================================================
   AVIS JOUEURS
   ============================================================ */
.cr-voices { max-width: var(--cr-container); width: 100%; margin: 0 auto 56px; }
@media only screen and (max-width: 1200px) { .cr-voices { padding: 0 16px; } }
@media only screen and (max-width: 767px) { .cr-voices { margin-bottom: 40px; } }
.cr-voices h2 { font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 16px; }
@media only screen and (max-width: 767px) { .cr-voices h2 { font-size: 26px; } }
.cr-voices__summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 24px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel);
}
.cr-voices__word { font-size: 22px; font-weight: 700; line-height: 130%; color: #fff; }
.cr-voices__text { font-size: 14px; line-height: 140%; color: var(--cr-muted); }
.cr-voices__text strong { color: #fff; }
.cr-stars { display: inline-flex; gap: 3px; }
.cr-star {
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00B67A;
  border-radius: 3px;
}
.cr-star.is-empty { background: #23414A; }
.cr-star.is-half { background: linear-gradient(90deg, #00B67A 50%, #23414A 50%); }
.cr-star svg { width: 17px; height: 17px; fill: #fff; }
.cr-stars--sm { gap: 2px; }
.cr-stars--sm .cr-star { width: 20px; height: 20px; }
.cr-stars--sm .cr-star svg { width: 13px; height: 13px; }
.cr-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cr-voice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel);
  transition: border-color 0.3s ease-in-out;
}
.cr-voice:hover { border-color: var(--cr-line-hi); }
.cr-voice__head { display: flex; align-items: center; gap: 12px; }
.cr-voice__avatar {
  width: 48px; height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--cr-line);
}
.cr-voice__meta { display: flex; flex-direction: column; min-width: 0; }
.cr-voice__name { font-weight: 700; font-size: 15px; line-height: 140%; color: #fff; }
.cr-voice__sub { font-size: 12px; line-height: 140%; color: var(--cr-dim); }
.cr-voice__rating { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cr-voice__date { font-size: 12px; color: var(--cr-dim); }
.cr-voice__title { margin: 0; font-weight: 700; font-size: 16px; line-height: 140%; color: #fff; }
.cr-voice__text { flex: 1 1 auto; margin: 0; font-size: 15px; line-height: 1.55; color: var(--cr-muted-2); }
.cr-voice__verified { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--cr-green); }
.cr-voice__verified svg { width: 14px; height: 14px; }
@media only screen and (max-width: 1024px) { .cr-voices__grid { grid-template-columns: repeat(2, 1fr); } }
@media only screen and (max-width: 767px) {
  .cr-voices__grid { grid-template-columns: 1fr; gap: 12px; }
  .cr-voices__summary { padding: 14px 16px; }
  .cr-voices__word { font-size: 18px; }
  .cr-voice { padding: 16px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.cr-qa { max-width: var(--cr-container); width: 100%; margin: 0 auto 40px; }
@media only screen and (max-width: 1200px) { .cr-qa { padding: 0 16px; } }
@media only screen and (max-width: 767px) { .cr-qa { margin-bottom: 32px; } }
.cr-qa h2 { font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 16px; }
@media only screen and (max-width: 767px) { .cr-qa h2 { font-size: 26px; } }
.cr-qa__list { display: flex; flex-direction: column; gap: 10px; }
.cr-qa__item {
  border-radius: 12px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel);
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
}
.cr-qa__item.is-open { border-color: rgba(240, 168, 27, 0.6); }
.cr-qa__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  color: var(--cr-text);
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.cr-qa__question:hover { color: var(--cr-gold-2); }
.cr-qa__question:focus-visible { outline: 2px solid var(--cr-gold-2); outline-offset: -2px; border-radius: 12px; }
.cr-qa__icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel-2);
  color: #fff;
  transition: transform 0.35s ease-in-out, background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.cr-qa__icon svg { width: 14px; height: 14px; }
.cr-qa__item.is-open .cr-qa__icon {
  transform: rotate(180deg);
  background: linear-gradient(180deg, var(--cr-gold) 0%, var(--cr-gold-2) 100%);
  border-color: transparent;
  color: #0B1418;
}
.cr-qa__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease-in-out; }
.cr-qa__item.is-open .cr-qa__answer { grid-template-rows: 1fr; }
.cr-qa__answer-inner { overflow: hidden; }
.cr-qa__answer p { margin: 0; padding: 0 20px 18px; font-size: 16px; line-height: 1.6; color: var(--cr-muted-2); }
@media only screen and (max-width: 767px) {
  .cr-qa__question { padding: 14px 16px; font-size: 15px; }
  .cr-qa__answer p { padding: 0 16px 16px; font-size: 15px; }
}

/* ============================================================
   AVIS DE L'EXPERT
   ============================================================ */
.cr-expert-block { max-width: var(--cr-container); width: 100%; margin: 0 auto 56px; }
@media only screen and (max-width: 1200px) { .cr-expert-block { padding: 0 16px; } }
.cr-expert-block h2 { font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 16px; }
@media only screen and (max-width: 767px) { .cr-expert-block h2 { font-size: 26px; } }
.cr-expert {
  display: flex;
  gap: 22px;
  padding: 24px;
  border-radius: 12px;
  background: var(--cr-panel);
  border: 1px solid var(--cr-line);
  margin-top: 20px;
}
.cr-expert__photo {
  flex: 0 0 120px;
  width: 120px; height: 120px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--cr-line);
}
.cr-expert__body { flex: 1 1 auto; min-width: 0; }
.cr-expert__name { display: block; font-size: 20px; font-weight: 800; color: #fff; }
.cr-expert__role { display: block; margin: 2px 0 12px; font-size: 13px; color: var(--cr-dim); }
.cr-expert__body p { font-size: 15px; line-height: 1.6; color: var(--cr-muted); margin: 0 0 12px; }
.cr-expert__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; }
.cr-expert__badges li {
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--cr-panel-2);
  border: 1px solid var(--cr-line);
  font-size: 12px; font-weight: 600; color: var(--cr-muted);
}
.cr-expert__quote {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--cr-gold);
  border-radius: 0 10px 10px 0;
  background: rgba(240, 168, 27, 0.06);
  color: var(--cr-muted-2);
  font-style: italic;
}
@media only screen and (max-width: 639px) {
  .cr-expert { flex-direction: column; padding: 18px; gap: 14px; }
  .cr-expert__photo { width: 96px; height: 96px; flex-basis: 96px; }
}

/* ============================================================
   DATE DE MISE A JOUR
   ============================================================ */
.cr-stamp-block { max-width: var(--cr-container); width: 100%; margin: 0 auto 64px; }
@media only screen and (max-width: 1200px) { .cr-stamp-block { padding: 0 16px; } }
@media only screen and (max-width: 767px) { .cr-stamp-block { margin-bottom: 48px; } }
.cr-stamp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--cr-panel);
  border: 1px solid var(--cr-line);
  border-left: 3px solid var(--cr-gold);
}
.cr-stamp__icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(240, 168, 27, 0.12);
  color: var(--cr-gold);
}
.cr-stamp__icon svg { width: 24px; height: 24px; }
.cr-stamp__body { flex: 1 1 auto; min-width: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px; }
.cr-stamp__label { color: var(--cr-dim); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.cr-stamp__date { font-size: 17px; font-weight: 800; color: #fff; }
.cr-stamp__note { flex-basis: 100%; color: var(--cr-muted); font-size: 13px; line-height: 1.5; }
.cr-stamp__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.35);
  color: var(--cr-green);
  font-size: 12px; font-weight: 700;
}
.cr-stamp__badge svg { width: 16px; height: 16px; }
@media only screen and (max-width: 639px) {
  .cr-stamp { display: grid; grid-template-columns: 44px 1fr; gap: 10px 12px; padding: 14px 16px; }
  .cr-stamp__badge { grid-column: 2; justify-self: start; }
}

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.cr-foot {
  padding: 56px 0 0;
  background: var(--cr-head-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1200px) { .cr-foot { padding: 56px 16px 0; } }
@media only screen and (max-width: 767px) { .cr-foot { padding: 36px 16px 0; } }
.cr-foot__main { margin-bottom: 32px; }
.cr-foot__inner {
  max-width: var(--cr-container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) { .cr-foot__inner { flex-direction: column; } }
.cr-foot__info .cr-logo img { max-height: 100px; max-width: 230px; height: auto; width: auto; }
@media only screen and (max-width: 767px) { .cr-foot__info .cr-logo img { max-width: 160px; max-height: 70px; } }
.cr-foot__links { display: flex; align-items: flex-start; margin-left: 20px; }
@media only screen and (max-width: 767px) { .cr-foot__links { margin: 24px 0 0; flex-direction: row; gap: 32px; } }
.cr-foot-nav + .cr-foot-nav { margin-left: 120px; }
@media only screen and (max-width: 767px) { .cr-foot-nav + .cr-foot-nav { margin: 0; } }
.cr-foot-nav__list { list-style: none; margin: 0; padding: 0; }
.cr-foot-nav__list li { font-size: 16px; }
.cr-foot-nav__list li + li { margin-top: 16px; }
.cr-foot-nav__list li a,
.cr-foot-nav__list li [data-go] { color: #fff; text-decoration: none; transition: color 0.2s ease; }
.cr-foot-nav__list li a:hover,
.cr-foot-nav__list li [data-go]:hover { color: var(--cr-gold); }
@media only screen and (max-width: 767px) { .cr-foot-nav__list li { margin-bottom: 10px; font-size: 15px; } }

.cr-foot__social-row {
  max-width: var(--cr-container);
  width: 100%;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}
@media only screen and (max-width: 767px) { .cr-foot__social-row { margin-top: 24px; gap: 16px 20px; } }
.cr-social { display: flex; align-items: center; list-style: none; margin: 0 -4px; padding: 0; row-gap: 10px; flex-wrap: wrap; }
.cr-social li { display: flex; margin: 0 4px; }
.cr-social li a { display: flex; transition: transform 0.3s ease-in-out; }
.cr-social li a:hover { transform: scale(1.1); }
.cr-social li img { width: 36px; height: 36px; border-radius: 8px; }
.cr-foot__apps { display: flex; flex-wrap: wrap; gap: 10px; }
.cr-foot__apps [data-go] { display: inline-flex; border-radius: 7px; cursor: pointer; transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; }
.cr-foot__apps [data-go]:hover { transform: translateY(-2px); opacity: 0.9; }
.cr-foot__apps img { height: 40px; width: auto; border-radius: 7px; border: 1px solid #2A4E58; }

.cr-foot__badges {
  max-width: var(--cr-container);
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--cr-line);
}
.cr-foot__images { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 32px; }
.cr-foot__images a { display: flex; align-items: center; opacity: 0.85; transition: opacity 0.3s ease-in-out; }
.cr-foot__images a:hover { opacity: 1; }
.cr-foot__images img { height: auto; max-height: 56px; width: auto; }
@media only screen and (max-width: 767px) {
  .cr-foot__badges { margin-top: 24px; padding-top: 20px; }
  .cr-foot__images { gap: 14px 18px; }
  .cr-foot__images img { max-height: 36px; }
  .cr-foot__images img[width="96"] { width: 72px; }
  .cr-foot__images img[width="160"] { width: 130px; }
}
.cr-foot__bottom { display: flex; align-items: center; justify-content: center; padding: 0 0 32px; }
@media only screen and (max-width: 767px) { .cr-foot__bottom { padding-bottom: 24px; justify-content: flex-start; } }
.cr-copy { color: #fff; font-size: 12px; text-align: center; }

/* ============================================================
   BOUTON HAUT DE PAGE
   ============================================================ */
.cr-up {
  position: fixed;
  right: 20px; bottom: 24px;
  z-index: 70;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--cr-line);
  background: var(--cr-panel);
  color: var(--cr-gold);
  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, background 0.2s ease, color 0.2s ease, bottom 0.3s ease;
}
.cr-up.is-on {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease, bottom 0.3s ease;
}
.cr-up:hover { background: var(--cr-gold); color: #0B1418; }
.cr-up svg { width: 22px; height: 22px; }
@media only screen and (max-width: 1199px) { body.cr-sticky-on .cr-up { bottom: 112px; } }
@media only screen and (max-width: 767px) {
  .cr-up { right: 12px; bottom: 16px; width: 42px; height: 42px; }
  body.cr-sticky-on .cr-up { bottom: 108px; }
}

/* ============================================================
   PAGE 404
   ============================================================ */
.cr-404 { max-width: 800px; width: 100%; padding: 0 16px; text-align: center; margin: 60px auto 180px; }
.cr-404 h1 { font-size: 160px; font-weight: 800; line-height: 1; margin: 0 0 12px; color: var(--cr-gold); }
.cr-404 p { font-size: 18px; color: var(--cr-muted-2); margin: 0 0 40px; }
.cr-404 .cr-btn-gold { margin: 0 auto; }
@media only screen and (max-width: 767px) {
  .cr-404 { margin: 30px auto 100px; }
  .cr-404 h1 { font-size: 96px; }
}

[data-go] { cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cr-qa__answer, .cr-qa__icon, .cr-sticky, .cr-up { transition: none !important; }
  .cr-feed__dot, .cr-feed__item.is-new, .cr-btn-gold::before, .cr-head__cta::before,
  .cr-tops__btn--top::before, .cr-sticky__btn::before, .cr-nudge__btn::before, .cr-demo__foot .cr-btn-gold { animation: none; }
}
