:root {
  /* Palette */
  --ink-900: #0B0814;        /* Tanzanite Night — page bg */
  --ink-700: #161031;        /* Royal Surface — cards/header/footer */
  --ink-600: #241A45;        /* Edge — borders/dividers/inputs */
  --ink-500: #2F2456;        /* raised hover */
  --gold:    #FFCE00;        /* Imperial Gold — brand primary */
  --gold-soft: #FFD84D;
  --tanzanite: #7A5CFF;      /* signature secondary */
  --tanzanite-deep: #4C2FB0;
  --tanzanite-text: #9580FF;   /* AA-safe violet for link text on ink */
  --ivory:   #F3EEDD;        /* body & heading text */
  --muted:   #A797C9;        /* violet-grey secondary text */
  --kanga-crimson: #E0394B;
  --kanga-teal:    #16A6A2;
  --gold-ink: #1A1300;       /* text on gold */
  --white-06: rgba(243,238,221,.6);
  --white-08: rgba(243,238,221,.08);
  --white-12: rgba(243,238,221,.12);

  /* Typography */
  --font-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --fs-hero: clamp(2.1rem, 5.2vw, 3.4rem);
  --fs-h1:   clamp(1.7rem, 3.6vw, 2.5rem);
  --fs-h2:   clamp(1.35rem, 2.6vw, 1.9rem);
  --fs-h3:   1.2rem;
  --fs-lead: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-micro: 0.8125rem;

  /* Spacing */
  --s-8: 8px; --s-12: 12px; --s-16: 16px; --s-24: 24px;
  --s-32: 32px; --s-48: 48px; --s-64: 64px; --s-96: 96px;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-h: 68px;
  --shadow-card: 0 6px 30px rgba(0,0,0,.35);
  --shadow-gold: 0 0 0 1px rgba(255,206,0,.25), 0 8px 30px rgba(255,206,0,.12);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: var(--header-h); }
html[lang="en"] .sw { display: none; }
html[lang="sw"] .en { display: none; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ivory);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--header-h);
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: var(--tanzanite-text); text-decoration: none; }
a:hover { text-decoration: underline; }
p a, li a, dd a { text-decoration: underline; text-underline-offset: 2px; }
ul, ol { padding-left: 1.25rem; }
button { cursor: pointer; border: 0; background: none; }
table { border-collapse: collapse; width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
section { padding-block: clamp(44px, 6vw, 76px); }
section > .container > * + * { margin-top: var(--s-16); }
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-8);
}
.eyebrow::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, transparent, var(--tanzanite), transparent);
  transform-origin: left center;
}
.section-head.center .eyebrow::after { margin-inline: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ivory);
}
h2 { font-size: var(--fs-h2); margin-top: var(--s-8); }
h3 { font-size: var(--fs-h3); margin-top: var(--s-24); }
.lead { font-size: var(--fs-lead); color: var(--ivory); }

.kanga-ribbon {
  height: 10px;
  width: 100%;
  background-color: var(--ink-700);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='10' viewBox='0 0 48 10'%3E%3Cg fill='none'%3E%3Cpath d='M0 5l6-5 6 5-6 5z' fill='%23FFCE00'/%3E%3Cpath d='M12 5l6-5 6 5-6 5z' fill='%237A5CFF'/%3E%3Cpath d='M24 5l6-5 6 5-6 5z' fill='%23E0394B'/%3E%3Cpath d='M36 5l6-5 6 5-6 5z' fill='%2316A6A2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 10px;
  background-repeat: repeat-x;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--gold-ink); box-shadow: 0 4px 18px rgba(255,206,0,.25); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: var(--ink-600); }
.btn-ghost:hover { border-color: var(--tanzanite); background: var(--white-08); }
.btn-tz { background: var(--tanzanite); color: var(--ink-900); }
.btn-tz:hover { background: #8d72ff; }
.btn-sm { padding: 9px 18px; font-size: var(--fs-micro); min-height: 42px; }
.btn-block { width: 100%; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--tanzanite);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }
.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(22,16,49,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-600);
  transition: box-shadow .2s, background-color .2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); background: rgba(22,16,49,.97); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-12);
  min-height: var(--header-h);
}
.brand-logo { display: flex; align-items: center; flex-shrink: 0; min-width: 140px; }
.brand-logo img { height: 34px; width: auto; }
.brand-logo:hover { text-decoration: none; }
.main-nav { margin-inline: auto; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  list-style: none;
  padding: 0; margin: 0;
}
.nav-list a {
  color: var(--ivory);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
}
.nav-list a:hover { color: var(--gold); }
.nav-list a[aria-current="page"] { color: var(--gold); }
.nav-list a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: var(--s-12); flex-shrink: 0; }
.drawer-actions { display: none; }
@media (max-width:940px){
  .drawer-actions{ display:flex; flex-direction:column; gap:var(--s-16); padding:var(--s-16) var(--s-20); border-top:1px solid var(--ink-600); margin-top:var(--s-16); }
  .drawer-actions .lang-toggle{ width:100%; }
  .drawer-actions .lang-toggle button{ flex:1; padding:10px; min-height:44px; }
  .drawer-actions .btn{ width:100%; justify-content:center; }
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--ink-600);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-micro);
}
.lang-toggle button {
  padding: 6px 12px;
  color: var(--muted);
  background: transparent;
  letter-spacing: .04em;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--gold-ink);
}

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-600);
  align-items: center; justify-content: center;
}
.hamburger svg { width: 22px; height: 18px; }

@media (max-width: 940px) {
  .hamburger { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background: var(--ink-900);
    padding: var(--s-24);
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 120;
  }
  body.nav-open { overflow: hidden; }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: var(--s-16); }
  .nav-list a { font-size: var(--fs-body); }
  .header-actions .btn-ghost { display: none; }
  .header-actions .lang-toggle { display: none; }
  .header-actions .btn-gold { padding: 9px 14px; }
}

.hero {
  position: relative;
  padding-block: clamp(40px, 7vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--ink-600);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(url("assets/banners/hero-desktop.webp") 1x);
  background-size: cover;
  background-position: center;
  opacity: .14;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero::before {
    background-image: image-set(url("assets/banners/hero-mobile.webp") 1x);
    opacity: .1;
  }
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%; top: 58%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(122,92,255,.35) 0%, transparent 62%);
  z-index: 0;
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100%{opacity:.7} 50%{opacity:1} }
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-08);
  border: 1px solid var(--ink-600);
  color: var(--gold);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .08em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--s-20, 20px);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero h1 { font-size: var(--fs-hero); max-width: 18ch; }
.hero .lead { max-width: 54ch; margin-top: var(--s-16); color: var(--ivory); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-12); margin-top: var(--s-24); }
.hero-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.hero-visual .hero-shot {
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  border: 1px solid var(--ink-600);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.hero-visual .hero-brand {
  position: absolute;
  left: 18px; top: 18px;
  height: 36px; width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.45));
}
.hero-visual .hero-app {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 72px; height: 72px;
  border-radius: 18px;
  border: 2px solid rgba(255,206,0,.7);
  box-shadow: var(--shadow-gold);
  object-fit: cover;
  background: #fff;
}
@media (max-width: 860px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .hero-copy { text-align: left; }
  .hero-visual { order: -1; min-height: 0; }
  .hero-visual .hero-shot { max-width: 100%; }
  .hero-cta { justify-content: center; }
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  margin-top: var(--s-16);
  color: var(--muted);
  font-size: var(--fs-small);
}
.hero-meta strong { color: var(--gold); font-family: var(--font-mono); font-weight: 700; }
.star-row { color: var(--gold); letter-spacing: 2px; font-size: 1.1em; }

.trust-bar { background: var(--ink-700); border-bottom: 1px solid var(--ink-600); }
.trust-bar .container { padding-block: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-16);
  padding-block: var(--s-16);
}
.trust-cell { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-small); color: var(--muted); }
.trust-cell svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); }
.trust-cell strong { color: var(--ivory); display: block; }

.card {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: var(--s-24);
}
.card h3 { margin-top: 0; }
.grid { display: grid; gap: var(--s-24); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.why-card { transition: transform .15s ease, border-color .15s; }
.why-card:hover { transform: translateY(-2px); border-color: var(--tanzanite-deep); }
.why-card .ic {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: var(--white-08); color: var(--gold);
  margin-bottom: var(--s-12);
}
.why-card .ic svg { width: 22px; height: 22px; }

.app-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--s-32); align-items: start; }
@media (max-width: 820px) { .app-grid { grid-template-columns: 1fr; } }
.app-side {
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  min-width: 0;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.app-visual {
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: var(--s-32);
  text-align: center;
}
.app-icon-wrap {
  width: 120px; height: 120px; margin: 0 auto var(--s-16);
  border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--ink-600);
}
.app-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.app-spec { text-align: left; margin-top: var(--s-16); }
.app-spec dl { display: grid; grid-template-columns: auto 1fr; gap: 6px var(--s-16); font-size: var(--fs-small); }
.app-spec dt { color: var(--muted); }
.app-spec dd { font-family: var(--font-mono); color: var(--ivory); overflow-wrap: anywhere; }
.app-side-cta { justify-content: stretch; }
.app-side-cta .btn { flex: 1; justify-content: center; }
.app-store-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-micro); color: var(--muted);
  margin-top: var(--s-12);
}
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  position: relative;
  padding: 10px 0 10px 44px;
  border-bottom: 1px solid var(--ink-600);
  font-size: var(--fs-small);
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 8px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--tanzanite-deep);
  color: var(--ivory);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-micro);
}

.table-wrap { overflow-x: auto; border: 1px solid var(--ink-600); border-radius: var(--radius); }
.table-wrap table { min-width: 480px; }
th, td { padding: 13px 16px; text-align: left; font-size: var(--fs-small); border-bottom: 1px solid var(--ink-600); }
thead th {
  background: var(--ink-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .02em;
  position: sticky; top: 0;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--white-06, rgba(243,238,221,.04)); }
td .mono, .mono { font-family: var(--font-mono); }

/* Stacked cards on mobile */
@media (max-width: 640px) {
  .table-wrap { overflow-x: visible; border: 0; background: none; }
  .table-wrap table { min-width: 0; }
  thead { display: none; }
  tbody tr {
    display: block;
    background: var(--ink-700);
    border: 1px solid var(--ink-600);
    border-radius: var(--radius-sm);
    margin-bottom: var(--s-12);
    padding: var(--s-12) var(--s-16);
  }
  tbody tr:hover { background: var(--ink-700); }
  td {
    display: flex;
    justify-content: space-between;
    gap: var(--s-16);
    padding: 7px 0;
    border-bottom: 1px solid var(--ink-600);
    text-align: right;
  }
  td:last-child { border-bottom: 0; }
  td::before {
    content: attr(data-label);
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-display);
    text-align: left;
  }
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-12);
}
.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  padding: var(--s-12);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ivory);
  min-height: 56px;
  flex: 1 1 150px;
  max-width: 210px;
  transition: border-color .15s;
}
.chip:hover { border-color: var(--gold); }
.chip img { max-height: 36px; width: auto; }
.chip.brand-chip {
  padding: 0;
  background: transparent;
  border: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.chip.brand-chip img { width: 100%; max-height: none; height: 56px; object-fit: cover; }

.carousel {
  position: relative;
}
.carousel-viewport {
  display: flex;
  gap: var(--s-16);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--s-16);
  scroll-padding-left: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-600) transparent;
}
.carousel-viewport::-webkit-scrollbar { height: 8px; }
.carousel-viewport::-webkit-scrollbar-track { background: transparent; }
.carousel-viewport::-webkit-scrollbar-thumb { background: var(--ink-600); border-radius: 4px; }
.game-card {
  scroll-snap-align: start;
  flex: 0 0 240px;
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.game-card .cover {
  width: 100%;
  aspect-ratio: 17 / 10;
  object-fit: cover;
  cursor: pointer;
  border-bottom: 1px solid var(--ink-600);
}
.game-card { position: relative; }
.game-card::after {
  content: "";
  position: absolute;
  top: 10px; left: 10px;
  width: 78px; height: 20px;
  background: url("assets/logos/logo.svg") no-repeat left center / contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.75));
  pointer-events: none;
}
.game-card .gc-body { padding: var(--s-12) var(--s-16); }
.game-card .gc-title {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card .gc-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  font-size: var(--fs-micro);
  color: var(--muted);
}
.game-card.open .gc-desc { max-height: 220px; padding-top: 8px; }
.game-card .gc-play { display: inline-flex; margin-top: 8px; }

.carousel-ctrl {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink-700);
  border: 1.5px solid var(--ink-600);
  color: var(--ivory);
  display: grid; place-items: center;
  z-index: 2;
  transition: background-color .15s, opacity .15s;
}
.carousel-ctrl:hover { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }
.carousel-ctrl[disabled] { opacity: .3; cursor: default; }
.carousel-ctrl.prev { left: -10px; }
.carousel-ctrl.next { right: -10px; }
@media (max-width: 768px) {
  .game-card { flex-basis: 200px; }
  .carousel-ctrl { display: none; }
}

.bonus-carousel {
  position: relative;
}
.bonus-carousel-viewport {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 12px;
  padding-block: 2px;
  scrollbar-width: none;
}
.bonus-carousel-viewport::-webkit-scrollbar { display: none; }
.bonus-slide {
  scroll-snap-align: center;
  flex: 0 0 min(72%, 480px);
  position: relative;
  aspect-ratio: 21 / 9;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--ink-600);
  background: var(--ink-700);
  text-decoration: none;
}
.bonus-slide picture,
.bonus-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bonus-slide img {
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.bonus-carousel-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 8, 20, .78);
  border: 1.5px solid var(--ink-600);
  color: var(--ivory);
  display: grid;
  place-items: center;
  z-index: 2;
}
.bonus-carousel-ctrl:hover { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }
.bonus-carousel-ctrl.prev { left: 6px; }
.bonus-carousel-ctrl.next { right: 6px; }
@media (max-width: 768px) {
  .bonus-slide { flex-basis: 88%; aspect-ratio: 16 / 10; }
  .bonus-carousel-ctrl { width: 32px; height: 32px; }
}

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s-16); }
.review-card {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: var(--s-16) var(--s-20);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-card .rc-head { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.review-card .rc-attr { font-size: var(--fs-micro); color: var(--muted); }
.review-card .rc-text { font-size: var(--fs-small); color: var(--ivory); }
.review-note {
  margin-top: var(--s-16);
  padding: var(--s-16);
  background: var(--white-08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--muted);
}

/* Review form */
.review-form { background: var(--ink-700); border: 1px solid var(--ink-600); border-radius: var(--radius); padding: var(--s-24); margin-top: var(--s-24); }
.form-grid { display: grid; gap: var(--s-16); }
.field label { display: block; font-size: var(--fs-small); font-weight: 700; margin-bottom: 6px; color: var(--ivory); }
.field label .req { color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink-900);
  border: 1.5px solid var(--ink-600);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--ivory);
  font-size: var(--fs-small);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus { border-color: var(--tanzanite); outline: 0; }
.field .err { color: var(--kanga-crimson); font-size: var(--fs-micro); margin-top: 4px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--kanga-crimson); }
.rating-input { display: inline-flex; gap: 4px; font-size: 1.5rem; }
.rating-input input { appearance: none; width: auto; }
.rating-input label { cursor: pointer; color: var(--ink-500); display: inline; margin: 0; }
.rating-input input:checked ~ label,
.rating-input input:checked + label { color: var(--gold); }
.rating-input label:hover,
.rating-input label:hover ~ label { color: var(--gold-soft); }
.hp { position: absolute !important; left: -9999px !important; }
.form-thanks {
  display: none;
  padding: var(--s-24);
  text-align: center;
  background: var(--ink-700);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.form-thanks.show { display: block; }

.faq-list { display: grid; gap: var(--s-24); max-width: 760px; margin-inline: auto; }
details.faq {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  padding: 0;
}
details.faq summary {
  min-height: 48px;
  cursor: pointer;
  padding: var(--s-16) var(--s-20);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--ivory);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--s-16);
  align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform .2s;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq[open] summary { border-bottom: 1px solid var(--ink-600); }
details.faq .faq-a { padding: var(--s-16) var(--s-20); font-size: var(--fs-small); color: var(--muted); }
details.faq .faq-a p { margin-bottom: 8px; }
details.faq .faq-a p:last-child { margin-bottom: 0; }

.badge-row { display: flex; flex-wrap: wrap; gap: var(--s-16); align-items: center; }
.badge-row img { height: 56px; width: auto; }
.licence-card {
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: var(--s-32);
}
.licence-card .lic-glow {
  border-left: 3px solid var(--tanzanite);
  padding-left: var(--s-16);
  margin-top: var(--s-16);
  font-size: var(--fs-small);
  color: var(--muted);
}

.site-footer {
  background: var(--ink-700);
  border-top: 1px solid var(--ink-600);
  padding-bottom: var(--s-32);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-32);
  padding-block: var(--s-32);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 38px; width: auto; margin-bottom: var(--s-12); }
.footer-col h3 { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin: 0 0 var(--s-12); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--muted); font-size: var(--fs-small); text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-licence {
  font-size: var(--fs-micro);
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--ink-600);
  padding-top: var(--s-16);
}
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--s-12); align-items: center; margin-top: var(--s-12); }
.footer-badges img { height: 48px; width: auto; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-12);
  padding-top: var(--s-16);
  font-size: var(--fs-micro); color: var(--muted);
  border-top: 1px solid var(--ink-600);
}
.responsible-gaming {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-12);
  padding: var(--s-16);
  background: var(--ink-900);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--muted);
  margin-top: var(--s-24);
}
.responsible-gaming img { height: 40px; width: auto; flex-shrink: 0; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--s-16); }
.stat-tile {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  padding: var(--s-16);
  text-align: center;
}
.stat-tile .num { font-family: var(--font-mono); font-weight: 800; font-size: 1.6rem; color: var(--gold); line-height: 1.1; }
.stat-tile .lbl { font-size: var(--fs-micro); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.prose { max-width: 70ch; }
.prose p + p { margin-top: var(--s-16); }
.prose h3 { margin-top: var(--s-32); }
.callout {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-items: stretch;
  background: var(--white-08);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  padding: var(--s-16) var(--s-20);
  margin-block: var(--s-16);
  font-size: var(--fs-small);
  overflow-wrap: anywhere;
}
.callout::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / -1;
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
}
.callout > * {
  grid-column: 2;
  min-width: 0;
}
.callout.crimson::before { background: var(--kanga-crimson); }
.callout strong { color: var(--gold); }

.reveal-sec {
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);
  will-change: transform, opacity, clip-path;
}
.reveal-sec[data-fx="rise"] {
  opacity: 0;
  transform: translate3d(0, 56px, 0) scale(.97);
  transition: opacity .7s ease, transform .9s var(--reveal-ease);
}
.reveal-sec[data-fx="clip"] {
  clip-path: circle(18% at 12% 40%);
  opacity: 1;
  transition: clip-path 1s var(--reveal-ease);
}
.reveal-sec[data-fx="tilt"] {
  opacity: 0;
  transform: perspective(1100px) rotateX(10deg) translate3d(0, 28px, 0);
  transform-origin: 50% 80%;
  transition: opacity .55s ease, transform .95s var(--reveal-ease);
}
.reveal-sec[data-fx="wipe"] {
  clip-path: inset(28% 0 0 0);
  opacity: 1;
  transition: clip-path .85s var(--reveal-ease);
}
.reveal-sec[data-fx="slide"] {
  opacity: 0;
  transform: translate3d(var(--slide, 48px), 0, 0) skewX(-4deg);
  transition: opacity .6s ease, transform .85s var(--reveal-ease);
}
.reveal-sec.is-in {
  opacity: 1;
  transform: none;
  clip-path: none;
  will-change: auto;
}
.reveal-sec[data-fx="clip"].is-in { clip-path: circle(160% at 20% 40%); }
.reveal-sec[data-fx="wipe"].is-in { clip-path: inset(0 0 0 0); }

.reveal-child {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.98);
}
.reveal-sec.is-in .reveal-child {
  animation: reveal-child .7s var(--reveal-ease) both;
  animation-delay: calc(var(--stagger, 0) * 70ms + 90ms);
}
@keyframes reveal-child {
  to { opacity: 1; transform: none; }
}

.reveal-sec.is-in .eyebrow::after {
  animation: reveal-line .7s var(--reveal-ease) both;
  animation-delay: .12s;
}
@keyframes reveal-line {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

[data-lite] .reveal,
[data-lite] .reveal-sec,
[data-lite] .reveal-child {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  animation: none !important;
  transition: none !important;
}

[data-lite] .hero::before { display: none; }
[data-lite] .hero::after { display: none; }
[data-lite] .kanga-ribbon { display: none; }
[data-lite] .stat-tile, [data-lite] .chip { background: var(--ink-700); }

.cv-auto { }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-sec, .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    filter: none !important;
  }
  .hero::after { animation: none; }
}

.page-hero {
  position: relative;
  padding-block: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--ink-600);
  background: var(--ink-900);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -10%; top: -30%;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(122,92,255,.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero.has-media .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.page-hero-art {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--ink-600);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
@media (max-width: 800px) {
  .page-hero.has-media .container { grid-template-columns: 1fr; }
  .page-hero-art { order: -1; }
}
.page-hero h1 { font-size: var(--fs-h1); max-width: 22ch; }
.page-hero .lead { max-width: 62ch; margin-top: var(--s-12); }
.page-hero .page-logo {
  height: 32px; width: auto; margin-bottom: var(--s-12);
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: var(--s-8); } .mt-16 { margin-top: var(--s-16); }
.mt-24 { margin-top: var(--s-24); } .mt-32 { margin-top: var(--s-32); }
.mb-0 { margin-bottom: 0; }
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-12); align-items: center; }
.divider { height: 1px; background: var(--ink-600); border: 0; margin-block: var(--s-32); }

.related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-16);
  width: 100%;
}
.related a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: var(--s-20);
  color: var(--ivory);
  text-decoration: none;
  min-height: 112px;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.related a:hover { border-color: var(--gold); text-decoration: none; }
.related strong { color: var(--gold); font-size: var(--fs-small); }
.related span { color: var(--muted); font-size: var(--fs-micro); }
@media (max-width: 760px) { .related { grid-template-columns: 1fr; } }

.sports-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--s-32);
  align-items: stretch;
}
.sports-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-16);
  min-width: 0;
}
.sports-copy .section-head { max-width: none; }
.sports-copy p { margin: 0; }
.sports-split img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--ink-600);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 760px) {
  .sports-split { grid-template-columns: 1fr; }
  .sports-split img { height: auto; aspect-ratio: 16 / 10; }
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-12);
}
.promo-card {
  position: relative;
  display: block;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--ink-600);
  background: var(--ink-700);
  aspect-ratio: 16 / 9;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .35s ease;
}
.promo-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(11, 8, 20, .88));
  color: var(--ivory);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .02em;
}
.promo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
  text-decoration: none;
}
.promo-card:hover img { transform: scale(1.05); }
@media (max-width: 900px) {
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .promo-grid { gap: 8px; }
  .promo-card { aspect-ratio: 16 / 10; }
}

.legal-note {
  font-size: var(--fs-small);
  color: var(--muted);
  border: 1px solid var(--ink-600);
  background: var(--ink-700);
  border-radius: var(--radius-sm);
  padding: var(--s-16) var(--s-20);
  max-width: 70ch;
}

@media (max-width: 1100px) and (min-width: 941px) {
  .header-actions .btn-ghost { display: none; }
  .nav-list { gap: 10px; }
  .nav-list a { font-size: 0.8125rem; }
}

@media (max-width: 860px) {
  .hero-cta,
  .cluster,
  .app-side-cta {
    justify-content: center;
  }
  .app-side-cta .btn {
    flex: 0 1 auto;
  }
  .card > .btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
  .gc-body {
    display: flex;
    flex-direction: column;
  }
  .gc-body .btn {
    align-self: center;
  }
}

.hop {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(18px) scale(.86);
  pointer-events: none;
  transition: opacity .28s ease, transform .32s cubic-bezier(.2, .9, .2, 1);
}
.hop.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
body.nav-open .hop { opacity: 0; pointer-events: none; }
.hop-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hop-main,
.hop-nav {
  position: relative;
  border: 1.5px solid var(--ink-600);
  color: var(--ivory);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hop-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(22, 16, 49, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
  overflow: visible;
}
.hop-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 16, 49, .88);
}
.hop-main:hover,
.hop-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.hop-main:hover { box-shadow: 0 0 0 4px rgba(255, 206, 0, .14), 0 10px 28px rgba(0, 0, 0, .45); }
.hop-nav[disabled] { opacity: .35; cursor: default; transform: none; }
.hop-ring {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
}
.hop-ring-bg {
  fill: none;
  stroke: var(--ink-600);
  stroke-width: 2.5;
}
.hop-ring-fg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 28px 28px;
  transition: stroke-dashoffset .12s linear;
}
.hop-chevron {
  position: relative;
  z-index: 1;
  color: var(--gold);
  display: grid;
  place-items: center;
  animation: hop-bob 1.8s ease-in-out infinite;
}
.hop.near-end .hop-main {
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 206, 0, .16), 0 10px 28px rgba(0, 0, 0, .45);
}
.hop.hop-pulse .hop-main { animation: hop-pulse .45s ease; }
.hop-pill {
  max-width: min(220px, calc(100vw - 96px));
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink-600);
  background: rgba(22, 16, 49, .92);
  color: var(--ivory);
  font-size: var(--fs-micro);
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}
.hop-pill:hover,
.hop.menu-open .hop-pill {
  border-color: var(--tanzanite);
  color: var(--gold);
}
.hop-menu {
  width: min(260px, calc(100vw - 32px));
  max-height: min(52vh, 420px);
  overflow: auto;
  background: rgba(11, 8, 20, .96);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 10px 8px 8px;
  overscroll-behavior: contain;
}
.hop-menu::before {
  content: "";
  display: block;
  height: 4px;
  margin: -10px -8px 10px;
  border-radius: var(--radius) var(--radius) 0 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='10' viewBox='0 0 48 10'%3E%3Cg fill='none'%3E%3Cpath d='M0 5l6-5 6 5-6 5z' fill='%23FFCE00'/%3E%3Cpath d='M12 5l6-5 6 5-6 5z' fill='%237A5CFF'/%3E%3Cpath d='M24 5l6-5 6 5-6 5z' fill='%23E0394B'/%3E%3Cpath d='M36 5l6-5 6 5-6 5z' fill='%2316A6A2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 10px;
}
.hop-menu-kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 8px 8px;
}
.hop-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ivory);
  font-size: var(--fs-micro);
  font-weight: 600;
  line-height: 1.3;
  min-height: 44px;
}
.hop-item:hover { background: var(--white-08); text-decoration: none; }
.hop-item.is-current {
  background: var(--white-08);
  color: var(--gold);
  box-shadow: inset 3px 0 0 var(--gold);
}
@keyframes hop-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes hop-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
[data-lite] .hop-chevron { animation: none; }
@media print { .hop { display: none !important; } }
@media (max-width: 760px) {
  .hop-pill { max-width: min(180px, calc(100vw - 88px)); }
}
