/* ================================================================
   SCREAM CASINO AUSTRALIA — MAIN STYLESHEET
   Brand: Hot Pink #FF1493 | Lime #AAFF00 | Navy #0A0F28
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── 1. VARIABLES ── */
:root {
  --pink: #FF1493;
  --pink-l: #FF5BB8;
  --pink-d: #CC0070;
  --pink-glow: rgba(255, 20, 147, 0.35);
  --green: #AAFF00;
  --green-l: #CCFF55;
  --green-d: #80CC00;
  --green-glow: rgba(170, 255, 0, 0.35);
  --navy: #0A0F28;
  --navy2: #0E1430;
  --navy3: #131938;
  --navy4: #1A2248;
  --navy5: #232D5E;
  --white: #FFFFFF;
  --text: #CDD5EE;
  --muted: #7A87B0;
  --border: rgba(255, 255, 255, 0.08);
  --b-pink: rgba(255, 20, 147, 0.28);
  --b-green: rgba(170, 255, 0, 0.28);
  --r: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  --glow-pink: 0 0 32px rgba(255, 20, 147, 0.45);
  --glow-green: 0 0 32px rgba(170, 255, 0, 0.4);
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
  --maxw: 1200px;
  --hh: 72px;
}

/* ── 2. RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: var(--fb);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 9999;
  background: var(--pink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-nav:focus { top: 0; }

/* ── FOCUS VISIBLE ── */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── MIN TOUCH TARGETS (WCAG 2.5.5) ── */
a, button, [role="button"], input, select, textarea { min-height: 44px; }
.nav-links a, .breadcrumb a, .bcl a, .f-tag { min-height: unset; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── PRINT ── */
@media print {
  .site-header, .mob-nav, .float-cta, .nav-burger { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

img,
svg {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit
}

/* ── 3. TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fh);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .01em;
  color: var(--white);
  text-transform: uppercase
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem)
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem)
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem)
}

h4 {
  font-size: 1.15rem
}

p {
  margin-bottom: 1rem;
  color: var(--text)
}

p:last-child {
  margin-bottom: 0
}

.neon-pink {
  color: var(--pink);
  text-shadow: 0 0 20px var(--pink-glow), 0 0 60px var(--pink-glow)
}

.neon-green {
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow), 0 0 60px var(--green-glow)
}

/* ── 4. LAYOUT ── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 80px 0
}

.section-sm {
  padding: 48px 0
}

.sec-dark {
  background: var(--navy2)
}

.sec-darker {
  background: var(--navy3)
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .25s ease
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  box-shadow: var(--glow-pink)
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(255, 20, 147, .65)
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: var(--navy);
  box-shadow: var(--glow-green)
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(170, 255, 0, .6)
}

.btn-outline {
  border: 2px solid var(--b-pink);
  color: var(--pink)
}

.btn-outline:hover {
  border-color: var(--pink);
  background: rgba(255, 20, 147, .08)
}

.btn-ghost {
  color: #fff;
  border: 2px solid var(--border)
}

.btn-ghost:hover {
  border-color: #fff
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.2rem
}

.btn-sm {
  padding: 10px 20px;
  font-size: .88rem
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px
}

/* ── 6. SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 40, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--hh)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hh);
  gap: 16px
}

.nav-logo img {
  height: 42px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: var(--border)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.nav-tracker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  border-radius: 8px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all .25s;
  box-shadow: var(--glow-pink);
  animation: pulse-p 3s infinite
}

.nav-tracker:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(255, 20, 147, .7)
}

@keyframes pulse-p {

  0%,
  100% {
    box-shadow: var(--glow-pink)
  }

  50% {
    box-shadow: 0 0 55px rgba(255, 20, 147, .7)
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.4s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  background: var(--border);
  justify-content: center;
  align-items: center
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all .3s
}

.mob-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: var(--hh) 0 0 0;
  background: var(--navy2);
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
  gap: 6px;
  border-top: 1px solid var(--border)
}

.mob-nav a {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  transition: all .2s
}

.mob-nav a:hover {
  color: #fff;
  border-color: var(--b-pink);
  background: rgba(255, 20, 147, .06)
}

.mob-nav .mob-cta {
  margin-top: 8px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  border-radius: 10px;
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase
}

.mob-nav.open {
  display: flex
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
  opacity: 0
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ── 7. FLOATING MOBILE CTA ── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy3);
  border-top: 1px solid var(--b-pink);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px
}

.float-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .04em
}

.flt-play {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  box-shadow: var(--glow-pink)
}

.flt-reg {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: var(--navy)
}

/* ── 8. FOOTER ── */
.site-footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border)
}

.footer-brand p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.72;
  max-width: 280px;
  margin-top: 16px
}

.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap
}

.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--navy4);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .72rem;
  color: var(--muted)
}

.footer-col h5 {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 18px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col a {
  color: var(--muted);
  font-size: .875rem;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--pink)
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  flex-wrap: wrap
}

.footer-legal {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px
}

.rg-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.rg-badge {
  padding: 7px 14px;
  background: var(--navy4);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap
}

/* ── 9. SECTION HEADS ── */
.sec-head {
  text-align: center;
  margin-bottom: 48px
}

.sec-head .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 20, 147, .1);
  border: 1px solid var(--b-pink);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px
}

.sec-head .tag-g {
  background: rgba(170, 255, 0, .1);
  border-color: var(--b-green);
  color: var(--green)
}

.sec-head h2 {
  margin-bottom: 12px
}

.sec-head p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto
}

.sec-head-l {
  text-align: left
}

.sec-head-l p {
  margin-left: 0
}

/* ── 10. HOME HERO ── */
.home-hero {
  position: relative;
  min-height: 93vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 65% 40%, rgba(255, 20, 147, .13) 0%, transparent 55%), radial-gradient(ellipse at 10% 80%, rgba(170, 255, 0, .08) 0%, transparent 50%), var(--navy)
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

.hh-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%
}

.hh-text {
  padding: 64px 0
}

.hh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(170, 255, 0, .1);
  border: 1px solid var(--b-green);
  border-radius: 24px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 22px
}

.hh-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.04;
  margin-bottom: 20px
}

.hh-title .t-pink {
  color: var(--pink)
}

.hh-title .t-green {
  color: var(--green)
}

.hh-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.72
}

.hh-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px
}

.hh-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted)
}

.trust-item .ti {
  color: var(--green)
}

.hh-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.hh-visual img {
  max-height: 580px;
  width: auto;
  filter: drop-shadow(0 0 50px rgba(255, 20, 147, .45));
  animation: float 4s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

/* ── 11. STATS TICKER ── */
.stats-band {
  background: var(--navy3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0
}

.sb-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center
}

.sb-item {
  padding: 8px 24px;
  position: relative
}

.sb-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border)
}

.sb-num {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px
}

.sb-lbl {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em
}

/* ── 12. GAME CARDS ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.game-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--b-pink);
  box-shadow: 0 14px 45px rgba(255, 20, 147, .15)
}

.gc-thumb {
  aspect-ratio: 4/3;
  background: var(--navy4);
  overflow: hidden;
  position: relative
}

.gc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em
}

.badge-hot {
  background: var(--pink);
  color: #fff
}

.badge-new {
  background: var(--green);
  color: var(--navy)
}

.badge-jp {
  background: #F59E0B;
  color: var(--navy)
}

.gc-body {
  padding: 16px
}

.gc-name {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px
}

.gc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.gc-prov {
  font-size: .75rem;
  color: var(--muted)
}

.gc-rtp {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600
}

/* ── 13. BREADCRUMB ── */
.breadcrumb {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  padding: 13px 0
}

.bcl {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.bcl li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem
}

.bcl a {
  color: var(--muted);
  transition: color .2s
}

.bcl a:hover {
  color: var(--pink)
}

.bcl .sep {
  color: var(--muted);
  font-size: .72rem
}

.bcl .cur {
  color: #fff
}

/* ── 14. PAGE HERO (inner pages) ── */
.page-hero {
  padding: 56px 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(255, 20, 147, .1) 0%, transparent 55%), var(--navy);
  position: relative;
  overflow: hidden
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent)
}

.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center
}

.ph-text h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 14px
}

.ph-text p {
  color: var(--muted);
  margin-bottom: 26px
}

.ph-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.ph-img {
  display: flex;
  justify-content: flex-end;
  align-items: center
}

.ph-img img {
  max-height: 320px;
  border-radius: var(--r-lg);
  width: 100%;
  object-fit: cover
}

/* ── 15. DATA TABLES ── */
.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid var(--border)
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px
}

thead {
  background: var(--navy4)
}

thead th {
  padding: 15px 20px;
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s
}

tbody tr:hover {
  background: var(--navy4)
}

tbody tr:last-child {
  border-bottom: none
}

td {
  padding: 14px 20px;
  font-size: .88rem;
  color: var(--text);
  vertical-align: middle;
  white-space: nowrap
}

td strong {
  color: #fff
}

.td-yes {
  color: var(--green)
}

.td-no {
  color: var(--muted)
}

.td-p {
  color: var(--pink);
  font-weight: 600
}

.td-g {
  color: var(--green);
  font-weight: 600
}

.td-hl {
  background: rgba(255, 20, 147, .05) !important
}

.td-n {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700
}

.scream-row {
  background: rgba(255, 20, 147, .05) !important
}

.scream-row td {
  color: #fff
}

.scream-marker {
  display: inline-flex;
  padding: 2px 8px;
  background: var(--pink);
  color: #fff;
  border-radius: 12px;
  font-size: .68rem;
  font-family: var(--fh);
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 6px
}

/* ── 16. VERTICAL BAR CHART ── */
.bar-chart {
  padding: 32px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg)
}

.bc-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 28px
}

.bc-inner {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 200px
}

.bc-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end
}

.bc-track {
  width: 100%;
  background: var(--navy4);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.bc-fill {
  width: 100%;
  height: 0%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--pink), var(--pink-d));
  transition: height 1.2s cubic-bezier(.22, 1, .36, 1)
}

.bc-fill.g {
  background: linear-gradient(180deg, var(--green), var(--green-d))
}

.bc-val {
  font-size: .73rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap
}

.bc-lbl {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap
}

/* ── 17. HORIZONTAL BAR CHART ── */
.hbar {
  padding: 32px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg)
}

.hb-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 24px
}

.hb-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.hb-row {
  display: flex;
  align-items: center;
  gap: 14px
}

.hb-lbl {
  width: 145px;
  flex-shrink: 0;
  font-size: .83rem;
  color: var(--text);
  text-align: right
}

.hb-track {
  flex: 1;
  height: 28px;
  background: var(--navy4);
  border-radius: 6px;
  overflow: hidden
}

.hb-fill {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--pink), var(--pink-d));
  transition: width 1.2s cubic-bezier(.22, 1, .36, 1)
}

.hb-fill.g {
  background: linear-gradient(90deg, var(--green), var(--green-d))
}

.hb-fill.m {
  background: linear-gradient(90deg, var(--pink), var(--green))
}

.hb-val {
  width: 55px;
  flex-shrink: 0;
  font-size: .83rem;
  font-weight: 600;
  color: var(--green)
}

/* ── 18. DONUT CHART ── */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg)
}

.dw-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 24px
}

.donut-svg {
  flex-shrink: 0
}

.d-legend {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.d-leg {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--text)
}

.d-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0
}

.d-pct {
  margin-left: auto;
  font-weight: 600;
  color: #fff;
  padding-left: 16px
}

/* ── 19. CHARTS ROW ── */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

/* ── 20. FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto
}

.faq-item {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: var(--b-pink)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px
}

.faq-q span {
  font-weight: 600;
  color: #fff;
  font-size: .94rem
}

.faq-ic {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--navy4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
  transition: all .3s;
  font-weight: 300
}

.faq-item.open .faq-ic {
  background: var(--pink);
  color: #fff;
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.72
}

.faq-item.open .faq-a {
  display: block
}

/* ── 21. STARS ── */
.stars {
  display: inline-flex;
  gap: 2px
}

.s-full {
  color: #F59E0B
}

.s-empty {
  color: var(--navy5)
}

/* ── 22. REVIEW CARDS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.rev-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .2s
}

.rev-card:hover {
  border-color: var(--b-pink)
}

.rev-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px
}

.rev-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy4);
  flex-shrink: 0;
  overflow: hidden
}

.rev-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rev-name {
  font-weight: 600;
  color: #fff;
  font-size: .88rem
}

.rev-date {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px
}

.rev-txt {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.62
}

/* ── 23. AUTHOR CARD ── */
.author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-top: 48px
}

.auth-av {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--b-pink)
}

.auth-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.auth-role {
  font-size: .72rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px
}

.auth-name {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px
}

.auth-bio {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.72
}

.auth-creds {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.auth-tag {
  padding: 4px 12px;
  background: var(--navy4);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .72rem;
  color: var(--muted)
}

/* ── 24. SEO CONTENT ── */
.seo-content {
  max-width: 860px;
  margin: 0 auto
}

.seo-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-top: 36px
}

.seo-content h2:first-child {
  margin-top: 0
}

.seo-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--pink-l)
}

.seo-content p {
  color: var(--muted);
  line-height: 1.8
}

.seo-content a {
  color: var(--pink)
}

.seo-content a:hover {
  text-decoration: underline
}

.seo-content ul {
  margin: 16px 0 22px 0;
  padding-left: 20px;
  list-style: disc
}

.seo-content ul li {
  color: var(--muted);
  margin-bottom: 8px
}

/* ── 25. SIDEBAR LAYOUT (Pokies) ── */
.layout-sb {
  display: grid;
  grid-template-columns: 258px 1fr;
  gap: 32px;
  align-items: start
}

.filter-sidebar {
  position: sticky;
  top: calc(var(--hh) + 16px)
}

.filter-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px
}

.filter-card h4 {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 14px
}

.f-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.f-tag {
  padding: 5px 13px;
  background: var(--navy4);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .78rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s
}

.f-tag:hover,
.f-tag.active {
  border-color: var(--b-pink);
  color: var(--pink);
  background: rgba(255, 20, 147, .08)
}

.f-tag.ga.active {
  border-color: var(--b-green);
  color: var(--green);
  background: rgba(170, 255, 0, .08)
}

.sb-stats {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ss-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-size: .84rem
}

.ss-row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.ss-k {
  color: var(--muted)
}

.ss-v {
  font-weight: 600;
  color: var(--green)
}

/* ── 26. RADIAL PROGRESS ── */
.rad-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px
}

.rad-svg circle {
  fill: none;
  stroke-width: 8
}

.rad-bg {
  stroke: var(--navy4)
}

.rad-fg {
  stroke-linecap: round;
  transition: stroke-dasharray 1.2s cubic-bezier(.22, 1, .36, 1)
}

.rad-lbl {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff
}

.rad-sub {
  font-size: .72rem;
  color: var(--muted);
  text-align: center
}

/* ── 27. ZIGZAG / CINEMATIC (Live Casino) ── */
.zig-sec {
  padding: 64px 0;
  border-bottom: 1px solid var(--border)
}

.zig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.zig-row.rev {
  direction: rtl
}

.zig-row.rev>* {
  direction: ltr
}

.zig-img {
  border-radius: var(--r-xl);
  overflow: hidden
}

.zig-img img {
  width: 100%;
  height: 340px;
  object-fit: cover
}

.zig-txt .tag-wrap {
  margin-bottom: 14px
}

.zig-txt h2 {
  margin-bottom: 14px
}

.zig-txt p {
  color: var(--muted);
  margin-bottom: 22px
}

.zig-feats {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.zf-item {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.zf-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 20, 147, .1);
  border: 1px solid var(--b-pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem
}

.zf-txt h5 {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2px
}

.zf-txt p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0
}

/* ── 28. BONUS CARDS ── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.bon-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.bon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border)
}

.bon-card:hover {
  transform: translateY(-4px)
}

.bon-card.feat {
  border-color: var(--b-pink);
  background: linear-gradient(135deg, rgba(255, 20, 147, .07) 0%, var(--navy3) 55%);
  box-shadow: var(--glow-pink)
}

.bon-card.feat::before {
  background: linear-gradient(90deg, var(--pink), var(--pink-l))
}

.bon-card.grn {
  border-color: var(--b-green)
}

.bon-card.grn::before {
  background: linear-gradient(90deg, var(--green), var(--green-l))
}

.bon-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 20, 147, .12);
  border: 1px solid var(--b-pink);
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px
}

.bon-badge.gb {
  background: rgba(170, 255, 0, .1);
  border-color: var(--b-green);
  color: var(--green)
}

.bon-amt {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px
}

.bon-amt.pink {
  color: var(--pink)
}

.bon-sub {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 22px
}

.bon-feats {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px
}

.bf-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .83rem;
  color: var(--text)
}

.bf-ic {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px
}

/* ── 29. PAYMENT CARDS ── */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.pay-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
  transition: all .3s
}

.pay-card:hover {
  border-color: var(--b-green);
  transform: translateY(-2px)
}

.pay-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: var(--navy4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem
}

.pay-name {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px
}

.pay-detail {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.5
}

.pay-instant {
  display: inline-block;
  padding: 3px 9px;
  background: rgba(170, 255, 0, .1);
  border: 1px solid var(--b-green);
  border-radius: 12px;
  font-size: .68rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 8px
}

/* ── 30. APP SHOWCASE ── */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center
}

.app-phone {
  display: flex;
  justify-content: center;
  align-items: center
}

.app-phone img {
  height: 520px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(255, 20, 147, .35))
}

.app-feats {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.app-feat {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  transition: border-color .2s
}

.app-feat:hover {
  border-color: var(--b-pink)
}

.app-feat-ic {
  font-size: 1.4rem;
  margin-bottom: 8px
}

.app-feat h4 {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px
}

.app-feat p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0
}

.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--navy4);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .2s
}

.store-btn:hover {
  border-color: var(--b-green)
}

.store-ic {
  font-size: 1.4rem
}

.store-lbl small {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase
}

.store-lbl strong {
  display: block;
  font-size: .88rem;
  color: #fff
}

.ratings-row {
  display: flex;
  gap: 24px;
  margin-bottom: 28px
}

.app-rating .score {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1
}

.app-rating .plat {
  font-size: .73rem;
  color: var(--muted);
  margin-top: 4px
}

/* ── 31. MAGAZINE LAYOUT (Roulette) ── */
.mag-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--navy2)
}

.mag-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  position: absolute;
  inset: 0
}

.mag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 35%, transparent 75%);
  display: flex;
  align-items: center
}

.mag-hero-txt {
  padding: 0 40px;
  max-width: 580px
}

.mag-hero-txt h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 16px
}

.mag-hero-txt p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px
}

.mag-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start
}

.mag-aside {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.aside-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px
}

.aside-card h4 {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px
}

.odds-tbl {
  width: 100%;
  font-size: .8rem
}

.odds-tbl td {
  padding: 7px 0;
  border-bottom: 1px solid var(--border)
}

.odds-tbl tr:last-child td {
  border-bottom: none
}

.odds-tbl td:last-child {
  text-align: right;
  color: var(--green);
  font-weight: 600
}

/* ── 32. ICON/NUMBER CARDS ── */
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.ic-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: all .3s;
  text-align: center
}

.ic-card:hover {
  border-color: var(--b-pink);
  transform: translateY(-3px)
}

.ic-ic {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px
}

.ic-card h4 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px
}

.ic-card p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0
}

.num-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .3s
}

.num-card:hover {
  border-color: var(--b-green)
}

.nc-num {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px
}

.nc-lbl {
  font-size: .83rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em
}

.nc-sub {
  font-size: .73rem;
  color: var(--muted);
  margin-top: 6px
}

/* ── 33. TABS ── */
.tabs-nav {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto
}

.tab-btn {
  padding: 12px 24px;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
  white-space: nowrap
}

.tab-btn:hover {
  color: #fff
}

.tab-btn.active {
  color: var(--pink);
  border-bottom-color: var(--pink)
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block
}

/* ── 34. SCORE BAR ── */
.sco-bar {
  display: flex;
  align-items: center;
  gap: 10px
}

.sco-track {
  flex: 1;
  height: 8px;
  background: var(--navy4);
  border-radius: 4px;
  overflow: hidden
}

.sco-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-d));
  transition: width 1.2s cubic-bezier(.22, 1, .36, 1);
  width: 0%
}

.sco-val {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  width: 36px
}

/* ── 35. RESPONSIBLE GAMBLING ── */
.rg-alert {
  background: rgba(255, 20, 147, .07);
  border: 1px solid var(--b-pink);
  border-left: 4px solid var(--pink);
  border-radius: var(--r);
  padding: 22px 26px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.rg-ic {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px
}

.rg-txt h4 {
  color: var(--pink);
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px
}

.rg-txt p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0
}

.rg-txt a {
  color: var(--pink)
}

/* ── 36. AUTH ── */
.auth-wrap {
  min-height: calc(100vh - var(--hh));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 20, 147, .08) 0%, transparent 60%), var(--navy)
}

.auth-box {
  width: 100%;
  max-width: 440px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 38px;
  box-shadow: var(--shadow)
}

.auth-box-w {
  max-width: 600px
}

.auth-logo {
  text-align: center;
  margin-bottom: 30px
}

.auth-logo img {
  height: 44px;
  margin: 0 auto
}

.auth-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 6px
}

.auth-sub {
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 30px
}

.fg {
  margin-bottom: 18px
}

.fg label {
  display: block;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px
}

.fi {
  width: 100%;
  padding: 13px 15px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: #fff;
  font-size: .88rem;
  transition: border-color .2s;
  outline: none
}

.fi:focus {
  border-color: var(--pink);
  background: var(--navy4)
}

.fi::placeholder {
  color: var(--muted)
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.pw-wr {
  position: relative
}

.pw-wr .fi {
  padding-right: 50px
}

.pw-tog {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .78rem;
  transition: color .2s
}

.pw-tog:hover {
  color: #fff
}

.fchk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px
}

.fchk input {
  margin-top: 2px;
  accent-color: var(--pink)
}

.fchk label {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5
}

.fchk a {
  color: var(--pink)
}

.fi-sel {
  width: 100%;
  padding: 13px 40px 13px 15px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: #fff;
  font-size: .88rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%237A87B0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.f-hint {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 5px
}

.auth-div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0
}

.auth-div::before,
.auth-div::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.auth-div span {
  font-size: .78rem;
  color: var(--muted)
}

.auth-foot {
  text-align: center;
  margin-top: 22px;
  font-size: .84rem;
  color: var(--muted)
}

.auth-foot a {
  color: var(--pink)
}

/* Reg steps */
.reg-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 34px
}

.rs-item {
  display: flex;
  align-items: center
}

.rs-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy4);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 900;
  color: var(--muted);
  transition: all .3s
}

.rs-dot.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink)
}

.rs-dot.done {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy)
}

.rs-line {
  width: 46px;
  height: 2px;
  background: var(--border);
  margin: 0 4px
}

.rs-line.done {
  background: var(--green)
}

.step-p {
  display: none
}

.step-p.active {
  display: block
}

.bp-box {
  background: var(--navy4);
  border: 1px solid var(--b-pink);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
  margin-bottom: 22px
}

.bp-amt {
  font-family: var(--fh);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--pink)
}

.bp-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px
}

/* ── 37. SITEMAP ── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.sm-sec h3 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--b-pink)
}

.sm-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.sm-list a {
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px
}

.sm-list a::before {
  content: '→';
  color: var(--navy5);
  font-size: .78rem;
  transition: color .2s
}

.sm-list a:hover {
  color: #fff
}

.sm-list a:hover::before {
  color: var(--pink)
}

/* ── 38. MISC ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: var(--navy4);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500
}

.pill.p {
  background: rgba(255, 20, 147, .1);
  border-color: var(--b-pink);
  color: var(--pink)
}

.pill.g {
  background: rgba(170, 255, 0, .1);
  border-color: var(--b-green);
  color: var(--green)
}

.tag-small {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid
}

.tag-p {
  background: rgba(255, 20, 147, .1);
  border-color: var(--b-pink);
  color: var(--pink)
}

.tag-g {
  background: rgba(170, 255, 0, .1);
  border-color: var(--b-green);
  color: var(--green)
}

.info-box {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px
}

.info-box h4 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px
}

.info-box p {
  font-size: .86rem;
  color: var(--muted)
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.cl-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--text)
}

.cl-ic {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px
}

/* ── 38b. BONUS TIMELINE ── */
.bonus-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative
}

.bonus-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--green));
  border-radius: 2px
}

.btl-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  position: relative
}

.btl-item:last-child {
  padding-bottom: 0
}

.btl-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--glow-pink)
}

.btl-body {
  padding-top: 8px
}

.btl-body h4 {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px
}

.btl-body p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.72
}

/* ── 39. RESPONSIVE 1024px ── */
@media(max-width:1024px) {
  .nav-links {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .nav-actions .btn-ghost {
    display: none
  }

  .hh-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hh-visual {
    display: flex;
    margin-top: 20px
  }

  .hh-visual img {
    max-height: 400px
  }

  .hh-cta {
    justify-content: center
  }

  .hh-trust {
    justify-content: center
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .bonus-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
  }

  .pay-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .layout-sb {
    grid-template-columns: 1fr
  }

  .filter-sidebar {
    position: static
  }

  .app-showcase {
    grid-template-columns: 1fr
  }

  .app-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .app-phone {
    order: -1
  }

  .app-phone img {
    height: 360px
  }

  .zig-row {
    gap: 40px
  }

  .mag-body {
    grid-template-columns: 1fr
  }

  .mag-aside {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .charts-row {
    grid-template-columns: 1fr
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .g3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .sb-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .sb-item:nth-child(2)::after {
    display: none
  }
}

/* ── 40. RESPONSIVE 768px ── */
@media(max-width:768px) {
  :root {
    --hh: 64px
  }

  html,
  body {
    overflow-x: hidden
  }

  h1 {
    font-size: 2.4rem
  }

  h2 {
    font-size: 1.75rem
  }

  .section {
    padding: 52px 0
  }

  .container {
    padding: 0 16px
  }

  .nav-logo img {
    height: 34px
  }

  .nav-tracker {
    padding: 8px 14px;
    font-size: .83rem
  }

  .float-cta {
    display: flex
  }

  body {
    padding-bottom: 70px
  }

  .home-hero {
    min-height: auto;
    padding: 56px 0
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-brand p {
    max-width: 100%
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }

  .pay-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ph-grid {
    grid-template-columns: 1fr
  }

  .ph-img {
    display: none
  }

  .zig-row,
  .zig-row.rev {
    grid-template-columns: 1fr;
    direction: ltr
  }

  .zig-img {
    display: none
  }

  .author-card {
    flex-direction: column;
    gap: 16px
  }

  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .tbl-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    border-left: none;
    border-right: none
  }

  .hb-lbl {
    width: 100px;
    font-size: .76rem
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

  .g3 {
    grid-template-columns: 1fr
  }

  .mag-hero {
    height: 280px
  }

  .mag-hero-txt {
    padding: 0 20px
  }

  .auth-box {
    padding: 30px 18px
  }

  .input-row {
    grid-template-columns: 1fr
  }

  .app-feats {
    grid-template-columns: 1fr
  }

  .bonus-cards {
    max-width: 100%
  }

  .mag-body {
    grid-template-columns: 1fr
  }

  .mag-aside {
    grid-template-columns: 1fr
  }
}

/* ── 41. RESPONSIVE 480px ── */
@media(max-width:480px) {
  h1 {
    font-size: 2rem
  }

  h2 {
    font-size: 1.55rem
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .pay-grid {
    grid-template-columns: 1fr 1fr
  }

  .sb-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .sitemap-grid {
    grid-template-columns: 1fr
  }

  .hb-row {
    flex-wrap: wrap
  }

  .hb-lbl {
    width: 100%;
    text-align: left
  }

  .donut-wrap {
    flex-direction: column
  }

  .bc-inner {
    height: 160px
  }

  .auth-box {
    padding: 22px 14px
  }

  .btn-lg {
    padding: 14px 22px;
    font-size: 1rem
  }

  .g4 {
    grid-template-columns: 1fr 1fr
  }

  .charts-row {
    grid-template-columns: 1fr
  }
}