/* ============================================================
   RocketPlay Casino Australia — Microsite Stylesheet
   Design: Premium dark casino / fintech
   ============================================================ */

/* Fonts loaded via <link> in HTML head — see index.html, faq.html, responsible-gambling.html */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #07070F;
  --surface:     #0E0E1A;
  --card:        #13131E;
  --card-hover:  #191927;
  --border:      #22223A;
  --border-soft: #1C1C30;

  --gold:        #E8A020;
  --gold-light:  #F5B733;
  --gold-dim:    rgba(232,160,32,0.12);
  --gold-glow:   0 0 24px rgba(232,160,32,0.18);

  --text:        #E8E8F2;
  --text-muted:  #7878A0;
  --text-dim:    #4A4A68;

  --green:       #34D399;
  --red:         #F87171;
  --blue:        #60A5FA;

  --font-head:   'Syne', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-sm:   8px;

  --max-w:       1440px;
  --section-gap: 80px;

  --z-header:    50;
  --z-sticky:    40;
  --z-overlay:   30;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; color: #fff; }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); }
h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
p { color: var(--text); line-height: 1.75; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 3.5vw, 60px); }
.section-sm { padding: 48px 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(7,7,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 16px; height: 16px; fill: #000; }
.nav-cta {
  display: none;
  position: relative;
  overflow: hidden;
  animation: casinoFlash 1.4s ease-in-out infinite;
}
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

/* Shimmer sweep */
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: casinoShimmer 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes casinoFlash {
  0%   { transform: scale(1);    background: #E8A020; box-shadow: 0 0 8px  #E8A020, 0 0 20px rgba(232,160,32,0.4); }
  20%  { transform: scale(1.09); background: #FFD700; box-shadow: 0 0 28px #FFD700, 0 0 60px rgba(255,215,0,0.7), 0 0 90px rgba(255,200,0,0.35); }
  40%  { transform: scale(1.04); background: #FF8C00; box-shadow: 0 0 18px #FF8C00, 0 0 40px rgba(255,140,0,0.6); }
  60%  { transform: scale(1.10); background: #FFF200; box-shadow: 0 0 32px #FFF200, 0 0 70px rgba(255,242,0,0.8), 0 0 100px rgba(255,220,0,0.4); }
  80%  { transform: scale(1.04); background: #F5B733; box-shadow: 0 0 16px #F5B733, 0 0 36px rgba(245,183,51,0.5); }
  100% { transform: scale(1);    background: #E8A020; box-shadow: 0 0 8px  #E8A020, 0 0 20px rgba(232,160,32,0.4); }
}

@keyframes casinoShimmer {
  0%   { left: -75%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.nav-cta:hover {
  animation: none;
  background: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 0 0 40px #FFD700, 0 0 80px rgba(255,215,0,0.5);
}
.nav-cta:hover::after { display: none; }
.nav-faq {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: none;
}
@media (min-width: 640px) { .nav-faq { display: inline; } }
.nav-faq:hover { color: var(--gold); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  box-shadow: var(--gold-glow);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(232,160,32,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
}
.btn-sm { padding: 11px 20px; font-size: 0.82rem; min-height: 44px; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Top Banner ─────────────────────────────────────────── */
.bonus-banner-wrap {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 24px;
  overflow: hidden;
}
.bonus-banner-img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.bonus-banner-play-btn {
  position: absolute;
  left: 50%;
  top: 82%;
  transform: translate(-50%, -50%);
  width: 420px;
  max-width: 34%;
  z-index: 10;
  display: block;
  line-height: 0;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.bonus-banner-play-btn img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
}
.bonus-banner-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.04);
  filter: brightness(1.08);
}
@media (max-width: 768px) {
  .bonus-banner-play-btn {
    top: 84%;
    width: 220px;
    max-width: 46%;
  }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,160,32,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(96,165,250,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 360px; gap: 60px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero-badge svg { width: 12px; height: 12px; fill: var(--gold); }
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

/* ── Score Card (Hero aside) ────────────────────────────── */
.score-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.score-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.score-number {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.score-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.score-rows { display: flex; flex-direction: column; gap: 12px; }
.score-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.score-row-label { color: var(--text-muted); }
.score-bar-wrap { display: flex; align-items: center; gap: 8px; }
.score-bar {
  width: 80px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.score-bar-num { font-size: 0.8rem; font-weight: 600; color: var(--gold); width: 24px; text-align: right; }
.score-cta { margin-top: 24px; }

/* ── Verdict Box ────────────────────────────────────────── */
.verdict-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 64px;
}
.verdict-box h2 { margin-bottom: 16px; font-size: 1.3rem; }
.verdict-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 20px; }
.verdict-stat {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.verdict-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 6px; }
.verdict-stat-value { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ── Generic Card ───────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.card:hover { border-color: rgba(232,160,32,0.3); background: var(--card-hover); }

/* ── Bonus Section ──────────────────────────────────────── */
.bonus-hero {
  background: linear-gradient(135deg, var(--card) 0%, rgba(232,160,32,0.06) 100%);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.bonus-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bonus-amount {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  margin: 12px 0;
}
.bonus-subtitle { color: var(--text-muted); font-size: 0.9rem; }
.bonus-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 32px; }
.bonus-step {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.bonus-step-num {
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--gold);
  margin: 0 auto 10px;
}
.bonus-step-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.bonus-step-desc { font-size: 0.8rem; color: var(--text-muted); }
.bonus-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 16px; text-align: center; }

/* ── Pros & Cons ────────────────────────────────────────── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-list, .cons-list { background: var(--card); border-radius: var(--radius-lg); padding: 28px; }
.pros-list { border: 1px solid rgba(52,211,153,0.2); }
.cons-list { border: 1px solid rgba(248,113,113,0.2); }
.list-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-title.green { color: var(--green); }
.list-title.red { color: var(--red); }
.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}
.pro-item:last-child, .con-item:last-child { border-bottom: none; }
.pro-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.con-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ── Payment Grid ───────────────────────────────────────── */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.payment-card:hover { border-color: rgba(232,160,32,0.3); background: var(--card-hover); }
.payment-icon { font-size: 1.6rem; margin-bottom: 8px; }
.payment-name { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.payment-note { font-size: 0.72rem; color: var(--text-dim); }
.payment-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(52,211,153,0.12);
  color: var(--green);
  border-radius: 4px;
  padding: 2px 6px;
  margin-top: 4px;
}

/* ── Tables ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
thead th {
  background: var(--gold-dim);
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border-soft); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--card-hover); }
tbody td { padding: 12px 16px; color: var(--text-muted); vertical-align: middle; }
tbody td:first-child { color: var(--text); font-weight: 500; }
.fast-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(52,211,153,0.12);
  color: var(--green);
  border-radius: 4px;
  padding: 2px 6px;
}

/* ── Providers Grid ─────────────────────────────────────── */
.providers-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.provider-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: default;
}
.provider-chip:hover { border-color: rgba(232,160,32,0.4); color: var(--text); background: var(--card-hover); }

/* ── Pokies Section ─────────────────────────────────────── */
.pokies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.pokie-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.pokie-card-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.pokie-card-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.pokie-card-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.pokie-card-desc { font-size: 0.78rem; color: var(--text-muted); }

/* ── Trust Section ──────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.trust-title { font-weight: 700; font-size: 0.9rem; }
.trust-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] { border-color: rgba(232,160,32,0.3); }
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.2s;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--gold); }
summary::after {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237878A0' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
details[open] summary::after {
  border-color: var(--gold);
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8A020' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.faq-body { padding: 0 20px 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Final Verdict ──────────────────────────────────────── */
.verdict-final {
  background: linear-gradient(135deg, var(--card) 0%, rgba(232,160,32,0.05) 100%);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.verdict-score-big {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.verdict-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.verdict-disclaimer { font-size: 0.72rem; color: var(--text-dim); margin-top: 16px; }

/* ── RG Notice Bar ──────────────────────────────────────── */
.rg-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
}
.rg-bar svg { width: 16px; height: 16px; fill: var(--text-dim); flex-shrink: 0; margin-top: 2px; }
.rg-bar a { font-weight: 600; }

/* ── Section Divider ────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; line-height: 1.65; max-width: 320px; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--text); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--text-muted); }

/* ── Sticky Mobile CTA ──────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(7,7,15,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) { .sticky-mobile-cta { display: flex; } }
.sticky-cta-text { font-size: 0.8rem; color: var(--text-muted); }
.sticky-cta-text strong { display: block; font-size: 0.88rem; color: var(--text); }

/* ── Page Specific: RG / FAQ ─────────────────────────────── */
.page-hero { padding: 60px 0 48px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.page-hero p { color: var(--text-muted); margin-top: 12px; max-width: 600px; font-size: 1rem; }
.content-section { max-width: 780px; }
.content-section h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.3rem; }
.content-section h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1rem; }
.content-section p { margin-bottom: 14px; color: var(--text-muted); font-size: 0.93rem; }
.content-section ul { padding-left: 0; }
.content-section li { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 8px; padding-left: 20px; position: relative; }
.content-section li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── Alert Box ──────────────────────────────────────────── */
.alert {
  background: var(--card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.alert.green { border-left-color: var(--green); }
.alert.red { border-left-color: var(--red); }
.alert strong { color: var(--text); }

/* ── Info Row ───────────────────────────────────────────── */
.info-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.info-row:last-child { border-bottom: none; }
.info-row-label { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; min-width: 140px; padding-top: 2px; }
.info-row-value { font-size: 0.88rem; color: var(--text); }

/* ── Inline CTA Band ────────────────────────────────────── */
.cta-band {
  background: var(--card);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band h3 { font-size: 1.2rem; color: #fff; }
.cta-band p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ── Mobile TOC (homepage) ──────────────────────────────── */
.toc-mobile {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
}
@media (max-width: 767px) { .toc-mobile { display: block; } }
.toc-mobile h4 { margin-bottom: 10px; font-size: 0.75rem; }
.toc-mobile a { display: block; font-size: 0.82rem; color: var(--text-muted); padding: 4px 0; border-bottom: 1px solid var(--border-soft); }
.toc-mobile a:hover { color: var(--gold); }
.toc-mobile a:last-child { border-bottom: none; }

/* ── Utilities ──────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ── Desktop TOC Sidebar ───────────────────────────────── */
.page-layout {
  display: flex;
  align-items: flex-start;
  gap: 44px;
}
.page-main {
  flex: 1;
  min-width: 0;
}
.toc-desktop {
  width: 330px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}
@media (max-width: 1023px) {
  .page-layout { display: block; }
  .toc-desktop { display: none; }
}
.toc-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 12px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.toc-header {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: toc-counter;
}
.toc-list li { counter-increment: toc-counter; }
.toc-link {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 8px 5px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.toc-link::before {
  content: counter(toc-counter) ".";
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  min-width: 16px;
  transition: color 0.15s;
}
.toc-link:hover {
  color: var(--text);
  background: var(--card-hover);
  border-left-color: var(--border);
}
.toc-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-dim);
  font-weight: 600;
}
.toc-link.active::before { color: var(--gold); }

/* ── Focus / A11y ───────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ════════════════════════════════════════════════════════════
   READING & LAYOUT REFINEMENTS
   ════════════════════════════════════════════════════════════ */

/* 1. Paragraph spacing — consecutive <p> tags need breathing room */
main p + p,
.verdict-box p + p { margin-top: 22px; }

/* 2. Section headings — more air between heading and body text */
.section-title { margin-bottom: 28px; }

/* 3. Section label — tighter to heading (they belong together) */
.section-label { margin-bottom: 10px; }

/* 4. More generous section padding for clearer section boundaries */
.section-sm { padding: 64px 0; }

/* 5. Constrain paragraph reading column — full 1080px is too wide for prose */
.section-sm > p,
.verdict-box > p { max-width: 74ch; }

/* 6. Visual separator between main content sections */
main section.section-sm {
  border-top: 1px solid var(--border-soft);
  position: relative;
}

/* Gold accent pip on the section label row */
main section.section-sm .section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
main section.section-sm .section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* 7. Verdict box paragraph spacing */
.verdict-box { padding: 36px 40px; }
.verdict-box > p + p { margin-top: 22px; }

/* 8. Tighter alert spacing relative to surrounding content */
.alert { margin-top: 32px; margin-bottom: 0; }

/* 9. Card paragraph spacing */
.card p + p { margin-top: 12px; }

/* 10. Australia / feature card grid typography */
main .section-sm .card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
}
main .section-sm .card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 11. Wider verdict stat grid on desktop */
.verdict-grid { gap: 12px; margin-top: 28px; }
.verdict-stat { padding: 14px 16px; }
.verdict-stat-value { font-size: 1rem; }

/* 12. Pokie and trust cards — uniform min-height feel */
.pokie-card { padding: 24px 20px; }
.trust-card { padding: 24px; }

/* 13. Section label group spacing before section content */
.section-sm .section-label { display: inline-flex; }

/* 14. Bonus note (small disclaimer text) above paragraph threshold */
.bonus-note { max-width: 74ch; }

/* 15. Better spacing above the comparison table note */
.table-wrap + .bonus-note { margin-top: 14px; }

/* 16. Providers chip list — more air above it */
.providers-grid { margin-top: 8px; gap: 10px; }

/* 17. CTA band — slightly more padding */
.cta-band { padding: 40px 44px; }
.cta-band h3 { font-size: 1.25rem; }

/* 18. Verdict final box — more breathing room */
.verdict-final { padding: 48px 40px; }

/* 19. Footer — better top margin */
.site-footer { margin-top: 80px; }
