/* ========================================================================
   ROYAL REELS — premium dark / royal-purple / gold design system
   ======================================================================== */

:root {
  /* Charcoal base */
  --bg:          #0b0a0f;
  --bg-2:        #110e18;
  --bg-3:        #16121f;
  --surface:     #1a1426;
  --surface-2:   #221934;

  /* Royal purple */
  --purple:      #2a1a4a;
  --purple-2:    #3d2a6d;
  --purple-glow: rgba(61, 42, 109, 0.55);

  /* Gold */
  --gold:        #d4af37;
  --gold-2:      #f5d77a;
  --gold-deep:   #b8932e;
  --gold-grad:   linear-gradient(135deg, #f5d77a 0%, #d4af37 45%, #b8932e 100%);

  /* Text */
  --text:        #f3eee4;
  --text-soft:   #cdc4d8;
  --text-mute:   #9a8fae;

  /* Lines */
  --line:        rgba(212, 175, 55, 0.18);
  --line-soft:   rgba(255, 255, 255, 0.08);

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --shadow:      0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 16px 40px -16px rgba(212, 175, 55, 0.45);

  --maxw:        1160px;
  --header-h:    78px;

  --serif:       "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(61, 42, 109, 0.45), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(42, 26, 74, 0.5), transparent 60%),
    radial-gradient(700px 700px at 50% 120%, rgba(212, 175, 55, 0.06), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: #1a1206; padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------------- Typography ---------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}

.kicker, .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2);
}
.kicker { margin-bottom: 14px; }

.lead { color: var(--text-soft); font-size: 1.08rem; max-width: 62ch; }
.muted { color: var(--text-mute); font-size: 0.92rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn.full { width: 100%; }

.btn-gold {
  background: var(--gold-grad); color: #20180a;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -16px rgba(212, 175, 55, 0.6); }

.btn-outline {
  background: transparent; color: var(--gold-2); border-color: rgba(212, 175, 55, 0.55);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--gold-2); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--text-soft); border-color: var(--line-soft);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11, 10, 15, 0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: height .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  height: 62px;
  background: rgba(11, 10, 15, 0.92);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-emblem { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(212,175,55,0.35)); transition: width .3s ease, height .3s ease; }
.site-header.scrolled .brand-emblem { width: 38px; height: 38px; }

.wordmark {
  font-family: var(--serif); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wordmark-sm { font-size: 1.25rem; }

/* ---------------- Brand logo: crown-on-R wordmark ---------------- */
.rr-logo { position: relative; display: inline-flex; align-items: flex-end; padding-top: 14px; line-height: 1; }
.rr-crown {
  position: absolute; top: 0; left: 0; width: 20px; height: auto;
  transform: translateX(-1px);
  filter: drop-shadow(0 1px 3px rgba(212,175,55,0.5));
  transition: width .3s ease, top .3s ease;
}
.rr-word {
  font-family: var(--serif); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.10em;
  text-transform: uppercase; white-space: nowrap;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  transition: font-size .3s ease;
}
.rr-r {
  position: relative;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.site-header.scrolled .rr-logo { padding-top: 12px; }
.site-header.scrolled .rr-crown { width: 17px; }
.site-header.scrolled .rr-word { font-size: 1.3rem; }
/* footer variant */
.rr-logo-sm { padding-top: 12px; }
.rr-logo-sm .rr-word { font-size: 1.3rem; }
.rr-logo-sm .rr-crown { width: 17px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--text-soft); position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.age-badge {
  display: inline-grid; place-items: center;
  min-width: 38px; height: 30px; padding: 0 8px;
  border: 1.5px solid var(--gold); border-radius: 8px;
  font-weight: 700; font-size: 0.82rem; color: var(--gold-2); letter-spacing: 0.04em;
}
.age-lg { min-width: 56px; height: 48px; font-size: 1.2rem; border-radius: 12px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-2); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Section rhythm ---------------- */
.section { padding: 86px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head .lead { margin: 0 auto; }

/* Subtle divider filigree between sections */
.section + .section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(680px, 80%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: calc(var(--header-h) + 40px) 0 70px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero.webp") center/cover no-repeat;
  transform: scale(1.04);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11,10,15,0.95) 8%, rgba(11,10,15,0.7) 45%, rgba(42,26,74,0.45) 100%),
    radial-gradient(900px 500px at 18% 40%, rgba(61,42,109,0.45), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 40px; align-items: center; }
.eyebrow { margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); margin-bottom: 22px; max-width: 16ch; }
.hero-sub { font-size: 1.18rem; color: var(--text-soft); max-width: 56ch; margin-bottom: 30px; }
.hero-sub strong { color: var(--gold-2); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.trust-row li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-soft);
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(26, 20, 38, 0.55);
}
.trust-row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 8px rgba(212,175,55,0.7); }

.hero-mascot { justify-self: end; }
.hero-mascot img {
  width: clamp(260px, 32vw, 440px); height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hero-mascot img { animation: none; } }

/* ---------------- Overview ---------------- */
.overview-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 14px; box-shadow: var(--shadow);
  position: relative;
}
.overview-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, rgba(245,215,122,0.5), transparent 40%, rgba(61,42,109,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.ov-item {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 20px; background: rgba(11,10,15,0.35); border-radius: 8px;
}
.ov-item dt { color: var(--text-mute); font-size: 0.85rem; font-weight: 500; }
.ov-item dd { color: var(--text); font-weight: 600; text-align: right; font-size: 0.95rem; }
.stars { color: var(--gold); letter-spacing: 1px; }

/* ---------------- Cards (bonuses) ---------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.bonus-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(212,175,55,0.4); }
.bonus-card.featured { border-color: rgba(212,175,55,0.55); box-shadow: var(--shadow-gold); padding-top: 44px; }
.bonus-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.bonus-amount { font-family: var(--serif); font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.bonus-desc { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 16px; }
.bonus-terms { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.bonus-terms li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--text-soft); }
.bonus-terms li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.bonus-card .btn { margin-top: auto; }
.terms-note { margin-top: 12px; font-size: 0.72rem; color: var(--text-mute); text-align: center; letter-spacing: 0.02em; }

.ribbon {
  position: absolute; top: 16px; right: -2px;
  background: var(--gold-grad); color: #20180a;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 8px 0 0 8px;
}

/* ---------------- Pokies ---------------- */
.category-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.chip {
  padding: 9px 18px; border-radius: 999px; font-size: 0.86rem; font-weight: 500;
  border: 1px solid var(--line); color: var(--text-soft); background: rgba(26,20,38,0.5);
  cursor: default; transition: all .2s ease;
}
.chip-active { background: var(--gold-grad); color: #20180a; border-color: transparent; font-weight: 600; }

.game-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px;
}
.game-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/5;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tile-link { display: block; width: 100%; height: 100%; position: relative; }
.game-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-tile:hover img { transform: scale(1.07); }
.tile-play {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%) scale(0.9);
  z-index: 2; padding: 10px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 0.9rem; color: #20180a;
  background: var(--gold-grad); box-shadow: var(--shadow-gold);
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.game-tile:hover .tile-play,
.tile-link:focus-visible .tile-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.game-name {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--serif); font-weight: 700; font-size: 1.02rem; color: var(--text);
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(11,10,15,0.95) 10%, rgba(11,10,15,0.55) 55%, transparent);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.center-cta { text-align: center; }
.center-cta .muted { margin-top: 16px; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ---------------- Providers (logo wall) ---------------- */
.provider-wall {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.prov-badge {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 76px; padding: 16px 14px; text-align: center;
  background: linear-gradient(160deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.prov-badge:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.5); box-shadow: var(--shadow); }
.prov-mark {
  display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto;
  font-size: 0.9rem; font-weight: 700; color: #20180a; line-height: 1;
  background: var(--gold-grad); border-radius: 7px;
}
.prov-mark-dot { background: var(--gold-grad); }
.prov-mark-b { font-family: var(--serif); }
.prov-mark-tiger { background: #c0392b; color: #fff; }
.prov-name {
  display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.05;
  font-family: var(--sans); letter-spacing: 0.04em;
}
.prov-strong { font-weight: 800; font-size: 0.98rem; color: var(--text); text-transform: uppercase; }
.prov-sub { font-weight: 500; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--text-mute); text-transform: uppercase; }
.prov-accent { font-weight: 800; font-size: 0.98rem; color: var(--gold-2); text-transform: uppercase; }

/* ---------------- Payments (logo strip) ---------------- */
.pay-wall { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 40px; }
.pay-badge {
  display: grid; place-items: center; width: 116px; height: 56px; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--surface), var(--bg-3));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pay-badge:hover { transform: translateY(-3px); border-color: rgba(212,175,55,0.5); box-shadow: var(--shadow); }
.pay-svg { width: 100%; height: 26px; }
/* footer compact payment row */
.footer-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 16px; opacity: 0.85; }
.fpay { height: 20px; width: auto; }
.cta-micro { display: inline-block; font-size: 0.72rem; color: var(--text-mute); letter-spacing: 0.02em; }
.cta-pair { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); margin-bottom: 18px; }
.pay-table { width: 100%; border-collapse: collapse; min-width: 560px; background: linear-gradient(160deg, var(--surface), var(--bg-3)); }
.pay-table th, .pay-table td { padding: 16px 20px; text-align: left; font-size: 0.94rem; }
.pay-table thead th {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-2); border-bottom: 1px solid var(--line); font-weight: 600;
}
.pay-table tbody tr { border-bottom: 1px solid var(--line-soft); }
.pay-table tbody tr:last-child { border-bottom: 0; }
.pay-table tbody th { font-weight: 600; color: var(--text); }
.pay-table tbody td { color: var(--text-soft); }
.pay-table tbody tr:hover { background: rgba(61,42,109,0.18); }

/* ---------------- Registration steps ---------------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 34px 26px 28px;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.4); }
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px;
  font-family: var(--serif); font-weight: 800; font-size: 1.4rem; color: #20180a;
  background: var(--gold-grad); border-radius: 14px; box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* ---------------- App + Safety (two-up) ---------------- */
.app-inner, .safety-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.app-media img, .safety-media img {
  margin: 0 auto; filter: drop-shadow(0 30px 55px rgba(0,0,0,0.6));
}
.app-media img { width: clamp(220px, 26vw, 320px); }
.safety-media img { width: clamp(260px, 32vw, 420px); }
.safety-inner .safety-media { order: 2; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.check-list li { position: relative; padding-left: 34px; color: var(--text-soft); font-size: 1rem; }
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  display: grid; place-items: center; width: 22px; height: 22px;
  background: rgba(212,175,55,0.15); color: var(--gold-2); border-radius: 50%;
  font-size: 0.78rem; font-weight: 700; border: 1px solid rgba(212,175,55,0.4);
}
.check-list.two-col { display: grid; grid-template-columns: repeat(2, 1fr); }

/* ---------------- Responsible gambling ---------------- */
.responsible-card {
  position: relative; max-width: 900px; margin: 0 auto; text-align: center;
  padding: 48px 40px;
  background: linear-gradient(165deg, var(--purple) 0%, var(--bg-3) 100%);
  border: 1px solid rgba(212,175,55,0.35); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.responsible-card .age-lg { margin: 0 auto 18px; }
.responsible-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.responsible-card .lead { margin: 0 auto 26px; }
.responsible-card .check-list { text-align: left; max-width: 720px; margin: 0 auto 28px; }
.help-box {
  background: rgba(11,10,15,0.5); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px;
}
.help-box a { color: var(--gold-2); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.resp-tag { margin-top: 10px; font-family: var(--serif); font-weight: 700; color: var(--gold-2); font-size: 1.15rem; }

/* ---------------- Support ---------------- */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 860px; margin: 0 auto; }
.support-card {
  text-align: center; padding: 38px 30px;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease;
}
.support-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.4); }
.support-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.support-card p { color: var(--text-soft); margin-bottom: 22px; }

/* ---------------- Licence ---------------- */
.licence-card {
  max-width: 880px; margin: 0 auto; text-align: center; padding: 46px 40px;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.licence-card h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 6px 0 16px; }
.licence-card .lead { margin: 0 auto; }
.licence-card strong { color: var(--gold-2); }

/* ---------------- Why choose ---------------- */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usp-card {
  padding: 30px 26px; text-align: center;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.usp-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow); }
.usp-icon {
  display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 16px;
  font-size: 1.6rem; color: var(--gold-2);
  background: radial-gradient(circle at 50% 30%, rgba(61,42,109,0.7), rgba(11,10,15,0.4));
  border: 1px solid rgba(212,175,55,0.4); border-radius: 16px;
}
.usp-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.usp-card p { color: var(--text-soft); font-size: 0.93rem; }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--text);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold-2); transition: transform .3s ease;
  font-family: var(--sans); line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold-2); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { color: var(--text-soft); font-size: 0.97rem; }
.faq-item[open] { border-color: rgba(212,175,55,0.4); }

/* ---------------- Safety CTA ---------------- */
.safety-cta { margin-top: 8px; }
.safety-cta .muted { margin-top: 12px; }

/* ---------------- Final CTA band ---------------- */
.final-cta {
  position: relative; padding: 70px 0; overflow: hidden;
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(61,42,109,0.6), transparent 60%),
    linear-gradient(160deg, var(--purple) 0%, var(--bg-3) 100%);
  border-top: 1px solid rgba(212,175,55,0.35); border-bottom: 1px solid rgba(212,175,55,0.35);
}
.final-cta-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.final-cta-copy h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); margin: 8px 0 14px; }
.final-cta-copy .lead { margin: 0; }
.final-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.final-cta-actions .btn { width: 100%; }
.final-cta-actions .terms-note { text-align: center; margin-top: 4px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 64px 0 30px; margin-bottom: 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.6fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--line-soft); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-blurb { color: var(--text-mute); font-size: 0.92rem; margin-bottom: 16px; max-width: 36ch; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-resp h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.footer-links a { color: var(--text-soft); font-size: 0.92rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-2); }
.footer-resp p { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 10px; }
.footer-resp a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }

.footer-bottom { padding-top: 26px; text-align: center; }
.footer-bottom p { color: var(--text-mute); font-size: 0.85rem; margin-bottom: 10px; }
.footer-bottom .disclaimer { font-size: 0.78rem; max-width: 80ch; margin: 0 auto; line-height: 1.7; color: #7d7390; }

/* ---------------- Sticky mobile bar ---------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11,10,15,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar-text { font-size: 0.82rem; font-weight: 600; color: var(--gold-2); flex: 1; line-height: 1.25; }
.mobile-bar-micro { display: block; font-size: 0.66rem; font-weight: 500; color: var(--text-mute); letter-spacing: 0.02em; }
.mobile-bar .btn { padding: 11px 18px; font-size: 0.9rem; }
.mobile-bar-close {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-soft);
  color: var(--text-soft); font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: color .2s ease, border-color .2s ease;
}
.mobile-bar-close:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.mobile-bar.dismissed { display: none !important; }

/* ---------------- Back to top ---------------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.5);
  background: rgba(26,20,38,0.9); color: var(--gold-2); font-size: 1.3rem; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
  backdrop-filter: blur(8px);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--gold-grad); color: #20180a; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 980px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .steps, .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .provider-wall { grid-template-columns: repeat(4, 1fr); }
  .final-cta-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .final-cta-copy .lead { margin: 0 auto; }
  .safety-cta .muted { margin-left: auto; margin-right: auto; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,10,15,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 15px 24px; font-size: 1rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost, .header-actions .btn-gold { display: none; }
  .header-actions .age-badge { display: inline-grid; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero h1 { max-width: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .trust-row { justify-content: center; }
  .hero-mascot { order: -1; justify-self: center; }
  .hero-mascot img { width: clamp(180px, 50vw, 260px); }

  .app-inner, .safety-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .safety-inner .safety-media { order: -1; }
  .app-media, .safety-media { order: -1; }
  .check-list { text-align: left; max-width: 460px; margin-left: auto; margin-right: auto; }
  .check-list li { font-size: 0.95rem; }

  .support-grid { grid-template-columns: 1fr; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
  body.bar-dismissed { padding-bottom: 0; }
  body.bar-dismissed .back-to-top { bottom: 22px; }
  .back-to-top { bottom: 90px; }
  .provider-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 34px; }
  .overview-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps, .usp-grid { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .responsible-card, .licence-card { padding: 34px 22px; }
  .game-name { font-size: 0.9rem; padding: 22px 12px 12px; }
  .hero-ctas .btn { width: 100%; }
  .provider-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prov-badge { min-height: 64px; padding: 12px 10px; }
  .pay-badge { width: 102px; height: 50px; }
  .cta-pair { width: 100%; flex-direction: column; }
  .cta-pair .btn { width: 100%; }
}

@media (max-width: 420px) {
  .wordmark { font-size: 1.18rem; letter-spacing: 0.1em; white-space: nowrap; }
  .brand-emblem { width: 38px; height: 38px; }
  .rr-word { font-size: 1.2rem; letter-spacing: 0.08em; }
  .rr-crown { width: 20px; }
  .header-actions { gap: 8px; }
}

/* ========================================================================
   EXPANSION SECTIONS — how-to guides, VIP, categories, RG tools, Trustpilot,
   SVG provider wordmarks  (additive, same dark / purple / gold system)
   ======================================================================== */

/* ---------------- Anchor offset helper for deep links ---------------- */
.anchor-offset { position: relative; top: calc(-1 * var(--header-h)); display: block; height: 0; visibility: hidden; }

/* ---------------- How-to guide blocks ---------------- */
.guide {
  position: relative;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 34px; box-shadow: var(--shadow);
}
.guide + .guide { margin-top: 26px; }
.guide-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.guide-badge {
  display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px;
  font-family: var(--serif); font-weight: 800; font-size: 1.05rem; color: #20180a;
  background: var(--gold-grad); border-radius: 12px; box-shadow: var(--shadow-gold); flex: 0 0 auto;
}
.guide h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.guide > p.guide-intro { color: var(--text-soft); font-size: 1rem; margin: 10px 0 22px; max-width: 70ch; }

/* numbered steps as a real ordered list */
.guide-steps { list-style: none; counter-reset: gstep; display: flex; flex-direction: column; gap: 14px; margin: 0 0 24px; }
.guide-steps > li {
  position: relative; counter-increment: gstep; padding: 16px 18px 16px 64px;
  background: rgba(11,10,15,0.4); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  color: var(--text-soft); font-size: 0.98rem;
}
.guide-steps > li::before {
  content: counter(gstep); position: absolute; left: 16px; top: 14px;
  display: grid; place-items: center; width: 34px; height: 34px;
  font-family: var(--serif); font-weight: 800; font-size: 1rem; color: var(--gold-2);
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.4); border-radius: 10px;
}
.guide-steps > li strong { color: var(--text); font-weight: 600; }

/* sub-guides (deposit methods) */
.subguide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-bottom: 8px; }
.subguide {
  background: rgba(11,10,15,0.4); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; display: flex; flex-direction: column;
}
.subguide-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.subguide h4 { font-family: var(--serif); font-size: 1.18rem; color: var(--text); }
.subguide .tag {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid rgba(212,175,55,0.4); border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.subguide .subguide-meta { font-size: 0.82rem; color: var(--text-mute); margin-bottom: 14px; }
.subguide .guide-steps > li { background: rgba(11,10,15,0.55); padding-left: 56px; font-size: 0.92rem; }
.subguide .guide-steps > li::before { width: 28px; height: 28px; font-size: 0.85rem; left: 14px; top: 12px; }

/* guide footer CTA */
.guide-cta { text-align: center; margin-top: 8px; }
.guide-cta .btn { margin-bottom: 8px; }
.guide-cta .cta-micro { display: block; }

/* callout / honest expectation note */
.guide-note {
  margin-top: 14px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(61,42,109,0.22); border: 1px solid var(--line-soft);
  color: var(--text-soft); font-size: 0.9rem;
}
.guide-note strong { color: var(--gold-2); }

/* wagering worked-example highlight */
.wager-example {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px;
  margin: 18px 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line);
}
.wager-example div { background: rgba(11,10,15,0.45); padding: 16px 18px; }
.wager-example dt { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px; }
.wager-example dd { font-family: var(--serif); font-weight: 800; font-size: 1.25rem; color: var(--gold-2); }

/* ---------------- VIP / loyalty ladder ---------------- */
.vip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.vip-tier {
  position: relative; padding: 26px 22px; text-align: center;
  background: linear-gradient(170deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.vip-tier:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.45); box-shadow: var(--shadow); }
.vip-tier.vip-top { border-color: rgba(212,175,55,0.55); box-shadow: var(--shadow-gold); }
.vip-gem {
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 14px; font-size: 1.3rem;
  border-radius: 12px; border: 1px solid rgba(212,175,55,0.4);
  background: radial-gradient(circle at 50% 30%, rgba(61,42,109,0.7), rgba(11,10,15,0.4));
}
.vip-tier h3 { font-size: 1.18rem; margin-bottom: 4px; }
.vip-tier .vip-sub { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; }
.vip-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.vip-perks li { position: relative; padding-left: 20px; font-size: 0.86rem; color: var(--text-soft); }
.vip-perks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.72rem; top: 2px; }

/* ---------------- Game category cards ---------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.cat-card {
  padding: 30px 26px; text-align: center;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.45); box-shadow: var(--shadow); }
.cat-icon {
  display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 16px;
  font-size: 1.7rem; color: var(--gold-2);
  background: radial-gradient(circle at 50% 30%, rgba(61,42,109,0.7), rgba(11,10,15,0.4));
  border: 1px solid rgba(212,175,55,0.4); border-radius: 16px;
}
.cat-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cat-card p { color: var(--text-soft); font-size: 0.92rem; }
.cat-card .cat-count { display: block; margin-top: 10px; font-size: 0.8rem; color: var(--gold-2); font-weight: 600; letter-spacing: 0.04em; }

/* ---------------- Responsible-gambling tools ---------------- */
.rg-tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 28px; }
.rg-tool {
  padding: 26px 24px;
  background: rgba(11,10,15,0.45); border: 1px solid var(--line); border-radius: var(--radius);
}
.rg-tool h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.rg-tool .rg-ico { color: var(--gold-2); font-size: 1.2rem; }
.rg-tool ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.rg-tool ol li { color: var(--text-soft); font-size: 0.9rem; padding-left: 4px; }
.rg-tool ol li::marker { color: var(--gold-2); font-weight: 700; }

/* ---------------- Trustpilot section ---------------- */
.trustpilot-section {
  background:
    radial-gradient(800px 360px at 80% -20%, rgba(0,182,122,0.10), transparent 60%),
    linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
}
.tp-card {
  max-width: 960px; margin: 0 auto; text-align: center;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 42px 36px;
}
.tp-logo { height: 34px; width: auto; margin: 0 auto 14px; }
.tp-rating { height: 40px; width: auto; margin: 14px auto 6px; }
.tp-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 6px 0 8px; }
.tp-card .lead { margin: 0 auto 18px; }
.tp-score { font-family: var(--serif); font-weight: 800; color: var(--gold-2); }
.tp-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; text-align: left; }
.tp-hi {
  padding: 18px 20px; background: rgba(11,10,15,0.45);
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
}
.tp-hi .tp-hi-ico { font-size: 1.4rem; color: #00b67a; display: block; margin-bottom: 8px; }
.tp-hi h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.tp-hi p { color: var(--text-soft); font-size: 0.85rem; }
.tp-widget-wrap {
  margin: 22px auto 8px; padding: 14px; border-radius: var(--radius);
  background: rgba(11,10,15,0.4); border: 1px solid var(--line-soft); min-height: 150px;
}
.tp-cta { margin-top: 8px; }
@media (max-width: 700px) { .tp-highlights { grid-template-columns: 1fr; } }

/* ---------------- SVG provider wordmark wall (replaces text badges) ---------------- */
.provider-wall .prov-badge {
  flex-direction: column; gap: 0; min-height: 84px; padding: 18px 16px;
  background: linear-gradient(160deg, #14101e, #0d0b14);
}
.provider-wall .prov-logo { height: 30px; width: auto; max-width: 100%; display: block; }

/* real payment logo chips + footer trust badges */
.pay-wall .pay-badge{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:9px;padding:9px 14px;display:flex;align-items:center;justify-content:center;min-height:48px}
.pay-wall .pay-badge img.pay-logo{height:26px;width:auto;max-width:96px;display:block}
.rr-crown-img{height:42px;width:auto;display:block}
.footer-pay{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.footer-pay .fpay-img{height:22px;width:auto;background:#fff;border-radius:5px;padding:4px 7px}
.footer-trust{display:flex;flex-wrap:wrap;gap:18px;align-items:center;margin-top:18px;opacity:.92}
.footer-trust .ftrust-img{height:34px;width:auto}
.footer-trust .ftrust-18{height:40px}

/* pros & cons */
.proscons{display:grid;gap:18px;grid-template-columns:1fr;margin-top:28px}
@media(min-width:780px){.proscons{grid-template-columns:1fr 1fr}}
.pc-col{border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:24px 26px;background:rgba(255,255,255,.02)}
.pc-pros{border-color:rgba(70,200,120,.35)}
.pc-cons{border-color:rgba(245,180,60,.35)}
.pc-col h3{display:flex;align-items:center;gap:10px;font-size:20px;margin:0 0 14px}
.pc-pros h3 span{color:#4fd6a0}.pc-cons h3 span{color:#f2c63d}
.pc-col ul{list-style:none;margin:0;padding:0;display:grid;gap:11px}
.pc-col li{position:relative;padding-left:24px;color:#cdc4d8;font-size:15px;line-height:1.5}
.pc-pros li::before{content:"✓";position:absolute;left:0;color:#4fd6a0;font-weight:800}
.pc-cons li::before{content:"•";position:absolute;left:2px;color:#f2c63d;font-weight:800}

/* ========================================================================
   EEAT editorial byline + freshness (overview)
   ======================================================================== */
.editorial-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 14px; margin-top: 18px;
}
.editorial-meta > span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.84rem; color: var(--text-mute);
  padding: 6px 13px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(26,20,38,0.55);
}
.editorial-meta .ed-byline strong { color: var(--gold-2); font-weight: 600; }
.editorial-meta .ed-byline::before { content: "✶"; color: var(--gold); }
.editorial-meta .ed-method::before { content: "🧪"; }
.editorial-meta .ed-reviewed { color: var(--text-soft); }
.editorial-meta .ed-reviewed::before { content: "🗓"; }
.editorial-meta .ed-reviewed time { color: var(--gold-2); font-weight: 600; }

/* ========================================================================
   OFFICIAL SITE / VERSION-NUMBER section
   ======================================================================== */
.official-card {
  position: relative;
  background: linear-gradient(165deg, var(--purple) 0%, var(--bg-3) 100%);
  border: 1px solid rgba(212,175,55,0.4); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 46px 42px;
}
.official-card > h2 { font-size: clamp(1.55rem, 3.2vw, 2.35rem); margin: 8px 0 6px; }
.official-card .kicker { margin-bottom: 6px; }
.official-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 32px; align-items: start; }
.official-copy p { color: var(--text-soft); font-size: 1rem; margin-bottom: 16px; }
.official-copy p strong { color: var(--gold-2); font-weight: 600; }
.official-cta { margin-top: 22px; }
.official-cta .btn { margin-bottom: 8px; }
.official-cta .cta-micro { display: block; }

.official-aside {
  background: rgba(11,10,15,0.5); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
}
.official-aside h3 { font-size: 1.1rem; margin-bottom: 14px; color: var(--text); }
.num-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.num-chips li {
  font-size: 0.8rem; font-weight: 600; color: var(--gold-2);
  padding: 6px 12px; border: 1px solid rgba(212,175,55,0.4); border-radius: 999px;
  background: rgba(212,175,55,0.08); white-space: nowrap;
}
.num-note { font-size: 0.85rem; color: var(--text-mute); }

/* ========================================================================
   LOGIN section
   ======================================================================== */
.login-card {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 42px 38px; max-width: 880px; margin: 0 auto;
}
.login-card .kicker { margin-bottom: 8px; }
.login-card h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: 12px; }
.login-card .lead { margin-bottom: 22px; }
.login-steps { list-style: none; counter-reset: lstep; display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.login-steps > li {
  position: relative; counter-increment: lstep; padding: 14px 18px 14px 60px;
  background: rgba(11,10,15,0.4); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  color: var(--text-soft); font-size: 0.97rem;
}
.login-steps > li::before {
  content: counter(lstep); position: absolute; left: 14px; top: 12px;
  display: grid; place-items: center; width: 32px; height: 32px;
  font-family: var(--serif); font-weight: 800; font-size: 0.95rem; color: var(--gold-2);
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.4); border-radius: 10px;
}
.login-steps > li strong { color: var(--text); font-weight: 600; }
.login-help { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 20px; }
.login-help strong { color: var(--gold-2); font-weight: 600; }
.login-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }

.pokies-titles { margin-top: 14px; }
.pokies-titles strong { color: var(--gold-2); font-weight: 600; }

@media (max-width: 860px) {
  .official-card, .login-card { padding: 32px 22px; }
  .official-grid { grid-template-columns: 1fr; gap: 24px; }
  .login-cta .btn { width: 100%; }
}


/* ===== GAP-FILL ADDITIVE UTILITIES (additive only; existing rules untouched) ===== */
.stat-band{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:28px}
.stat-band .ov-item{text-align:center;padding:22px 14px}
.stat-num{font-family:'Playfair Display',serif;font-size:2.6rem;line-height:1;color:#e9c46a;display:block}
.stat-label{font-size:.82rem;letter-spacing:.06em;text-transform:uppercase;color:#b9b3a7;margin-top:8px;display:block}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
.review-card{background:rgba(255,255,255,.03);border:1px solid rgba(233,196,106,.18);border-radius:14px;padding:22px}
.review-stars{color:#e9c46a;letter-spacing:2px;font-size:1.05rem}
.review-name{font-weight:600;margin-top:10px}
.review-meta{font-size:.78rem;color:#b9b3a7}
.review-body{margin-top:10px;font-size:.95rem;line-height:1.55}
.seal-row{display:flex;flex-wrap:wrap;gap:24px;align-items:flex-start;justify-content:center;margin-top:28px}
.seal-row figure{margin:0;width:200px;text-align:center}
.seal-row .seal-card{background:#fff;border-radius:14px;padding:20px 18px;height:104px;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 22px rgba(0,0,0,.35)}
.seal-row .seal-card img{max-height:60px;max-width:150px;width:auto;object-fit:contain}
.seal-row figcaption{font-size:.76rem;color:#b9b3a7;margin-top:12px;line-height:1.4}
.payout-table,.cmp-table{width:100%;border-collapse:collapse;margin-top:22px;font-size:.95rem}
.payout-table th,.payout-table td,.cmp-table th,.cmp-table td{border:1px solid rgba(233,196,106,.18);padding:12px 14px;text-align:left}
.payout-table th,.cmp-table th{background:rgba(233,196,106,.08);font-weight:600;color:#e9c46a}
.cmp-table .yes{color:#7bd88f}.cmp-table .no{color:#e07a7a}
.jackpot-list{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
.jackpot-card{background:rgba(255,255,255,.03);border:1px solid rgba(233,196,106,.18);border-radius:12px;padding:18px}
.jackpot-card .jp-amt{font-family:'Playfair Display',serif;color:#e9c46a;font-size:1.5rem;display:block;margin-bottom:6px}
.state-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:22px}
.state-grid .ov-item{display:flex;justify-content:space-between;align-items:center;padding:14px 18px}
.nodep-callout{background:linear-gradient(135deg,rgba(233,196,106,.14),rgba(233,196,106,.04));border:1px solid rgba(233,196,106,.4);border-radius:16px;padding:28px;margin:0 auto;text-align:center;max-width:760px}
.nodep-code{display:inline-block;font-family:'Inter',monospace;letter-spacing:3px;font-weight:700;font-size:1.4rem;color:#e9c46a;border:1px dashed #e9c46a;border-radius:10px;padding:10px 22px;margin:14px 0}
@media(max-width:780px){.stat-band{grid-template-columns:repeat(2,1fr)}.review-grid,.jackpot-list{grid-template-columns:1fr}.state-grid{grid-template-columns:1fr}}
