/* ===== Reset de styles (moderne) ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: inherit;
  color: inherit;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Global removal of list markers */
ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
ul li,
ol li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --fond: #0b0f1e;
  --fond-2: #0e1529;
  --encre: #f3f5f9;
  --accent: #ff6b2c;
  --accent-2: #3ad1c9;
  --voile: #11182d;
  --voile-2: rgba(255, 255, 255, 0.04);
  --bord-faible: rgba(255, 255, 255, 0.1);
  --bord-doux: rgba(255, 255, 255, 0.14);
  --muted: #a9b1c9;
  --ok: #2ecc71;
  --ko: #e74c3c;
  --ombre: 0 10px 30px rgba(0, 0, 0, 0.22);
  --rayon: 14px;
  --gap: 12px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body.fr-veu-root {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(
      1200px 800px at 10% -10%,
      rgba(58, 209, 201, 0.08),
      transparent 60%
    ),
    radial-gradient(
      1400px 900px at 100% 0%,
      rgba(255, 107, 44, 0.07),
      transparent 60%
    ),
    linear-gradient(180deg, var(--fond), var(--fond-2) 40%, #10162c 100%);
  color: var(--encre);
  line-height: 1.55;
}
body.fr-veu-root {
  background-color: #0c1222;
  background-image: radial-gradient(
      1000px 700px at 20% -10%,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.65)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../assets/betting-wallpaper.webp");
  background-position: center center, center center, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
}

.coquille {
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
}

/* ===== Accessibilité ===== */
.skiplink {
  position: absolute;
  left: -1000em;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skiplink:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 6px 8px;
  border-radius: 6px;
  z-index: 10000;
}
:focus-visible {
  outline: 2px dashed var(--accent-2);
  outline-offset: 2px;
}

.tete {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(13, 19, 37, 0.6);
  border-bottom: 1px solid var(--bord-faible);
}
.tete__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.marque {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.marque__logo {
  inline-size: 28px;
  block-size: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #ffb347);
  box-shadow: var(--ombre);
}
.tete__nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tete__nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
}
.tete__nav a:hover {
  color: var(--encre);
  background: var(--voile-2);
}

/* ===== Héros ===== */
.layout-noheader .heraut {
  padding-top: 18px;
}
.heraut {
  padding: 46px 0 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.heraut h1 {
  font-size: clamp(1.9rem, 2.2vw + 1rem, 2.6rem);
  margin: 0.2rem 0 0.5rem;
  letter-spacing: 0.2px;
}
.heraut__sous {
  color: var(--muted);
  max-width: 66ch;
  font-size: 1.05rem;
}
.eyebrow {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 16px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bord-faible);
  border-radius: var(--rayon);
  padding: 12px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ombre);
  border-color: var(--bord-doux);
}

/* ===== Badges & boutons ===== */
.badge {
  background: var(--accent-2);
  color: #04120f;
  border-radius: 8px;
  padding: 3px 8px;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(58, 209, 201, 0.15);
}
.badge--age {
  background: #ffd166;
  color: #351f00;
}
.badge--rank {
  background: #8ab4ff;
  color: #0a234f;
}
.badge--anj {
  background: #87f6ee;
  color: #023c39;
}
.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  text-align: center;
  background: var(--voile-2);
  border: 1px solid var(--bord-faible);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.bloc--top .carte .carte__contenu > span.micro {
  text-align: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 107, 44, 0.22),
    rgba(255, 191, 42, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffe2c9;
  font-weight: 800;
  letter-spacing: 0.1px;
  box-shadow: 0 6px 18px rgba(255, 107, 44, 0.12);
}
.bloc--top .carte .carte__contenu > span.micro::before {
  content: "🎁";
  display: inline-grid;
  place-items: center;
  inline-size: 18px;
  block-size: 18px;
}
.micro strong {
  margin-top: 10px;
  display: block;
}
.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  cursor: pointer;
}
.btn--primaire {
  text-align: center;
  width: 100%;
  background: var(--accent);
  color: #1c0f04;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(255, 107, 44, 0.25);
}
.btn--primaire:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(255, 107, 44, 0.35);
}
.btn--second {
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--bord-faible);
}
.btn--second:hover {
  background: var(--voile-2);
  border-color: var(--bord-doux);
}

.cta-row {
  display: flex;
  gap: 10px;
  margin: 14px 0 8px;
  flex-wrap: wrap;
}
.cta__legal {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

/* ===== Sections génériques ===== */
.bloc {
  padding: 36px 0;
}
.ruban {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    90deg,
    rgba(58, 209, 201, 0.28),
    rgba(255, 107, 44, 0.28)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #032b27;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 800;
  backdrop-filter: blur(4px);
}
.ruban small {
  color: #021c19;
  opacity: 0.8;
}
.bloc h2 {
  font-size: clamp(1.4rem, 1.2vw + 0.9rem, 1.8rem);
  margin: 12px 0 8px;
}
.micro {
  color: var(--muted);
  font-size: 0.95rem;
}
.notice {
  background: rgba(58, 209, 201, 0.09);
  border: 1px dashed rgba(58, 209, 201, 0.35);
  color: #a1f0ea;
  border-radius: 12px;
  padding: 10px 12px;
}

/* ===== Grilles & cartes ===== */
.grid-op {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.carte {
  background: var(--voile);
  border: 1px solid var(--bord-faible);
  border-radius: var(--rayon);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.carte:hover {
  transform: translateY(-2px);
  box-shadow: var(--ombre);
  border-color: var(--bord-doux);
}
.bloc--top .carte {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  column-gap: 16px;
  row-gap: 12px;
  align-items: center;
  padding: 14px 14px 12px;
}
.carte--first {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.carte__media {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px 8px;
  flex-wrap: wrap;
}
.carte__media img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}
.carte__titre {
  margin: 0.2rem 0;
}
.carte__contenu {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 10px;
}
.carte__puces {
  margin: 6px 0 8px;
  padding-left: 0;
  list-style: none;
  line-height: 1.35;
}
.carte__note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.carte__cta {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.note__val {
  font-weight: 800;
  color: var(--encre);
}

.pastille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 12px 0 8px;
}
.pastille li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bord-faible);
  border-radius: 10px;
  padding: 10px;
  list-style: none;
}

.etapes {
  counter-reset: et;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding-left: 0;
}
.etapes li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bord-faible);
  border-radius: 10px;
  padding: 12px 12px 12px 44px;
  position: relative;
  min-height: 44px;
}
.etapes li::before {
  counter-increment: et;
  content: counter(et);
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--accent);
  color: #1c0f04;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
}

/* ===== Avis ===== */
.avisgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.avis {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bord-faible);
  border-radius: 12px;
  padding: 12px;
}

/* ===== Moyens de paiement ===== */
.moyens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  padding-left: 0;
}
.moyens li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--encre);
}

/* ===== Vignettes ===== */
.vignettes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.vignette {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

/* ===== Arguments ===== */
.arguments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding-left: 0;
}

/* ===== Infographie barres ===== */
.infographie {
  display: grid;
  gap: 10px;
}
.barre {
  --v: 50%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--bord-faible);
}
.barre span {
  display: block;
  background: linear-gradient(90deg, var(--accent), #ffb347);
  width: var(--v);
  padding: 10px;
  border-radius: 10px;
  color: #1c0f04;
  font-weight: 800;
}

/* ===== FAQ & glossaire ===== */
.faq details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bord-faible);
  border-radius: 10px;
  padding: 10px;
  margin: 8px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.gloss dt {
  font-weight: 800;
  margin-top: 10px;
}
.gloss dd {
  margin: 0 0 8px;
  color: var(--muted);
}

/* ===== Tableaux comparatifs ===== */
.tableau {
  width: 100%;
  border: 1px solid var(--bord-faible);
  border-radius: 12px;
  overflow: hidden;
  background: var(--voile);
  box-shadow: var(--ombre);
}
.tableau table {
  width: 100%;
}
.tableau th,
.tableau td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--bord-faible);
}
.tableau th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}
.tableau tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.indic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--bord-faible);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 0.9rem;
}
.indic--ok {
  color: #0b3c24;
  background: rgba(46, 204, 113, 0.25);
  border-color: rgba(46, 204, 113, 0.35);
}
.indic--ko {
  color: #4c0b08;
  background: rgba(231, 76, 60, 0.22);
  border-color: rgba(231, 76, 60, 0.35);
}

/* ===== Pied de page ===== */
.pied {
  margin-top: 36px;
  border-top: 1px solid var(--bord-faible);
  background: rgba(255, 255, 255, 0.03);
}
.legal-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 16px 0;
}
.pied__bas {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--bord-faible);
  padding: 14px 0;
}
.reg-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  --reg-badge-h: 36px;
}
.reg-icons a,
.reg-icons > img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--reg-badge-h);
}
.reg-icons a {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bord-faible);
  border-radius: 10px;
  padding: 6px 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.reg-icons a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--bord-doux);
  transform: translateY(-1px);
}
.reg-icons img {
  filter: contrast(1.05);
  max-height: calc(var(--reg-badge-h) - 12px);
  inline-size: auto;
}
.reg-icons > img {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bord-faible);
  border-radius: 10px;
  padding: 6px 10px;
}
.pied .avert {
  max-width: 60ch;
  line-height: 1.35;
}
.pied small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

/* ===== Étoiles note (CSS-only) ===== */
.etoiles {
  --s: 0;
  inline-size: 110px;
  block-size: 20px;
  position: relative;
  display: inline-block;
}
/* gris */
.etoiles {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='20' viewBox='0 0 110 20'%3E%3Cdefs%3E%3Cpath id='g' d='M10 1.6l2.7 5.5 6.1.9-4.4 4.3 1 6-5.4-2.8-5.4 2.8 1-6L1.2 8l6.1-.9L10 1.6z'/%3E%3C/defs%3E%3Cg fill='%239aa3bd'%3E%3Cuse href='%23g' x='0'/%3E%3Cuse href='%23g' x='22'/%3E%3Cuse href='%23g' x='44'/%3E%3Cuse href='%23g' x='66'/%3E%3Cuse href='%23g' x='88'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 110px 20px;
}
/* jaune */
.etoiles::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(var(--s) / 5 * 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='20' viewBox='0 0 110 20'%3E%3Cdefs%3E%3Cpath id='y' d='M10 1.6l2.7 5.5 6.1.9-4.4 4.3 1 6-5.4-2.8-5.4 2.8 1-6L1.2 8l6.1-.9L10 1.6z'/%3E%3C/defs%3E%3Cg fill='%23ffbf2a'%3E%3Cuse href='%23y' x='0'/%3E%3Cuse href='%23y' x='22'/%3E%3Cuse href='%23y' x='44'/%3E%3Cuse href='%23y' x='66'/%3E%3Cuse href='%23y' x='88'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 110px 20px;
  overflow: hidden;
}

/* ===== Utilitaires ===== */
.hr {
  height: 1px;
  background: var(--bord-faible);
  border: 0;
  margin: 18px 0;
}
.center {
  text-align: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.maxch {
  max-width: 72ch;
}
.sp-top {
  margin-top: 16px;
}
.sp-bot {
  margin-bottom: 16px;
}

/* ===== Légal: lisibilité ===== */
.legal main.coquille {
  padding-top: 24px;
  padding-bottom: 28px;
}
.legal h1 {
  font-size: clamp(1.6rem, 1.4vw + 1rem, 2rem);
  margin-bottom: 8px;
}
.legal h2 {
  margin-top: 16px;
  margin-bottom: 8px;
}
.legal p,
.legal li {
  color: #d9deee;
}
.legal .home {
  color: #9ddaf2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Bouton remonter ===== */
.to-top {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid var(--bord-faible);
  color: var(--encre);
  padding: 10px 12px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.to-top.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pied h3 {
  margin-bottom: 10px;
}
p.micro {
  margin-top: 10px;
}
@media (max-width: 1023px) {
  .bloc--top .carte {
    grid-template-columns: 1fr;
  }
  .bloc--top .chip {
    font-size: 0.8rem;
    padding: 6px;
    border-radius: 10px;
  }
  .bloc--top .carte .carte__contenu > span.micro {
    padding: 6px;
  }
}

@media (max-width: 760px) {
  .tete__nav {
    gap: 8px;
  }
  .hero-grid {
    display: none;
  }
  #top-licence h2 {
    display: none;
  }
  .bloc {
    padding: 24px 0;
  }
  .trust {
    margin: 6px 0 0 0;
    gap: 6px;
  }
  .heraut h1 {
    font-size: 24px;
  }
}
