/* ============================================================
   Chicken Road Casino DK — design affilie informationnel/commercial
   Reference: chicken-road-jeu-fr.com/france/
   Palette : blanc/gris clair + rouge #A91F09 + violet dégradé tables
   Font : Arial system, pas de webfont externe
   Layout : mobile-first, 1 colonne, hero 2-col sur large
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F3F3F3;
  --bg-dark:      #11182C;
  --bg-hero:      #0E1420;
  --ink:          #000000;
  --ink-muted:    #444444;
  --ink-faint:    #777777;
  --red:          #A91F09;
  --red-hover:    #F02E0F;
  --violet-from:  #6262D9;
  --violet-to:    #9D62D9;
  --table-row1:   #FFFFFF;
  --table-row2:   #EEEEEE;
  --edge:         #E0E0E0;
  --edge-violet:  #9D62D9;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.12);
  --radius-sm:    4px;
  --radius-md:    8px;
  --transition:   all 0.2s ease;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
}
a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { text-decoration: underline; color: var(--red-hover); }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 0.9em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: 0.4em; }
strong { font-weight: bold; }
h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.25; }

/* ---- Containers ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--edge);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}
.header-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.header-brand .brand-sub {
  font-size: 0.72rem;
  font-weight: normal;
  color: var(--ink-muted);
  display: block;
  line-height: 1.1;
}
.header-nav {
  display: none;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav a {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.header-nav a:hover {
  background: var(--edge);
  text-decoration: none;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff !important;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.header-cta:hover { background: var(--red-hover); text-decoration: none !important; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: 1px solid var(--edge);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  color: var(--ink);
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .nav-toggle { display: none; }
  .header-cta { font-size: 0.9rem; padding: 9px 20px; }
}

/* Mobile nav open */
.site-header.nav-open .header-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--edge);
  padding: 8px 16px 12px;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HERO CLICK-TO-PLAY
   ============================================================ */
.hero-game {
  background: var(--bg-hero);
  color: #fff;
  padding: 28px 16px 0;
}

/* Titre / sous-titre centrés au-dessus du jeu */
.hero-game-header {
  max-width: 960px;
  margin: 0 auto 20px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Zone de jeu (poster ou iframe) */
.game-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* État poster : image + overlay boutons */
.game-poster {
  position: relative;
  width: 100%;
  line-height: 0;
}
.game-poster img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 540px;
}

/* Overlay dégradé + 2 boutons */
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,20,32,0.15) 0%, rgba(14,20,32,0.72) 60%, rgba(14,20,32,0.94) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 20px 32px;
  gap: 14px;
}

/* Bouton VERT — jeu réel */
.btn-real {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #16a34a;
  color: #fff;
  font-weight: bold;
  font-size: 1.05rem;
  line-height: 1.25;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  width: 100%;
  max-width: 480px;
  border: none;
  box-shadow: 0 4px 18px rgba(22,163,74,0.45);
}
.btn-real:hover {
  background: #15803d;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 24px rgba(22,163,74,0.55);
}
.btn-real-sub {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 2px;
}

/* Bouton BLEU FONCÉ — demo */
.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  width: 100%;
  max-width: 480px;
}
.btn-demo:hover {
  background: #334155;
  border-color: rgba(255,255,255,0.5);
}

/* Iframe injectée au clic */
.game-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 340px;
  border: none;
}

/* Specs sous le jeu */
.hero-game-specs {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.hero-game-specs span strong {
  color: #fff;
  font-weight: bold;
}

/* Boutons génériques (sections internes) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-hover); text-decoration: none; color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover { border-color: #fff; text-decoration: none; color: #fff; background: rgba(255,255,255,0.08); }

@media (min-width: 600px) {
  .game-overlay { padding: 32px 40px 40px; }
  .btn-real { font-size: 1.15rem; padding: 16px 36px; }
  .btn-demo { font-size: 1rem; padding: 14px 36px; }
}

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
.section {
  padding: 40px 16px;
}
.section--alt {
  background: var(--bg-alt);
}
.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--ink);
}
.section-intro {
  color: var(--ink-muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  margin: 0 0 1.2em;
  border-radius: var(--radius-md);
  border: 1px solid var(--edge);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 400px;
}
.data-table thead tr {
  background: linear-gradient(138.33deg, var(--violet-from) 0%, var(--violet-to) 74.32%);
  color: #fff;
}
.data-table thead th {
  padding: 10px 14px;
  text-align: left;
  font-weight: bold;
  font-size: 0.875rem;
  border: none;
  white-space: nowrap;
}
.data-table tbody tr:nth-child(odd) {
  background: var(--table-row1);
}
.data-table tbody tr:nth-child(even) {
  background: var(--table-row2);
}
.data-table tbody td {
  padding: 9px 14px;
  border: none;
  vertical-align: middle;
  color: var(--ink);
}
.data-table tbody td strong {
  color: var(--ink);
}

/* ============================================================
   STEPS / HOW TO PLAY
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 1.2em;
}
.step-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(138deg, var(--violet-from) 0%, var(--violet-to) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--ink);
}
.step-body p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 0;
}

@media (min-width: 600px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 1.2em;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--violet-from);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--ink);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 0;
}

@media (min-width: 600px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CTA BOX (milieu page / appel à l'action)
   ============================================================ */
.cta-box {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  margin: 0 0 1.5em;
}
.cta-box h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}
.cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.cta-legal {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   DEMO SECTION
   ============================================================ */
.demo-section {
  background: var(--bg-dark);
  padding: 40px 16px;
  color: #fff;
}
.demo-title {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}
.demo-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.demo-iframe-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  margin-bottom: 20px;
}
.demo-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
}
.demo-tip {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.demo-tip a { color: rgba(255,255,255,0.65); }
.demo-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1.5em;
}
.casino-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.casino-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(138deg, var(--violet-from) 0%, var(--violet-to) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.casino-info {}
.casino-name {
  font-weight: bold;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.casino-details {
  font-size: 0.8rem;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.casino-tag {
  background: var(--bg-alt);
  border: 1px solid var(--edge);
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 0.75rem;
  white-space: nowrap;
}
.casino-cta {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.casino-cta:hover { background: var(--red-hover); text-decoration: none; color: #fff; }

/* ============================================================
   TIPS / CONSEILS
   ============================================================ */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tip-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.tip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}
.tip-body {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.tip-body strong { color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.2em;
}
.faq-item {
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  list-style: none;
  background: var(--bg);
  gap: 12px;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item[open] summary { background: var(--bg-alt); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--violet-from);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 12px 16px 16px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--edge);
  background: var(--bg);
}
.faq-answer p { margin-bottom: 0.5em; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   CONCLUSION
   ============================================================ */
.conclusion-box {
  background: linear-gradient(138.33deg, var(--violet-from) 0%, var(--violet-to) 74.32%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-bottom: 1.5em;
}
.conclusion-box h2 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.conclusion-box p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.sticky-cta:hover { background: var(--red-hover); text-decoration: none; color: #fff; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--edge);
  padding: 32px 16px 80px; /* 80px bottom for sticky CTA mobile */
}
@media (min-width: 900px) {
  .site-footer { padding-bottom: 32px; }
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul a {
  color: var(--ink-muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--ink); text-decoration: underline; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
}
.footer-badge {
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: bold;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-badge-18 {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.55;
  margin-bottom: 10px;
}
.footer-disclaimer a { color: var(--ink-muted); }
.footer-copyright {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.text-faint { color: var(--ink-faint); }
.text-muted { color: var(--ink-muted); }

/* ============================================================
   CONTENT WITH IMAGE (2-col layout)
   ============================================================ */
.content-with-image {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-with-image .content-text {
  flex: 1;
}
.content-with-image .content-image {
  flex-shrink: 0;
  max-width: 100%;
}
.content-with-image .content-image img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  max-height: 400px;
}
.content-with-image .content-cta-side {
  flex-shrink: 0;
}
@media (min-width: 700px) {
  .content-with-image {
    flex-direction: row;
    align-items: flex-start;
  }
  .content-with-image .content-image {
    max-width: 260px;
  }
  .content-with-image .content-image img {
    max-height: 480px;
    width: 260px;
  }
  .content-with-image--reverse {
    flex-direction: row-reverse;
  }
  .content-with-image .content-cta-side {
    max-width: 260px;
    width: 260px;
  }
}

/* ============================================================
   MODES GRID (4 sværhedsgrader)
   ============================================================ */
.modes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .modes-grid { grid-template-columns: 1fr 1fr; }
}
.mode-card {
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.mode-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 8px;
}
.mode-easy .mode-header { background: #f0fdf4; border-bottom: 2px solid #16a34a; }
.mode-medium .mode-header { background: #eff6ff; border-bottom: 2px solid #3b82f6; }
.mode-hard .mode-header { background: #fff7ed; border-bottom: 2px solid #f97316; }
.mode-daredevil .mode-header { background: #fef2f2; border-bottom: 2px solid #dc2626; }
.mode-badge {
  font-size: 0.78rem;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.mode-badge-easy { background: #16a34a; color: #fff; }
.mode-badge-medium { background: #3b82f6; color: #fff; }
.mode-badge-hard { background: #f97316; color: #fff; }
.mode-badge-daredevil { background: #dc2626; color: #fff; }
.mode-rtp {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: bold;
}
.mode-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}
.mode-body {
  padding: 14px 16px;
}
.mode-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 10px;
}
.mode-specs span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.mode-specs span strong {
  color: var(--ink);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mode-body p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.mode-tip {
  font-size: 0.8rem;
  color: var(--ink-muted);
  background: var(--bg-alt);
  border-left: 3px solid var(--violet-from);
  padding: 6px 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
}
.mode-tip strong { color: var(--ink); }

/* ============================================================
   CASINO CARD — DETAILED VERSION
   ============================================================ */
.casino-card-detailed {
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  padding: 16px;
}
.casino-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.55;
}

/* ============================================================
   REVIEWS GRID (avis joueurs)
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 1.2em;
}
@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.review-stars {
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.review-name {
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--ink-muted);
}
.review-text {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   TIP BODY — block layout (pour les tips enrichis)
   ============================================================ */
.tip-body p {
  margin-top: 6px;
  margin-bottom: 0;
}
.tip-body strong {
  display: block;
  margin-bottom: 2px;
}
