/* ============================================================
   $5 DEPOSIT CASINO — NZ Guide
   Dark casino aesthetic · Gold + Pounamu (NZ greenstone) accents
   ============================================================ */

:root {
  /* Core palette */
  --bg:          #0b0e13;
  --bg-2:        #121620;
  --bg-3:        #1a1f2c;
  --surface:     #151a24;
  --surface-2:   #1d2330;
  --line:        #262c3a;
  --line-soft:   #1e2330;

  /* Text */
  --ink:         #f1ede3;
  --ink-2:       #c7c2b3;
  --muted:       #8e8a7e;

  /* Accents */
  --gold:        #d4a34a;
  --gold-bright: #f0c26c;
  --gold-dark:   #a87f2d;
  --pounamu:     #00a676;
  --pounamu-2:   #0c8d6b;

  /* States */
  --ok:          #22c55e;
  --danger:      #ef5252;

  /* Radius & shadow */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 0 rgba(0,0,0,0.3);
  --shadow:    0 4px 14px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.03) inset;
  --shadow-gold: 0 0 0 1px rgba(212,163,74,0.3), 0 8px 28px rgba(212,163,74,0.18);

  /* Type */
  --ff-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* Accessibility */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--gold); color: #000; padding: 8px 14px;
  z-index: 100; border-radius: var(--r-sm); font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* ============= LAYOUT ============= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section {
  padding: 36px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 768px) { .section { padding: 56px 0; } }

.section-head { margin-bottom: 28px; max-width: 720px; }
.section-kicker {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  padding: 5px 10px;
  background: rgba(212,163,74,0.08);
  border: 1px solid rgba(212,163,74,0.25);
  border-radius: 3px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 600px;
}

.gold-accent {
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* ============= HEADER ============= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 14, 19, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px; gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}
.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); }

.primary-nav {
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s;
  opacity: 0;
}
.primary-nav.open {
  max-height: calc(100vh - 70px);
  opacity: 1;
  overflow-y: auto;
}
.primary-nav ul {
  display: flex; flex-direction: column;
  padding: 8px 22px 22px;
}
.primary-nav li a {
  display: block;
  padding: 14px 0;
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
}
.primary-nav li:last-child a { border-bottom: none; }
.primary-nav li a:hover { color: var(--gold); }

.nav-trust {
  padding: 16px 22px;
  border-top: 1px solid var(--line-soft);
}
.trust-pill {
  display: inline-block;
  background: rgba(0,166,118,0.12);
  color: var(--pounamu);
  border: 1px solid rgba(0,166,118,0.3);
  padding: 6px 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px;
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    max-height: none; opacity: 1; overflow: visible;
    background: transparent; border: none;
    display: flex; align-items: center; gap: 20px;
  }
  .primary-nav ul {
    flex-direction: row;
    padding: 0; gap: 4px;
  }
  .primary-nav li a {
    padding: 8px 12px; border: none;
    font-size: 14px;
  }
  .nav-trust {
    padding: 0; border: none;
  }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-glow {
  position: absolute; top: -180px; left: 50%;
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(212,163,74,0.22), rgba(212,163,74,0) 60%);
  transform: translateX(-50%);
  pointer-events: none; z-index: 0;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(0,166,118,0.08) 0, transparent 35%),
    radial-gradient(circle at 88% 70%, rgba(212,163,74,0.08) 0, transparent 35%);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}
.hero-kicker .dot {
  width: 6px; height: 6px; background: var(--pounamu); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,166,118,0.2);
  animation: pulse 2.4s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(34px, 6.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title .hero-sub {
  display: block;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  color: var(--ink-2);
  margin-top: 8px;
  letter-spacing: -0.01em;
  font-style: italic;
}
.lede {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin-top: 24px;
}
.lede .drop-cap {
  font-size: 64px; float: left;
  line-height: 0.9; padding: 6px 12px 0 0;
  font-weight: 700;
  color: var(--gold);
}
.hero p { color: var(--ink-2); margin-bottom: 14px; }

/* Author card */
.author-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: var(--r);
  margin: 28px 0 20px;
  box-shadow: var(--shadow-sm);
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: #0b0e13;
  display: grid; place-items: center;
  font-family: var(--ff-serif); font-weight: 700; font-size: 22px;
}
.author-name { font-weight: 700; font-size: 15px; }
.author-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.author-meta {
  font-size: 12px; color: var(--muted); line-height: 1.6;
  padding-top: 12px; margin-top: 12px;
  border-top: 1px solid var(--line-soft);
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .author-card { grid-template-columns: 56px 1fr auto; }
  .author-meta {
    grid-column: auto;
    padding-top: 0; margin-top: 0; border: none;
    text-align: right;
  }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 12px 22px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 14px;
  letter-spacing: 0.03em; text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 55%, var(--gold-dark));
  color: #1a1300;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 4px 14px rgba(212,163,74,0.25);
  font-weight: 800;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 8px 22px rgba(212,163,74,0.45);
  color: #1a1300;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:active { transform: translateY(0); }

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ============= COMPARISON TABLE ============= */
.cmp-wrap {
  display: none;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
@media (min-width: 860px) {
  .cmp-wrap { display: block !important; }
  .cmp-mobile { display: none !important; }
}
.cmp-table {
  font-size: 15px;
}
.cmp-table thead th {
  text-align: left;
  background: var(--bg-3);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
}
.cmp-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.cmp-table tbody tr:nth-child(1) {
  background: linear-gradient(90deg, rgba(212,163,74,0.08), transparent);
}
.cmp-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}
.cmp-table tbody tr:last-child td { border-bottom: none; }

.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  font-family: var(--ff-serif);
  font-weight: 700; font-size: 16px;
  color: var(--gold);
}
.cmp-table tbody tr:nth-child(1) .rank-badge {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  color: #0b0e13;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,163,74,0.15);
}
.cmp-table tbody tr:nth-child(2) .rank-badge,
.cmp-table tbody tr:nth-child(3) .rank-badge {
  background: rgba(212,163,74,0.1);
  border-color: rgba(212,163,74,0.4);
}

.brand-name { font-weight: 700; font-size: 16px; color: var(--ink); }
.brand-tag { font-size: 12px; color: var(--muted); margin-top: 2px; }

.wager-pill {
  display: inline-block;
  background: rgba(0,166,118,0.12);
  border: 1px solid rgba(0,166,118,0.3);
  color: var(--pounamu);
  padding: 3px 10px;
  font-size: 13px; font-weight: 700;
  border-radius: 3px;
}

.rating {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-sans);
}
.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
.score {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.max { font-size: 12px; color: var(--muted); }

.c-cta { text-align: right; }

/* Mobile comparison cards */
.cmp-mobile {
  display: flex; flex-direction: column; gap: 14px;
}
.cmp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.cmp-card:first-child {
  border-color: rgba(212,163,74,0.35);
  box-shadow: 0 0 0 1px rgba(212,163,74,0.15), 0 4px 12px rgba(212,163,74,0.1);
  background: linear-gradient(180deg, rgba(212,163,74,0.05), var(--surface) 40%);
}
.cmp-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.cmp-card-info { min-width: 0; }
.rating-mobile {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.cmp-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cmp-meta { display: flex; flex-direction: column; gap: 2px; }
.meta-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.fine-print {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* ============= REVIEWS ============= */
.section-reviews .container { max-width: 920px; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  scroll-margin-top: 90px;
}
.review:hover {
  border-color: rgba(212,163,74,0.3);
}
.review:first-of-type {
  border-color: rgba(212,163,74,0.35);
  background: linear-gradient(180deg, rgba(212,163,74,0.05), var(--surface) 30%);
}
.review:first-of-type::before {
  content: "EDITOR'S CHOICE";
  position: absolute;
  top: -10px; left: 22px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  color: #0b0e13;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 3px;
}
@media (min-width: 600px) {
  .review { padding: 30px 32px; }
}

.review-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.review-head-left {
  display: flex; gap: 14px; align-items: flex-start;
  flex: 1; min-width: 0;
}
.rank-badge-lg {
  width: 44px; height: 44px; font-size: 20px;
  flex-shrink: 0;
}
.review h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 8px;
}
.review-meta-line {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.meta-pill {
  font-size: 11px; letter-spacing: 0.04em;
  padding: 3px 9px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-2);
  font-weight: 600;
}
.meta-pill.code {
  background: rgba(212,163,74,0.1);
  border-color: rgba(212,163,74,0.3);
  color: var(--gold);
}
.rating-lg .score { font-size: 20px; }
.rating-lg .stars { font-size: 15px; }

.review-desc {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 18px;
}

.review-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
@media (min-width: 640px) { .review-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }

.pros h4, .cons h4 {
  font-family: var(--ff-sans);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.pros h4 { color: var(--pounamu); }
.cons h4 { color: var(--danger); }

.review-grid li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.pros li::before, .cons li::before {
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.pros li::before {
  content: "✓";
  background: rgba(0,166,118,0.15);
  color: var(--pounamu);
}
.cons li::before {
  content: "✕";
  background: rgba(239,82,82,0.12);
  color: var(--danger);
}

.test-bar {
  background: linear-gradient(90deg, rgba(212,163,74,0.08), rgba(212,163,74,0.02));
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  margin: 4px 0 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.test-label {
  display: block;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 800;
  margin-bottom: 4px;
}
.test-body {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.review-cta { margin-top: 6px; }

/* ============= LICENSORS ============= */
.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 20px 0;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--pounamu);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,166,118,0.15);
}

.h3-providers {
  font-family: var(--ff-sans);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin: 28px 0 12px;
}
.providers { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 6px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 20px;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }

/* ============= CONTENT BITS ============= */
.section p {
  color: var(--ink-2);
  margin-bottom: 14px;
  font-size: 16px;
}
.section p strong { color: var(--ink); }
.section h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 22px);
  color: var(--ink);
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}

/* Lists */
ol.steps, ol.criteria {
  counter-reset: step;
  margin: 18px 0 24px;
}
ol.steps li, ol.criteria li {
  counter-increment: step;
  padding: 14px 16px 14px 58px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  position: relative;
  color: var(--ink-2);
}
ol.steps li::before, ol.criteria li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 16px; top: 12px;
  font-family: var(--ff-serif);
  font-weight: 700; font-size: 20px;
  color: var(--gold);
}
ol.steps li strong { color: var(--ink); }

ul.checklist { margin: 14px 0 22px; }
ul.checklist li {
  padding: 12px 14px 12px 44px;
  position: relative;
  color: var(--ink-2);
  line-height: 1.55;
  border-bottom: 1px solid var(--line-soft);
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px; top: 14px;
  width: 20px; height: 20px;
  background: rgba(0,166,118,0.15);
  color: var(--pounamu);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
ul.checklist li:last-child { border-bottom: none; }

/* Callout */
.callout {
  background: linear-gradient(135deg, rgba(212,163,74,0.1), rgba(212,163,74,0.02));
  border: 1px solid rgba(212,163,74,0.25);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin: 22px 0;
}
.callout-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; color: var(--gold);
  margin-bottom: 12px;
}
.callout-label::before {
  content: "◆"; margin-right: 8px;
}
.callout p { color: var(--ink); }
.callout p strong { color: var(--gold); }

/* Generic data tables */
.t-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
}
table.grid {
  font-size: 14.5px;
  min-width: 500px;
}
table.grid thead th {
  text-align: left;
  background: var(--bg-3);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
table.grid td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
}
table.grid .hi { color: var(--ink); font-weight: 700; }
table.grid tr:last-child td { border-bottom: none; }
table.grid .row-highlight {
  background: rgba(212,163,74,0.06);
}
table.grid .row-highlight .hi { color: var(--gold); }

/* Pros/Cons grid */
.pc-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin: 18px 0;
}
@media (min-width: 720px) { .pc-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.pc-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
}
.pc-col h3 {
  font-family: var(--ff-sans);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.pc-pros h3 { color: var(--pounamu); }
.pc-cons h3 { color: var(--danger); }
.pc-col ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.pc-col ul li:last-child { border-bottom: none; }
.pc-col ul li::before {
  position: absolute; left: 0; top: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.pc-pros ul li::before { content: "✓"; background: rgba(0,166,118,0.15); color: var(--pounamu); }
.pc-cons ul li::before { content: "✕"; background: rgba(239,82,82,0.12); color: var(--danger); }

/* ============= FAQ ============= */
.faq-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  list-style: none;
  gap: 14px;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,255,255,0.02); }
.faq-ico {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 400; font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-ico { transform: rotate(45deg); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--ink-2);
}

/* ============= VERDICT ============= */
.verdict {
  background: linear-gradient(135deg, #0f131b 0%, #15192a 100%);
  border: 1px solid rgba(212,163,74,0.3);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(212,163,74,0.12) inset, 0 8px 30px rgba(0,0,0,0.4);
}
.verdict::before {
  content: ''; position: absolute;
  top: -50%; left: -20%; width: 140%; height: 200%;
  background: radial-gradient(ellipse at top, rgba(212,163,74,0.15), transparent 50%);
  pointer-events: none;
}
.verdict-kicker {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 800; color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}
.verdict h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.15;
  color: var(--ink);
  position: relative;
}
.verdict p {
  color: var(--ink-2);
  margin-bottom: 14px;
  position: relative;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.verdict p strong { color: var(--ink); }
.verdict .btn { margin-top: 16px; position: relative; }
@media (min-width: 720px) { .verdict { padding: 60px 40px; } }

/* ============= FOOTER ============= */
.site-footer {
  background: #060810;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.footer-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 56px 32px; }
}

.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 380px;
}
.footer-desc strong { color: var(--ink); }
.licensors { display: flex; flex-wrap: wrap; gap: 6px; }
.lic-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  border-radius: 3px;
}

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--ink-2);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--gold); }

.helpline-banner {
  background: linear-gradient(90deg, rgba(0,166,118,0.12), rgba(0,166,118,0.04));
  border-top: 1px solid rgba(0,166,118,0.2);
  border-bottom: 1px solid rgba(0,166,118,0.2);
}
.helpline-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; gap: 16px; align-items: center;
  padding: 18px 22px;
  flex-wrap: wrap;
}
.age-badge {
  background: var(--gold);
  color: #0b0e13;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  flex-shrink: 0;
}
.helpline-inner p {
  color: var(--ink-2);
  font-size: 14px;
  flex: 1;
  min-width: 220px;
}
.helpline-inner strong { color: var(--ink); }
.helpline-inner a { color: var(--pounamu); font-weight: 700; }

.footer-legal {
  background: #050710;
}
.legal-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 22px 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.legal-inner p { margin-bottom: 8px; }
.legal-mini { font-size: 11px; opacity: 0.8; }

/* ============= UTIL ============= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
