@font-face {
  font-family: "DRAguSans";
  src: url("assets/fonts/DRAguSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DRAguSans";
  src: url("assets/fonts/DRAguSans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #02010c;
  --bg-2: #0a081a;
  --surface: #0f0e22;
  --surface-2: #16142a;
  --surface-3: #1d1b35;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f3f0fa;
  --text-muted: #e5e2ee;
  --text-dim: #9d9da8;

  --orange: #ed6e14;
  --orange-deep: #c54600;
  --orange-glow: rgba(237, 110, 20, 0.45);
  --gold: #d8a967;
  --gold-soft: #f4d29c;
  --wine: #7d1f3a;
  --wine-deep: #4c000e;

  --grad-cta: linear-gradient(180deg, #ed6e14 0%, #c54600 100%);
  --grad-cta-hover: linear-gradient(180deg, #f78a3a 0%, #d75a16 100%);
  --grad-logo: linear-gradient(180deg, #c54700 0%, #4c000e 100%);

  --max-width: 1280px;
  --content-pad: 24px;
  --header-h: 80px;
  --radius: 12px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition: 0.2s ease;
}

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

body {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(125, 31, 58, 0.12), transparent 60%),
    radial-gradient(60% 40% at 90% 30%, rgba(237, 110, 20, 0.06), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: "Commissioner", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 1, 12, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 30px;
  width: auto;
  max-width: 200px;
  display: block;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-burger:hover {
  background: var(--surface-2);
}
.nav-burger img,
.nav-burger svg {
  width: 24px;
  height: 24px;
  color: var(--text);
  /* SVG is rendered via mask so we can color it with brand */
}
.nav-burger img, .nav-burger svg {
  /* normalize the mono-color SVG to a clean white tint */
  filter: brightness(0) invert(1) opacity(0.85);
}
.nav-burger:hover img, .nav-burger:hover svg {
  filter: brightness(0) invert(1) opacity(1);
}
.nav-burger .burger-close {
  color: var(--text);
}
.nav-burger .burger-close { display: none; }
.nav-toggle:checked ~ .nav-burger .burger-open { display: none; }
.nav-toggle:checked ~ .nav-burger .burger-close { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-list a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}
.nav-list a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================
   BUTTONS — uppercase, weight 900, rounded
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 38px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease,
    background var(--transition), border-color var(--transition);
  user-select: none;
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 2px 20px 0 var(--orange-glow);
}
.btn-primary:hover {
  background: var(--grad-cta-hover);
  box-shadow: 0 4px 26px 0 rgba(237, 110, 20, 0.55);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 10px 0 rgba(237, 110, 20, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(237, 110, 20, 0.5);
  color: #fff;
}

.btn-lg {
  height: 48px;
  padding: 0 30px;
  font-size: 14px;
  border-radius: var(--radius-lg);
}

/* ============================================
   PAGE TITLE / INTRO
   ============================================ */
.page-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 56px auto 24px;
  max-width: 940px;
}
.brand-name {
  /* No special color/texture by default — keep H1 clean across brands */
  font-weight: inherit;
  color: inherit;
}

.fact-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 920px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ============================================
   HERO BANNER — composite (bg + character + 700)
   ============================================ */
.banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1280 / 460;
  margin-bottom: 28px;
  background:
    radial-gradient(60% 80% at 30% 50%, rgba(216, 169, 103, 0.12), transparent 70%),
    linear-gradient(135deg, #0d0a1a 0%, #1a0d18 50%, #2a1418 100%);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  z-index: 0;
}
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  max-width: 56%;
}
.banner-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.banner-700 {
  width: clamp(220px, 32%, 380px);
  height: auto;
  margin: 0 0 6px -6px;
  filter: drop-shadow(0 10px 20px rgba(237, 110, 20, 0.4));
}
.banner-amount {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.banner-amount .accent { color: var(--gold); }
.banner-content .btn-lg { align-self: flex-start; }
.banner-character {
  position: absolute;
  right: 4%;
  bottom: 0;
  height: 96%;
  width: auto;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(216, 169, 103, 0.35));
  pointer-events: none;
}

@media (max-width: 768px) {
  .banner {
    aspect-ratio: auto;
    min-height: 380px;
  }
  .banner-content {
    max-width: 100%;
    padding: 24px;
    text-align: center;
    align-items: center;
  }
  .banner-content .btn-lg { align-self: center; }
  .banner-700 { margin: 0 auto 6px; }
  .banner-character {
    height: 60%;
    right: -4%;
    bottom: -10px;
    opacity: 0.5;
  }
}

/* ============================================
   HIGHLIGHTS row (3 cards under hero)
   ============================================ */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(120% 200% at 100% 50%, rgba(216, 169, 103, 0.08), transparent 70%),
    linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.highlight-card:hover {
  border-color: rgba(216, 169, 103, 0.35);
  transform: translateY(-2px);
}
.highlight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon img { max-width: 100%; height: auto; }
.highlight-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .highlights { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================
   POPULAR SLOTS / CAROUSEL
   ============================================ */
.slots {
  margin-bottom: 56px;
}
.slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.slots-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1;
}
.slots-title img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
}
.slots-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.slots-arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.slots-arrow:hover {
  background: var(--surface-2);
  color: #fff;
  border-color: rgba(237, 110, 20, 0.5);
}
.slots-arrow svg { width: 16px; height: 16px; }
.slots-voir {
  font-size: 11px;
  height: 32px;
  padding: 0 14px;
}

.slots-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* hide native scrollbar — navigation through arrow buttons only */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slots-grid::-webkit-scrollbar { display: none; }

.slot-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 6); /* 6 cards visible at desktop, 7th scrollable */
  scroll-snap-align: start;
}
@media (max-width: 1100px) {
  .slot-card { flex-basis: calc((100% - 36px) / 4); }
}
@media (max-width: 720px) {
  .slot-card { flex-basis: calc((100% - 24px) / 3); }
}
@media (max-width: 460px) {
  .slot-card { flex-basis: calc((100% - 12px) / 2.2); }
}
.slot-link {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.slot-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(55% 70% at 50% 42%, rgba(237, 110, 20, 0.4), transparent 72%),
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.55) 62%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slot-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(237, 110, 20, 0.5);
}
.slot-play svg { width: 22px; height: 22px; margin-left: 3px; }
.slot-name {
  position: absolute;
  inset: auto 0 12px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(0, 0, 0, 0.7);
  padding: 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.slot-link:hover,
.slot-link:focus-visible {
  border-color: rgba(237, 110, 20, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
}
.slot-link:hover .slot-overlay,
.slot-link:focus-visible .slot-overlay { opacity: 1; }
.slot-link:hover img,
.slot-link:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

/* ============================================
   TOC (Sommaire)
   ============================================ */
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 12px 0 48px;
  overflow: hidden;
}
.toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.toc summary::-webkit-details-marker,
.toc summary::marker { display: none; content: ""; }
.toc summary .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}
.toc[open] summary .chevron { transform: rotate(180deg); }
.toc-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding: 12px 22px 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
@media (max-width: 720px) {
  .toc-list { grid-template-columns: 1fr; }
}
.toc-list a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  display: inline-block;
  transition: color var(--transition);
}
.toc-list a:hover { color: var(--orange); }

/* ============================================
   CONTENT
   ============================================ */
.content section { margin-bottom: 40px; }
.content h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.content h3 { font-size: 18px; font-weight: 700; margin: 18px 0 8px; }
.content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.content ul, .content ol { margin: 6px 0 14px 24px; }
.content li { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 6px; }
.content strong { color: var(--text); font-weight: 700; }
.content a:not(.btn) {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.content a:not(.btn):hover { color: var(--gold-soft); }
.content img {
  border-radius: var(--radius-md);
  margin: 18px 0;
  border: 1px solid var(--border);
}

.table-wrap {
  overflow-x: auto;
  margin: 14px 0 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.data-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.data-table thead { background: var(--surface-2); }
.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(255, 255, 255, 0.025); }

/* ============================================
   CTA banner (mid-page)
   ============================================ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px 40px;
  margin: 36px 0;
  background:
    linear-gradient(110deg, rgba(76, 0, 14, 0.6) 0%, rgba(125, 31, 58, 0.45) 60%, transparent 100%),
    linear-gradient(135deg, #0d0a1a 0%, #2a1418 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.005em;
  max-width: 60%;
}
@media (max-width: 720px) {
  .cta-banner { padding: 24px; text-align: center; }
  .cta-banner-title { max-width: 100%; }
}

/* ============================================
   PROS / CONS
   ============================================ */
.proscons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.proscons-col {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
.proscons-col h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.proscons-pros h3 { color: #7ed09e; }
.proscons-cons h3 { color: #f0a4b8; }
.proscons-col ul { list-style: none; margin: 0; }
.proscons-col li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  margin: 0;
}
.proscons-col li:last-child { border-bottom: none; }
.proscons-pros li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: #7ed09e; font-weight: 800; }
.proscons-cons li::before { content: "−"; position: absolute; left: 4px; top: 8px; color: #f0a4b8; font-weight: 800; }
@media (max-width: 720px) {
  .proscons-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { margin: 56px 0; }
.reviews-heading {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin-bottom: 22px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.reviews-summary-info { display: flex; flex-direction: column; gap: 8px; }
.reviews-summary-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}
.reviews-summary-rating { display: inline-flex; align-items: center; gap: 12px; }
.rating-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-soft);
  letter-spacing: -0.015em;
}
.stars { display: inline-flex; gap: 2px; }
.stars svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.18);
  fill: currentColor;
}
.stars svg.is-on { color: var(--gold); }
.rating-count { font-size: 14px; color: var(--text-dim); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.review-author-info { display: flex; flex-direction: column; }
.review-name { font-size: 15px; font-weight: 700; }
.review-date { font-size: 12px; color: var(--text-dim); }
.review-card .stars { margin-bottom: 8px; }
.review-card .stars svg { width: 14px; height: 14px; }
.review-text { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.reviews-footer { text-align: center; margin-top: 18px; }

/* ============================================
   FAQ
   ============================================ */
.faq { margin: 56px 0; }
.faq-heading {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin-bottom: 8px;
}
.faq-sub { color: var(--text-muted); margin-bottom: 22px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 18px; color: var(--text-muted); }
.faq-answer p { font-size: 15px; line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 40px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-logo { height: 28px; width: auto; }
.trust-badges { display: flex; align-items: center; gap: 12px; }
.trust-icon { height: 30px; width: auto; opacity: 0.8; }
.footer-rights-text {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.lang-switch { position: relative; display: inline-block; margin-top: 4px; }
.lang-switch summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  user-select: none;
}
.lang-switch summary::-webkit-details-marker,
.lang-switch summary::marker { display: none; content: ""; }
.lang-switch summary:hover { border-color: var(--border-strong); }
.lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lang-label { font-weight: 600; white-space: nowrap; }
.lang-caret { width: 14px; height: 14px; color: var(--text-muted); transition: transform 0.2s ease; flex-shrink: 0; }
.lang-switch[open] .lang-caret { transform: rotate(180deg); }
.lang-switch ul {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.55);
  z-index: 200;
}
.lang-switch a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.lang-switch a:hover { background: var(--surface-2); color: var(--text); }
.lang-switch a[aria-current="true"] { background: var(--surface-3); color: var(--text); }

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--orange); }

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 90;
  box-shadow: 0 6px 24px var(--orange-glow);
  transition: transform 0.15s ease;
}
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top:active { transform: translateY(1px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ============================================
   MOBILE HEADER (≤860): 2 rows centered
   ============================================ */
@media (max-width: 860px) {
  .site-header { height: auto; }
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "spacer logo burger"
      "cta cta cta";
    height: auto;
    padding-block: 12px;
    gap: 8px 12px;
  }
  .logo { grid-area: logo; justify-self: center; }
  .logo img { height: 32px; max-width: 220px; }
  .nav-burger { grid-area: burger; justify-self: end; display: inline-flex; }
  .nav-menu { display: none; grid-area: menu; }
  .nav-cta {
    grid-area: cta;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding-top: 4px;
  }
  .nav-cta .btn { flex: 0 1 180px; }
  .nav-toggle:checked ~ .nav-menu {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 16px 0 8px;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list a { padding: 10px 4px; }
}

/* ============================================
   DRAguSans on display elements (post-overrides)
   ============================================ */
.page-title,
.banner-amount,
.banner-eyebrow,
.slots-title,
.slot-name,
.faq-heading,
.reviews-heading,
.cta-banner-title,
.cta-laurel-text,
.toc summary,
.content h2,
.content h3,
.proscons-col h3,
.btn,
.nav-list a,
.data-table th {
  font-family: "DRAguSans", "Commissioner", -apple-system, sans-serif;
  font-weight: 900;
}

/* ============================================
   Arrows / scroll-top → btn--swiper style
   (dark gradient, inset top highlight)
   ============================================ */
.slots-arrow {
  background: linear-gradient(180deg, #1b1828 0%, #110e1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}
.slots-arrow:hover {
  background: linear-gradient(180deg, #25223a 0%, #18152a 100%);
  border-color: rgba(255, 255, 255, 0.10);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 4px 14px rgba(0,0,0,0.4);
}
.slots-arrow:active {
  transform: translateY(1px);
}

.scroll-top {
  background: linear-gradient(180deg, #1b1828 0%, #110e1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 18px rgba(0, 0, 0, 0.5);
}
.scroll-top:hover {
  background: linear-gradient(180deg, #25223a 0%, #18152a 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   H2 with leading icon
   ============================================ */
.h2-with-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.h2-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.h2-icon img, .h2-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
@media (max-width: 560px) {
  .h2-icon { width: 32px; height: 32px; }
  .h2-icon img, .h2-icon svg { width: 32px; height: 32px; }
  .h2-with-icon { gap: 10px; }
}

/* ============================================
   Laurel CTA (uses cta-button.png as background)
   ============================================ */
.cta-laurel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 56px auto 32px;
  text-align: center;
}
.cta-laurel-title {
  font-size: clamp(20px, 2.4vw, 26px);
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.cta-laurel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  height: 84px;
  position: relative;
  background: url("assets/banner/cta-button.webp") center / 100% 100% no-repeat;
  filter: drop-shadow(0 6px 24px rgba(216, 169, 103, 0.3));
  transition: transform 0.18s ease, filter 0.18s ease;
}
.cta-laurel-link span {
  position: relative;
  z-index: 2;
  font-family: "DRAguSans", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding-inline: 60px;
}
.cta-laurel-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 32px rgba(216, 169, 103, 0.45));
}
.cta-laurel-link:active {
  transform: translateY(1px);
}
@media (max-width: 560px) {
  .cta-laurel-link {
    height: 64px;
    max-width: 320px;
  }
  .cta-laurel-link span {
    font-size: 14px;
    padding-inline: 44px;
  }
}

/* ============================================
   Slot card provider label
   ============================================ */
.slot-provider {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: var(--text-dim);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Commissioner", sans-serif;
}

/* ============================================
   Banner mobile: auto height (driven by content + padding)
   content centered both axes, larger text with shadow
   ============================================ */
@media (max-width: 768px) {
  .banner {
    aspect-ratio: auto;          /* let content drive height */
    min-height: 0;
    padding: 0;
  }
  .banner-bg {
    opacity: 0.55;               /* soften scenery so text reads */
  }
  .banner-content {
    position: relative;
    padding: 44px 24px;
    gap: 10px;
    justify-content: center;     /* vertical center */
    align-items: center;         /* horizontal center */
    text-align: center;
    max-width: 100%;
  }
  .banner-eyebrow {
    font-size: 15px;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85), 0 0 14px rgba(0, 0, 0, 0.5);
  }
  .banner-700 {
    width: 68%;
    max-width: 320px;
    margin: 0 auto 4px;
  }
  .banner-amount {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 22px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 18px rgba(0, 0, 0, 0.55);
  }
  .banner-content .btn-lg {
    align-self: center;
  }
  .banner-character {
    display: none;               /* keep auto-height clean on mobile */
  }
}
@media (max-width: 480px) {
  .banner-content { padding: 36px 20px; }
  .banner-eyebrow { font-size: 13px; letter-spacing: 0.18em; }
  .banner-amount { font-size: 24px; }
  .banner-700 { width: 64%; max-width: 270px; }
}

/* H1 mobile compact margin */
@media (max-width: 768px) {
  .page-title {
    margin: 28px auto 20px;
  }
  .fact-intro {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.65;
  }
}

/* ============================================
   Section screenshots — capped width, centered
   ============================================ */
.content figure.section-screenshot {
  margin: 22px auto 24px;
  max-width: 720px;
}
.content figure.section-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 0;
}
.content figure.section-screenshot figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: center;
}
/* Portrait screenshot (mobile capture): smaller width, centered */
.content figure.section-screenshot--portrait {
  max-width: 300px;
}
@media (max-width: 600px) {
  .content figure.section-screenshot--portrait {
    max-width: 240px;
  }
}

/* ============================================
   .h2-icon — no border/margin (override .content img)
   ============================================ */
.content .h2-with-icon img, .content .h2-with-icon svg,
.content .h2-icon img, .content .h2-icon svg {
  border: 0;
  margin: 0;
  border-radius: 0;
}

/* Laurel CTA inside content — disable underline */
.content a.cta-laurel-link {
  text-decoration: none;
}
.content a.cta-laurel-link:hover {
  text-decoration: none;
}

/* Make laurel CTA more compact */
.cta-laurel {
  margin: -12px auto 36px;
}
.cta-laurel-link {
  max-width: 340px;
  height: 64px;
}
.cta-laurel-link span {
  font-size: 15px;
  padding-inline: 44px;
}
@media (max-width: 560px) {
  .cta-laurel-link {
    height: 54px;
    max-width: 280px;
  }
  .cta-laurel-link span {
    font-size: 13px;
    padding-inline: 36px;
  }
}

/* ============================================
   Footer compliance icons row
   ============================================ */
.footer-compliance {
  margin-top: 18px;
}
.compliance-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.compliance-logos img, .compliance-logos svg {
  height: 32px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1) brightness(1.4);
  transition: opacity var(--transition), filter var(--transition);
}
.compliance-logos img:hover, .compliance-logos svg:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
@media (max-width: 480px) {
  .compliance-logos img, .compliance-logos svg { height: 26px; }
  .compliance-logos { gap: 16px; }
}

/* ============================================
   Language switch (footer dropdown)
   ============================================ */
.lang-switch {
  position: relative;
  display: inline-block;
  margin-top: 14px;
}
.lang-switch summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  user-select: none;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::marker { content: ""; }
.lang-switch summary:hover {
  border-color: rgba(237, 110, 20, 0.45);
  color: var(--text);
  background: var(--surface-2);
}
.lang-switch .lang-flag {
  display: block;
  flex: none;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  object-fit: cover;
}
.lang-switch .lang-label {
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.lang-switch .lang-caret {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  color: var(--gold);
  transition: transform var(--transition);
}
.lang-switch[open] summary {
  border-color: rgba(237, 110, 20, 0.55);
  color: var(--text);
  background: var(--surface-2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.lang-switch[open] .lang-caret { transform: rotate(180deg); }
.lang-switch ul {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin: 0 0 -1px;
  padding: 6px;
  list-style: none;
  background: var(--surface-2);
  border: 1px solid rgba(237, 110, 20, 0.55);
  border-radius: 12px 12px 0 0;
  min-width: 100%;
  white-space: nowrap;
  z-index: 12;
  box-shadow: 0 -10px 28px -12px rgba(0, 0, 0, 0.55);
}
.lang-switch ul li { margin: 0; }
.lang-switch ul li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.lang-switch ul li a:hover {
  background: rgba(237, 110, 20, 0.10);
  color: var(--text);
}
.lang-switch ul li a[aria-current="true"] {
  color: var(--gold);
  background: rgba(216, 169, 103, 0.10);
}
.lang-switch-footer { margin-top: 16px; }
@media (max-width: 600px) {
  .lang-switch summary { font-size: 12.5px; padding: 7px 12px; }
  .lang-switch ul li a { font-size: 12.5px; }
}


/* email spam-protection: chars composed via attr() so raw HTML has no email pattern */
.eml::after { content: attr(data-u) "\0040" attr(data-d) "\002E" attr(data-t); }
/* tight mobile pad: shrink content padding on smallest viewports
   so more fits in the first screen */
@media (max-width: 480px) {
  :root { --content-pad: 12px; }
}
