/* Betwinner Moçambique — styles.css
   Brand chrome: emerald + gold with Mozambican flag echo (green/gold/red)
   and a CSS capulana motif on hero/footer. */

:root {
  --ink:        #0A1410;
  --ink-2:      #102019;
  --ink-3:      #173026;
  --line:       rgba(240,192,0,.16);
  --line-strong:rgba(240,192,0,.32);
  --green:      #007A52;
  --green-bright:#00B377;
  --gold:       #F0C000;
  --gold-soft:  #FFD24A;
  --red:        #C53030;
  --paper:      #FFFFFF;
  --mist:       #B8C7C0;
  --paper-dim:  #E4ECE8;

  /* rhythm scale (px) */
  --r-8: 8px; --r-12:12px; --r-16:16px; --r-24:24px;
  --r-32:32px; --r-48:48px; --r-64:64px; --r-96:96px;

  /* type scale (modular 1.25) */
  --t-14:14px; --t-16:16px; --t-18:18px; --t-22:22px; --t-28:28px;
  --t-36:36px; --t-48:48px; --t-60:60px;

  --section-pad: clamp(48px, 8vw, 96px);
  --container-wide: 1240px;

  --shadow-card: 0 2px 10px rgba(0,0,0,.32);
  --shadow-hover: 0 6px 24px rgba(0,0,0,.48);
}

/* ---- Reset-ish ---- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper-dim);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--t-16);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,.brand,.btn,.carousel__title,.strip__title,.trust-chip {
  font-family: "Poppins", system-ui, sans-serif;
}
h1,h2,h3,h4 { color: var(--paper); letter-spacing: -0.01em; line-height: 1.18; margin: 0 0 var(--r-16); }
h1 { font-size: clamp(var(--t-36), 6vw, var(--t-60)); font-weight: 700; }
h2 { font-size: clamp(var(--t-28), 4vw, var(--t-36)); font-weight: 600; }
h3 { font-size: var(--t-22); font-weight: 600; }
h4 { font-size: var(--t-18); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold); }
p  { margin: 0 0 var(--r-16); }
a  { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); text-decoration: underline; }
strong { color: var(--paper); font-weight: 600; }
em { font-style: italic; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(240,192,0,.08); color: var(--gold-soft);
  padding: 1px 6px; border-radius: 4px; font-size: .92em;
}
ul,ol { margin: 0 0 var(--r-16); padding-left: 1.4em; }
li { margin-bottom: 6px; }
img { max-width: 100%; height: auto; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--r-32) 0; }

.container { max-width: var(--container-wide); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); width: 100%; }
section { padding-block: var(--section-pad); }
section > .container { width: 100%; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Capulana motif (signature, used in hero + footer only) ----
   Removed from .trust-band to guarantee WCAG AA text contrast there. */
.capulana, .hero::before, .site-footer::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-color: transparent;
  background-image:
    linear-gradient(135deg, rgba(240,192,0,.06) 25%, transparent 25%, transparent 75%, rgba(240,192,0,.06) 75%),
    linear-gradient(45deg,  rgba(240,192,0,.06) 25%, transparent 25%, transparent 75%, rgba(240,192,0,.06) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px;
  mix-blend-mode: screen;
  opacity: .65;
  z-index: 0;
}
body.lite .hero::before,
body.lite .site-footer::before { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero::before, .site-footer::before { opacity: .35; }
}

/* ---- Header ---- */
.top-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--red) 100%);
  z-index: 102;
}
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16,32,25,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; gap: 12px; min-height: 64px;
  position: relative;
}
.brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--paper); text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; color: var(--paper); }
.brand img { display: block; height: 34px; width: auto; }
.brand-cc { color: var(--gold); font-size: .85rem; font-weight: 700; }

.main-nav { margin-left: 4px; min-width: 0; }
.main-nav ul {
  list-style: none; display: flex; flex-wrap: nowrap; align-items: center;
  gap: 2px; margin: 0; padding: 0;
}
.main-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 10px; color: var(--paper-dim); text-decoration: none;
  font-size: .88rem; line-height: 1; white-space: nowrap;
  border-bottom: 2px solid transparent; border-radius: 4px;
  min-height: 40px;
}
.main-nav a.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.main-nav a:hover { color: var(--gold); }

.header-cta {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; height: 40px;
}
.header-cta > * { flex-shrink: 0; }

/* Unify all header control heights to 40px (border-box) */
.header-cta .lang-toggle,
.header-cta .lite-toggle,
.header-cta .btn--sm,
.header-cta .nav-toggle {
  height: 40px; min-height: 40px; box-sizing: border-box;
}
.header-cta .btn--sm {
  padding: 0 16px; border-width: 1.5px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}

.lang-toggle {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  height: 40px;
}
.lang-toggle button {
  background: transparent; color: var(--paper-dim); border: 0; padding: 0 12px;
  font-family: "Poppins", system-ui, sans-serif; font-size: .8rem; font-weight: 600;
  cursor: pointer; height: 100%; letter-spacing: .03em;
  display: inline-flex; align-items: center; justify-content: center;
}
.lang-toggle button[aria-pressed="true"] { background: var(--gold); color: var(--ink); }
.lang-toggle button:hover:not([aria-pressed="true"]) { color: var(--gold); }

.lite-toggle {
  background: transparent; color: var(--paper-dim); border: 1px solid var(--line);
  border-radius: 50%; width: 40px; height: 40px; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lite-toggle svg { width: 18px; height: 18px; }
.lite-toggle[aria-pressed="true"] { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.nav-toggle {
  display: none; background: transparent; color: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; width: 40px; height: 40px; padding: 0; cursor: pointer;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-offset, 64px); left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--ink-2); border-bottom: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: var(--shadow-hover);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.mobile-nav ul {
  list-style: none; margin: 0 0 12px; padding: 0;
  display: grid; gap: 2px;
}
.mobile-nav li a {
  display: flex; align-items: center;
  padding: 8px 12px; min-height: 40px;
  color: var(--paper-dim); border-radius: 6px; font-size: .92rem;
}
@media (max-height: 740px) {
  .mobile-nav { padding-block: 8px; }
  .mobile-nav li a { padding-block: 7px; min-height: 36px; font-size: .9rem; }
  .mobile-nav ul { margin-bottom: 8px; gap: 1px; }
}
.mobile-nav li a:hover, .mobile-nav li a.is-active { background: var(--ink-3); color: var(--gold); }
.mobile-nav .btn { margin-top: 4px; flex-shrink: 0; }
.mobile-nav:not([hidden]) { display: flex; flex-direction: column; }
body.nav-open {
  position: fixed;
  left: 0; right: 0; width: 100%;
  overflow: hidden;
  touch-action: none;
}
body.nav-open .site-header {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; padding: 12px 22px; border-radius: 8px; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; font-family: "Poppins", system-ui, sans-serif;
  font-size: .95rem; letter-spacing: .02em; min-height: 44px; line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-soft); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 16px 28px; font-size: 1rem; min-height: 52px; }
.btn--sm {
  padding: 0 16px; min-height: 40px; height: 40px; font-size: .85rem;
}
.header-cta .btn--sm {
  height: 40px; min-height: 40px; padding: 0 16px;
  display: inline-flex; align-items: center;
}
.btn--block { width: 100%; }

/* ---- Skip link ---- */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
  font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(ellipse at top right, rgba(0,179,119,.12), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px); align-items: center;
  justify-items: stretch;
}
.hero__grid:not(:has(.hero__img)) { grid-template-columns: minmax(0, 720px); justify-content: center; }
.hero__text { max-width: 640px; width: 100%; }
.hero h1 { color: var(--paper); margin-bottom: var(--r-16); }
.hero h1 strong, .hero h1 em { color: var(--gold); font-style: normal; }
.hero__subhead { font-size: var(--t-18); color: var(--mist); margin-bottom: var(--r-24); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--r-24); }
.hero__chips {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__chips li {
  background: rgba(240,192,0,.08); color: var(--paper-dim);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 6px 12px; font-size: .82rem; font-weight: 500; margin: 0;
}
.hero__img {
  margin: 0; position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  background: var(--ink-3);
  width: 100%;
}
.hero__img img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.hero__img--wide img { aspect-ratio: 21 / 9; }

/* ---- Trust band ---- */
.trust-band {
  padding-block: 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.trust-band .container { position: relative; z-index: 1; }
.trust-band__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  padding-block: 14px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--paper); font-size: .82rem; font-weight: 500;
  padding: 6px 10px; border-radius: 6px;
}
.trust-chip svg { width: 16px; height: 16px; color: var(--gold-soft); flex-shrink: 0; }
.trust-chip--igj {
  background: var(--green); color: var(--paper);
  border: 1px solid rgba(0,179,119,.6);
}
.trust-chip--igj svg { color: var(--gold-soft); }
.trust-chip--link {
  color: var(--gold); text-decoration: none;
  background: rgba(240,192,0,.08); border: 1px solid var(--line-strong);
}
.trust-chip--link:hover { color: var(--ink); background: var(--gold); text-decoration: none; }

/* ---- Long-form prose sections ---- */
.seo-text { padding-block: var(--section-pad); }
.seo-text .container {
  display: grid; gap: var(--r-48);
  max-width: 820px; margin-inline: auto;
}
.prose-block {
  max-width: 100%;
  margin-inline: auto;
  width: 100%;
}
.prose-block h2 { color: var(--paper); }
.prose-block h2::before {
  content: ""; display: block; width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
  margin-bottom: 14px; border-radius: 2px;
}
.prose-block p, .prose-block li { color: var(--paper-dim); }
.prose-block p { max-width: 70ch; }
.prose-block ul, .prose-block ol { max-width: 70ch; }
.prose-block a { color: var(--gold); }
.prose-block table { background: var(--ink-2); }

/* ---- Tables (mobile-safe: card-stack under 640px) ---- */
.table-block { max-width: 100%; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--ink-2); }
table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
  min-width: 380px;
}
thead th {
  background: var(--ink-3); color: var(--paper);
  text-align: left; padding: 12px 14px;
  font-family: "Poppins", system-ui, sans-serif; font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .03em;
  border-bottom: 1px solid var(--line-strong);
}
tbody td {
  padding: 12px 14px; border-bottom: 1px solid var(--line); color: var(--paper-dim);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(240,192,0,.04); }

@media (max-width: 640px) {
  .table-wrap { background: transparent; border: 0; overflow: visible; padding: 0; }
  .table-wrap table, .table-wrap tbody, .table-wrap tr, .table-wrap td { display: block; }
  .table-wrap thead { display: none; }
  .table-wrap tr {
    background: var(--ink-2); border: 1px solid var(--line);
    border-radius: 10px; margin-bottom: 12px; padding: 6px 0; min-width: 0;
  }
  .table-wrap td {
    padding: 8px 14px; border: 0; min-width: 0 !important;
  }
  .table-wrap td::before {
    content: attr(data-label);
    display: block; color: var(--gold);
    font-family: "Poppins", system-ui, sans-serif; font-weight: 600;
    font-size: .72rem; text-transform: uppercase; letter-spacing: .03em;
    margin-bottom: 4px;
  }
  .table-wrap td:not(:last-child) { border-bottom: 1px solid var(--line); }
  table { min-width: 0; }
}

/* ---- FAQ ---- */
.faq { background: var(--ink-2); }
.faq .container { max-width: 820px; }
.faq h2 { text-align: left; }
.faq-item {
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 18px; font-weight: 600; color: var(--paper);
  list-style: none; position: relative; padding-right: 44px;
  font-family: "Poppins", system-ui, sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.4rem; font-weight: 700; line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--gold); }
.faq-a { padding: 0 18px 16px; color: var(--paper-dim); }

/* ---- Carousels ---- */
.carousel { padding-block: var(--section-pad); }
.carousel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: var(--r-24);
}
.carousel__title { margin: 0; }
.carousel__controls { display: inline-flex; gap: 6px; }
.car-prev, .car-next {
  background: var(--ink-3); color: var(--paper); border: 1px solid var(--line);
  border-radius: 50%; width: 40px; height: 40px; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.car-prev:hover, .car-next:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.car-prev svg, .car-next svg { width: 18px; height: 18px; }

.carousel__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(160px, 60vw, 220px);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.carousel__track::-webkit-scrollbar { height: 8px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.carousel__track::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.carousel__track:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }

.carousel__track { align-items: stretch; }
.game-card {
  scroll-snap-align: start;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
  min-width: 0; height: 100%;
}
.game-cover { aspect-ratio: 16 / 9; background: var(--ink-3); overflow: hidden; flex-shrink: 0; }
.game-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .3s ease; }
.game-card:hover .game-cover img { transform: scale(1.04); }
.gc-body {
  padding: 12px; display: flex; flex-direction: column; gap: 4px;
  position: relative; flex: 1; min-height: 112px;
}
.gc-title {
  font-family: "Poppins", system-ui, sans-serif; font-weight: 600; color: var(--paper); font-size: .95rem;
  line-height: 1.25; min-height: calc(1.25em * 2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gc-prov {
  color: var(--mist); font-size: .78rem; min-height: 1.2em; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gc-toggle {
  align-self: flex-start; background: transparent; color: var(--gold);
  border: 1px solid var(--line-strong); border-radius: 6px;
  padding: 4px 12px; cursor: pointer; font-size: .82rem; font-weight: 600;
  margin-top: auto; min-height: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
.gc-toggle:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.gc-toggle[aria-expanded="true"] { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.gc-desc {
  max-height: 0; overflow: hidden; transition: max-height .25s ease, margin .25s ease;
  margin-top: 0; order: 5;
}
.gc-desc p { margin-bottom: 8px; font-size: .88rem; color: var(--paper-dim); }
.game-card.is-open .gc-desc { max-height: 200px; margin-top: 8px; }

/* ---- Strips (providers / payments) ---- */
.strip { padding-block: clamp(36px, 6vw, 64px); }
.strip__title {
  font-size: var(--t-22); margin-bottom: var(--r-16); text-align: center;
  color: var(--mist); text-transform: uppercase; letter-spacing: .04em;
}
.strip__row {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px;
}
.provider-item {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 14px; min-width: 120px;
  display: flex; align-items: center; justify-content: center;
}
.provider-item img { max-height: 36px; width: auto; display: block; }
.pay-item {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px; min-width: 88px;
}
.pay-item img { max-height: 32px; width: auto; display: block; }
.pay-item span { font-size: .72rem; color: var(--mist); }
.strip__note { text-align: center; color: var(--mist); font-size: .9rem; max-width: 720px; margin: var(--r-16) auto 0; }

/* ---- Banners strip ---- */
.banner-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; list-style: none; padding: 0; margin: 0;
}
.banner-item a {
  display: block; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; transition: border-color .15s ease, transform .15s ease;
}
.banner-item a:hover { border-color: var(--gold); text-decoration: none; transform: translateY(-2px); }
.banner-item img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 1; object-fit: cover; object-position: center; }

/* ---- App block ---- */
.app-block { padding-block: var(--section-pad); background: var(--ink-2); }
.app-block__row {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 4vw, 48px); align-items: center;
}
.app-block__text h2 { color: var(--paper); }
.app-block__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--r-16); }
.app-block__img img {
  display: block; width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--line);
}

/* ---- Reviews block ---- */
.reviews { padding-block: var(--section-pad); background: var(--ink-2); }
.reviews h2 { text-align: center; }
.reviews__note { text-align: center; color: var(--mist); max-width: 720px; margin: 0 auto var(--r-32); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.review-card {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px; padding: 18px;
}
.review-card__stars {
  color: var(--gold); letter-spacing: 2px; font-size: 1rem; margin-bottom: 8px;
  display: flex; align-items: center; gap: 2px; line-height: 1;
}
.star {
  display: inline-block; width: 1em; height: 1em; line-height: 1;
  font-size: 1em; text-align: center;
}
.star--full { color: var(--gold); }
.star--empty { color: rgba(240,192,0,.35); }
.star--half {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(240,192,0,.35) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.review-card__title { font-family: "Poppins", system-ui, sans-serif; font-weight: 600; color: var(--paper); margin-bottom: 6px; font-size: 1rem; }
.review-card__body { color: var(--paper-dim); font-size: .9rem; margin-bottom: 8px; }
.review-card__label {
  display: inline-block; background: rgba(240,192,0,.1); color: var(--gold);
  border: 1px solid var(--line-strong); border-radius: 4px;
  padding: 2px 8px; font-size: .7rem; text-transform: uppercase; letter-spacing: .04em;
}
.reviews__source { text-align: center; color: var(--mist); font-size: .85rem; margin-top: var(--r-24); }

/* ---- Responsible-gaming band ---- */
.rg-band {
  padding-block: var(--r-24);
  background: var(--green);
  border-top: 1px solid var(--line);
}
.rg-band__row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.rg-18 {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--gold);
  font-family: "Poppins", system-ui, sans-serif; font-weight: 700; font-size: 1.1rem;
  width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
  border: 1px solid var(--gold);
}
.rg-band p { margin: 0; color: var(--paper); font-size: .92rem; max-width: 90ch; }
.rg-band a { color: var(--paper); text-decoration: underline; text-decoration-color: rgba(255,255,255,.55); }
.rg-band a:hover { color: var(--gold-soft); text-decoration-color: var(--gold-soft); }
.rg-band strong { color: var(--paper); font-weight: 700; }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  position: relative; overflow: hidden;
  padding-top: var(--r-48);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 2.5fr; gap: clamp(24px, 4vw, 48px); margin-bottom: var(--r-32);
}
.footer-brand p { font-size: .88rem; color: var(--mist); max-width: 50ch; margin: 12px 0; }
.footer-brand .btn { margin: 8px 0 var(--r-24); }
.footer-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.footer-badges img {
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 6px; padding: 4px 8px;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 32px);
}
.footer-col h3 { color: var(--gold); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0; }
.footer-col a { display: inline-block; padding: 4px 0; color: var(--paper-dim); font-size: .9rem; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-block: var(--r-16); border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--mist);
}
.footer-bottom a { color: var(--paper-dim); }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer { padding-block: var(--r-16) var(--r-24); }
.footer-disclaimer p {
  font-size: .76rem; color: var(--mist); margin: 0 auto; max-width: 90ch; text-align: center;
}

/* ---- To-top button ---- */
.to-top {
  position: fixed; bottom: 16px; right: 16px; z-index: 90;
  background: var(--gold); color: var(--ink); border: 0; border-radius: 50%;
  width: 44px; height: 44px; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-hover);
}
.to-top:hover { background: var(--gold-soft); }
.to-top svg { width: 22px; height: 22px; }

/* ---- Scroll reveal ----
   Default = VISIBLE so content shows without JS, in print, and for SEO
   crawlers. Only hide-and-animate when the .js class is on <html> AND the
   user has not requested reduced motion. */
[data-reveal] { opacity: 1; transform: none; }
html.js [data-reveal]:not(.is-visible) {
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal]:not(.is-visible) { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn--ghost.btn--sm { display: none; } /* Entrar hidden on tablet+mobile */
  .site-header .container { gap: 10px; }
  .header-cta { gap: 6px; }
  .brand img { height: 30px; }
  .hero__grid { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .hero__text { max-width: 640px; margin-inline: auto; }
  .hero__img { order: -1; max-width: 560px; width: 100%; margin-inline: auto; }
  .app-block__row { grid-template-columns: 1fr; justify-items: center; }
  .app-block__text { max-width: 640px; width: 100%; }
  .app-block__img { max-width: 480px; width: 100%; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .footer-brand .brand { justify-content: center; }
  .footer-badges { justify-content: center; }
}

@media (max-width: 480px) {
  .brand-cc { display: none; } /* de-clutter 360px header; the logo already reads BETWINNER */
  .brand { max-width: 42vw; }
  .brand img {
    height: 24px; width: auto; max-width: 100%;
    object-fit: contain; object-position: left center;
  }
  .site-header .container { gap: 8px; padding-inline: 12px; }
  .header-cta { gap: 6px; max-width: none; }
  .header-cta__register {
    min-width: 0; width: auto; min-height: 40px; height: 40px; padding-inline: 12px;
  }
  .header-cta__enter { display: none; }
  .lang-toggle button { padding: 0 9px; font-size: .75rem; }
  .nav-toggle { margin-left: 0; }
}

@media (max-width: 640px) {
  .header-cta .lite-toggle { display: none; } /* conserve header space */
  .header-cta .lang-toggle button { padding: 6px 8px; }
  .btn--lg { padding: 14px 22px; font-size: .95rem; min-height: 48px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-bottom {
    flex-direction: column; align-items: center; text-align: center; justify-content: center;
  }
  .trust-band__row { gap: 8px; justify-content: center; }
  .trust-chip { font-size: .76rem; padding: 4px 8px; }
  .carousel__head { flex-wrap: wrap; }
  .carousel__track { grid-auto-columns: clamp(180px, 72vw, 240px); }
  .strip__row { gap: 10px; }
  .pay-item { min-width: 72px; padding: 8px; }
  .rg-band__row { justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .footer-cols { grid-template-columns: 1fr; text-align: center; }
}

/* ==========================================================================
   LITE mode (3G/data saver)
   ========================================================================== */
body.lite {
  background: var(--ink);
}
body.lite .hero {
  background: var(--ink-2);
}
body.lite [data-reveal] { opacity: 1; transform: none; }
body.lite .hero::before,
body.lite .site-footer::before { display: none; }

/* ---- Print ---- */
@media print {
  .site-header, .mobile-nav, .to-top, .nav-toggle, .hero__cta, .carousel__controls, .lite-toggle, .lang-toggle, .rg-band, .footer-cta, .footer-badges, .app-block__img { display: none !important; }
  body { background: white; color: black; }
}
