/* ============================================
   DairyNZ Schools — Casino Affiliate Site
   Dark + Purple/Cyan Theme (Poppins)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --bg-card-hover: #2a2a2a;
  --bg-table-row: #1a1a1a;
  --bg-table-row-alt: #1f1f1f;
  --border-subtle: rgba(111, 0, 255, 0.14);
  --border-accent: rgba(0, 229, 255, 0.32);
  --green-deep: #00a8c0;
  --green-mid: #00c8e0;
  --green-light: #00e5ff;
  --green-glow: rgba(0, 229, 255, 0.12);
  --gold: #6f00ff;
  --gold-light: #8a3eff;
  --gold-dark: #5500cc;
  --gold-glow: rgba(111, 0, 255, 0.22);
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #7a7a7a;
  --text-heading: #ffffff;
  --red-soft: #f06060;
  --red-bg: rgba(240, 96, 96, 0.08);
  --star-color: #00e5ff;
  --pro-color: #34d399;
  --con-color: #f06060;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.45), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px var(--border-accent);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--green-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.nav-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  line-height: 1.2;
}

.nav-logo span { color: var(--gold); }

.nav-tagline {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 1px;
}

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; flex-wrap: nowrap; }

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-heading);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-secondary); margin: 5px 0; transition: var(--transition); }

@media (max-width: 768px) {
  /* Hide tagline on mobile so the header stays compact (~60-64px tall) */
  .nav-tagline { display: none !important; }
  .nav-logo { font-size: 1.55rem !important; }

  .site-header { padding: 6px 0; }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1100;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 12px;
    z-index: 1050;
  }
  .nav-links.open { display: flex; }
}

/* ---- HERO ---- */
.hero {
  padding: 36px 24px 14px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- HERO LAYOUT & #1 PICK CARD ---- */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-pick-card {
  flex-shrink: 0;
  width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 3px var(--green-mid);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pick-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pick-casino {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.pick-logo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 6px;
}

.pick-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.pick-subtitle {
  display: block;
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 2px;
}

.pick-bonus {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pick-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.35);
}

.pick-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.45);
  color: #fff !important;
}

.pick-disclaimer {
  font-size: 0.72rem;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 28px;
  }
  .hero-pick-card {
    width: 100%;
    max-width: 320px;
  }
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION ---- */
.section {
  padding: 10px 0 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ---- AFFILIATE TABLE ---- */
/* ---- TABLE + STICKY SIDEBAR LAYOUT ---- */
.table-with-sidebar {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.table-with-sidebar .affiliate-table-wrapper {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.sticky-sidebar {
  position: sticky;
  top: 88px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-card-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* -- Top Picks -- */
.sidebar-pick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-pick:last-of-type { border-bottom: none; }

.sidebar-pick-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-pick-rank.rank-1 { background: var(--gold); color: #1a1a1a; }
.sidebar-pick-rank.rank-2 { background: var(--green-mid); color: #fff; }
.sidebar-pick-rank.rank-3 { background: #8b5cf6; color: #fff; }

.sidebar-pick-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}

.sidebar-pick-info {
  flex: 1;
  min-width: 0;
}

.sidebar-pick-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-heading);
  line-height: 1.2;
}

.sidebar-pick-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sidebar-pick-cta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-light) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.sidebar-pick-cta:hover {
  color: var(--gold-light) !important;
}

/* -- Quick Stats -- */
.sidebar-stats {
  display: flex;
  gap: 8px;
}

.sidebar-stat {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
}

.sidebar-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1.2;
}

.sidebar-stat span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* -- Trust & Safety -- */
.sidebar-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-trust li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .sticky-sidebar { display: none; }
  .table-with-sidebar { display: block; }
  .table-with-sidebar .affiliate-table-wrapper { margin-bottom: 64px; }
}

.affiliate-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 64px;
}

.affiliate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.93rem;
}

.affiliate-table thead {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border-accent);
}

.affiliate-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.affiliate-table th:first-child { padding-left: 24px; }

.affiliate-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.affiliate-table td:first-child { padding-left: 24px; }

.affiliate-table tbody tr { background: var(--bg-table-row); transition: background var(--transition); }
.affiliate-table tbody tr:nth-child(even) { background: var(--bg-table-row-alt); }
.affiliate-table tbody tr:hover { background: var(--bg-card-hover); }

.table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.85rem;
}

.table-rank.top-3 {
  background: var(--gold-dark);
  color: #fff;
}

.table-casino-name {
  font-weight: 600;
  color: var(--text-heading);
}

.table-casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-casino-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 6px;
  flex-shrink: 0;
}

/* CTA cell — centered with T&Cs */
.table-cta-cell {
  text-align: center;
  vertical-align: middle;
}

.table-cta-cell .btn-visit {
  display: block;
  margin: 0 auto 6px;
  text-align: center;
  padding: 11px 24px;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px var(--gold-glow);
}

.table-tcs {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.table-tcs:hover {
  color: var(--text-secondary) !important;
  text-decoration: underline;
}


.table-bonus {
  color: var(--gold-light);
  font-weight: 600;
}

.table-payout {
  font-weight: 600;
  color: var(--green-light);
}

.table-rating { display: flex; gap: 2px; }

.table-rating .star {
  color: var(--star-color);
  font-size: 0.95rem;
}

.table-rating .star.empty { color: var(--text-muted); opacity: 0.3; }

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0f0d;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-visit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f0d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* Casino name + licence text hidden on desktop (table column already shows logo) */
.table-casino-text,
.table-casino-licence,
.table-read-review {
  display: none;
}

/* ---- AFFILIATE TABLE: MOBILE CARD LAYOUT ---- */
@media (max-width: 1024px) {
  /* Stack the sidebar below the table on tablet + mobile */
  .table-with-sidebar { flex-direction: column; }
  .sticky-sidebar {
    width: 100%;
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  /* Hide table semantics, render rows as cards */
  .affiliate-table {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 0;       /* override desktop 560px min that caused overflow */
    width: 100%;
  }
  .affiliate-table-wrapper {
    overflow: visible;
    width: 100%;
  }
  .affiliate-table thead { display: none; }
  .affiliate-table, .affiliate-table tbody { display: block; }
  .affiliate-table tr {
    display: block;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 56px 20px 20px;
    margin-bottom: 20px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .affiliate-table tbody tr:nth-child(even),
  .affiliate-table tbody tr:hover { background: var(--bg-card); }
  .affiliate-table td {
    display: block;
    border-bottom: none;
    padding: 0;
    text-align: center;
  }
  .affiliate-table td:first-child {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0;
  }

  /* Rank pill stays as the badge top-left */
  .table-rank,
  .table-rank.top-3 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
  }

  /* Logo: large white card centered */
  .table-casino-logo {
    margin: 0 auto 12px;
  }
  .table-casino-logo img {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    object-fit: contain;
  }

  /* Casino name and licence shown only on mobile */
  .table-casino-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
  }
  .table-casino-licence {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
  }

  /* Bonus headline */
  .table-bonus {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-light);
    margin-bottom: 12px;
  }

  /* Payout subtitle */
  .table-payout {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  /* Star rating row larger */
  .table-rating {
    justify-content: center;
    margin-bottom: 16px;
  }
  .table-rating .star { font-size: 1.1rem; }

  /* CTA: full-width gold button, then Read Review link, then T&Cs */
  .table-cta-cell { padding: 0; }
  .table-cta-cell .btn-visit {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .table-read-review {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
  }
  .table-read-review:hover { color: var(--gold-light); }
  .table-tcs {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
  }
}

/* ---- REVIEW CARDS ---- */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.review-header-left { flex: 1; min-width: 250px; }

.review-rank-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review-rank {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.review-bonus-inline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  padding-left: 14px;
  border-left: 2px solid var(--border-accent);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.review-meta-item { display: flex; align-items: center; gap: 6px; }
.review-meta-label { color: var(--text-muted); }
.review-meta-value { font-weight: 600; color: var(--text-primary); }
.review-meta-value.gold { color: var(--gold-light); }
.review-meta-value.green { color: var(--green-light); }

/* Review tag bar */
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.review-tag-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.review-header-right { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.review-header-right .btn-read-review { font-size: 0.78rem; padding: 5px 0; border: none; }

.review-rating-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.review-rating-big span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.review-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .review-body { grid-template-columns: 1fr; }
}

.review-pros, .review-cons {
  padding: 20px;
  border-radius: var(--radius-md);
}

.review-pros {
  background: rgba(62, 189, 122, 0.06);
  border: 1px solid rgba(62, 189, 122, 0.15);
}

.review-cons {
  background: var(--red-bg);
  border: 1px solid rgba(224, 92, 92, 0.15);
}

.review-pros h4, .review-cons h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 700;
}

.review-pros h4 { color: var(--pro-color); }
.review-cons h4 { color: var(--con-color); }

.review-pros ul, .review-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-pros li, .review-cons li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.review-pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--pro-color);
  font-weight: 700;
}

.review-cons li::before {
  content: '\2212';
  position: absolute;
  left: 0;
  color: var(--con-color);
  font-weight: 700;
}

.review-payout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.payout-bar-wrapper { flex: 1; }

.payout-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.payout-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.payout-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-light));
  transition: width 0.8s ease;
}

.payout-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
}

/* ---- CONTENT PAGES ---- */
.page-hero {
  padding: 60px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-heading);
}

.page-hero p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1.05rem;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 40px 0 16px;
}

.content-section h2:first-child { margin-top: 0; }

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 28px 0 12px;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  color: var(--text-secondary);
  margin: 0 0 16px 24px;
  line-height: 1.8;
}

.content-section li { margin-bottom: 6px; }

.content-section a { color: var(--green-light); text-decoration: underline; text-underline-offset: 3px; }
.content-section a:hover { color: var(--gold-light); }

/* Contact form */
.contact-form { max-width: 560px; margin: 0 auto; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand .nav-logo { margin-bottom: 12px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 16px 20px;
  background: rgba(224, 92, 92, 0.05);
  border: 1px solid rgba(224, 92, 92, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- 18+ BADGE ---- */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red-soft);
  color: var(--red-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---- REVIEW NARRATIVE ---- */
.review-narrative {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

/* ---- WITHDRAWAL PROOF TABLE ---- */
.proof-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 12px 0;
}

.proof-table th {
  background: var(--bg-card);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-accent);
}

.proof-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.proof-table tbody tr { background: var(--bg-table-row); }
.proof-table tbody tr:nth-child(even) { background: var(--bg-table-row-alt); }

.proof-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.85rem;
}

.proof-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ---- CONTENT BLOCKS (info sections) ---- */
.info-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

/* Lists inside info-section: center the list as a block but keep items left-readable */
.info-section ul,
.info-section ol {
  display: inline-block;
  text-align: left;
  margin: 0 auto 16px;
}

/* Tables inside info-section: center the whole table */
.info-section table,
.info-section .comparison-table {
  margin-left: auto;
  margin-right: auto;
}

/* Trust cards inside info-section keep their internal alignment */
.info-section .trust-card {
  text-align: left;
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.info-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-section ul,
.info-section ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 16px 20px;
}

.info-section li { margin-bottom: 6px; }

.info-section ol.how-to-list li { margin-bottom: 12px; }
.info-section ol.how-to-list strong { color: var(--text-primary); }

/* ---- Why Trust Us card ---- */
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.trust-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-glow);
  color: var(--green-light);
  margin-bottom: 16px;
  border: 1px solid var(--border-accent);
}

.trust-header h2 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-size: 1.85rem;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}

.trust-header p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  font-size: 0.98rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  padding: 28px 0;
  margin: 0 auto;
  max-width: 760px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-glow);
  color: var(--green-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-stat-body { flex: 1; min-width: 0; }

.trust-stat-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.trust-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--pro-color);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.verified-badge svg { stroke: var(--pro-color); }

.trust-stat-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.trust-stat-label a {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-stat-label a:hover { color: var(--gold-light); }

.trust-quote {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.trust-quote p {
  color: var(--text-primary);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 10px;
}

.trust-quote p::before { content: "\1F4AC  "; opacity: 0.7; margin-right: 4px; }

.trust-quote footer {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trust-footer-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
  .trust-card { padding: 28px 20px; }
  .trust-header h2 { font-size: 1.5rem; }
  .trust-stats { grid-template-columns: 1fr; gap: 20px; padding: 20px 0; }
  .trust-stat-number { font-size: 1.3rem; }
  .trust-quote { padding: 20px; }
}

/* ---- Testimonials (highlighted) ---- */
.info-section.testimonial-section {
  background: linear-gradient(135deg, rgba(111, 0, 255, 0.10) 0%, rgba(0, 229, 255, 0.06) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.info-section.testimonial-section::before {
  content: "Real Player Reviews";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(111, 0, 255, 0.45);
}

.info-section.testimonial-section h2 {
  color: var(--gold-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  padding: 0;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.testimonial-card figcaption strong { color: var(--gold-light); font-size: 0.9rem; }
.testimonial-source { color: var(--text-muted); font-size: 0.78rem; }
.testimonial-source a { color: var(--text-secondary); text-decoration: underline; }
.testimonial-source a:hover { color: var(--gold-light); }

.testimonial-disclaimer { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .info-section.testimonial-section { padding: 28px 20px; }
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  cursor: pointer;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
}

/* ---- AUTHOR BIO ---- */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}

/* Author strip — full-width bar below hero */
.author-strip {
  background: #0d0d0d;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
}

.author-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.author-strip .author-avatar {
  width: 32px;
  height: 32px;
  font-size: 0.7rem;
}

.author-strip .author-info {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.author-strip .author-info h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.author-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.author-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.author-strip .author-info .author-title {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.author-strip .author-info .author-title::before {
  content: ' · ';
  color: var(--text-muted);
}

.author-strip-sep {
  width: 1px;
  height: 20px;
  background: var(--border-accent);
  flex-shrink: 0;
}

.author-strip-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  /* Whole author strip becomes a highlighted floating bubble */
  .author-strip {
    margin: 14px 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(111, 0, 255, 0.10) 0%, rgba(0, 229, 255, 0.06) 100%);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 18px rgba(111, 0, 255, 0.20);
  }
  .author-strip-sep { display: none; }
  .author-strip-detail {
    width: 100%;
    padding-left: 44px;
    margin-top: 8px;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  /* Stack name + role + fact-checker vertically */
  .author-strip .author-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    flex: 1 1 auto;
    min-width: 0;
  }
  .author-strip .author-info h3 {
    font-size: 1rem;
  }
  .author-strip .author-info .author-title::before {
    content: '';
    margin: 0;
  }
  .author-strip .author-info .author-title {
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--green-light);
  }
  .author-strip .author-info .author-title:nth-of-type(2) {
    color: var(--gold-light);
  }
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
  flex-shrink: 0;
}

.author-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.author-info .author-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Review logo icon before name */
.review-rank-name img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 5px;
}

@media (max-width: 640px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .proof-table { font-size: 0.78rem; }
  .proof-table th, .proof-table td { padding: 8px 10px; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- MOBILE: hero/section/author tweaks (table card layout lives earlier) ---- */
@media (max-width: 768px) {
  .hero { padding: 20px 16px 8px; }
  .hero h1 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 8px; }
  .hero p { font-size: 0.88rem; margin-bottom: 8px; line-height: 1.5; }
  .hero-badge { margin-bottom: 10px; font-size: 0.72rem; padding: 5px 14px; }
  .section { padding: 6px 0 48px; }
  .section-title { font-size: 1.3rem; margin-bottom: 6px; }
  .section-subtitle { font-size: 0.85rem; margin-bottom: 16px; }
}

/* ---- REVIEW PAGE ---- */
.review-hero {
  padding: 48px 24px 36px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.review-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.review-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.review-breadcrumb a { color: var(--text-secondary); }
.review-breadcrumb a:hover { color: var(--gold-light); }
.review-breadcrumb span { margin: 0 8px; color: var(--text-muted); }

.review-hero-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.review-hero-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-hero-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }

.review-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
  line-height: 1.2;
}

.review-hero-info h1 em { color: var(--gold); font-style: normal; }

.review-hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.review-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-hero-rating .star { color: var(--star-color); font-size: 1.1rem; }
.review-hero-rating .star.half { opacity: 0.5; }
.review-hero-rating .star.empty { opacity: 0.2; }

.review-hero-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.review-quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
}

.review-quick-fact {
  text-align: center;
}

.review-quick-fact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.review-quick-fact-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
}

/* Review page body */
.review-page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.review-page-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 40px;
}

.review-page-toc h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.review-page-toc ol {
  list-style: decimal;
  padding-left: 20px;
}

.review-page-toc li {
  margin-bottom: 6px;
}

.review-page-toc a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.review-page-toc a:hover { color: var(--gold-light); }

.review-page-section {
  margin-bottom: 40px;
}

.review-page-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.review-page-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 20px 0 10px;
}

.review-page-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-page-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.review-page-section ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-page-section ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--pro-color);
  font-weight: 700;
}

/* Pros/cons on review page */
.review-page-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.review-page-pros, .review-page-cons {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.review-page-pros h3, .review-page-cons h3 {
  margin-top: 0;
  padding-bottom: 8px;
  border-bottom: none;
}

.review-page-pros h3 { color: var(--pro-color); }
.review-page-cons h3 { color: var(--con-color); }

.review-page-cons ul li::before {
  content: '\2717';
  color: var(--con-color);
}

/* Banking table on review page */
.review-banking-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.review-banking-table th {
  background: var(--bg-table-row);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.review-banking-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-subtle);
}

.review-banking-table tr:nth-child(even) td {
  background: var(--bg-table-row-alt);
}

/* Pokies anchor CTA */
.pokies-anchor-box {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(111, 0, 255, 0.10) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
}

.pokies-anchor-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.pokies-anchor-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.pokies-anchor-box .btn-visit {
  display: inline-block;
}

/* Review page CTA box */
.review-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.review-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.review-cta-box p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.review-cta-box .btn-visit {
  font-size: 1rem;
  padding: 14px 36px;
}

/* Review page FAQ */
.review-faq { margin-top: 40px; }

.review-faq h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.review-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.review-faq-q {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.review-faq-item.open .review-faq-q::after {
  content: '\2212';
}

.review-faq-a {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.review-faq-item.open .review-faq-a {
  display: block;
}

/* Reviews index grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.reviews-grid-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.reviews-grid-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.reviews-grid-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviews-grid-card-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 6px;
  flex-shrink: 0;
}

.reviews-grid-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reviews-grid-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.reviews-grid-card-info .star { color: var(--star-color); font-size: 0.85rem; }
.reviews-grid-card-info .star.half { opacity: 0.5; }
.reviews-grid-card-info .star.empty { opacity: 0.2; }

.reviews-grid-card-bonus {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.reviews-grid-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.reviews-grid-card-actions {
  display: flex;
  gap: 10px;
}

.reviews-grid-card-actions .btn-visit {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 14px;
}

.btn-read-review {
  display: inline-block;
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
  color: var(--text-secondary);
  font-weight: 600;
  transition: all var(--transition);
}

.btn-read-review:hover {
  background: var(--border-accent);
  color: var(--text-heading);
}

/* Nav dropdown */
.nav-links li { position: relative; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); min-width: 180px; padding: 8px 0; z-index: 1001; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.nav-dropdown a { display: block; padding: 8px 16px; font-size: 0.82rem; text-transform: none; letter-spacing: normal; color: var(--text-secondary); }
.nav-dropdown a:hover { color: var(--text-heading); background: rgba(0, 229, 255, 0.10); }
.nav-links li:hover .nav-dropdown { display: block; }

@media (max-width: 768px) {
  .review-hero { padding: 32px 16px 24px; }
  .review-hero-logo { width: 56px; height: 56px; }
  .review-hero-top { gap: 14px; }
  .review-quick-facts { grid-template-columns: repeat(2, 1fr); }
  .review-page-body { padding: 24px 16px 40px; }
  .review-page-proscons { grid-template-columns: 1fr; }
  .pokies-anchor-box { padding: 20px 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-dropdown {
    display: none;            /* hidden by default on mobile */
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    margin-top: 4px;
    background: transparent;
  }
  .nav-dropdown a { padding: 6px 0; font-size: 0.85rem; display: block; }
  .nav-links li.dropdown-open .nav-dropdown { display: block; }
  /* Make the parent label rotate the chevron when open */
  .nav-links > li > a { padding: 10px 0; display: flex; justify-content: space-between; align-items: center; }
  .nav-links li.dropdown-open > a { color: var(--green-light); }
}

/* ---- GUIDE PAGE ---- */
.guide-hero {
  padding: 48px 24px 36px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.guide-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.guide-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.guide-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.guide-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.guide-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.guide-body > p,
.guide-body .guide-section > p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 1rem;
}

.guide-body a { text-decoration: underline; text-underline-offset: 3px; }
.guide-body a:hover { color: var(--gold-light); }

.guide-section {
  margin-bottom: 44px;
}

.guide-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.guide-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 24px 0 10px;
}

.guide-section ul, .guide-section ol {
  padding-left: 20px;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.guide-section li {
  padding: 4px 0;
  line-height: 1.7;
}

.guide-section ol { list-style: decimal; }
.guide-section ul { list-style: disc; }

.guide-callout {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(111, 0, 255, 0.10) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
}

.guide-callout h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.guide-callout p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.guide-tip {
  background: rgba(52, 211, 153, 0.06);
  border-left: 3px solid var(--pro-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.guide-tip p { margin-bottom: 0; font-size: 0.92rem; }

.guide-warning {
  background: rgba(240, 96, 96, 0.06);
  border-left: 3px solid var(--con-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.guide-warning p { margin-bottom: 0; font-size: 0.92rem; }

.guide-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.guide-comparison-table th {
  background: var(--bg-table-row);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.guide-comparison-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-subtle);
}

.guide-comparison-table tr:nth-child(even) td {
  background: var(--bg-table-row-alt);
}

/* Guides index grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.guides-grid-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.guides-grid-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.guides-grid-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.guides-grid-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.guides-grid-card h3 a { color: var(--text-heading); text-decoration: none; }
.guides-grid-card h3 a:hover { color: var(--gold-light); }

.guides-grid-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.guides-grid-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.guides-grid-card-footer a {
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .guide-hero { padding: 32px 16px 24px; }
  .guide-body { padding: 24px 16px 40px; }
  .guides-grid { grid-template-columns: 1fr; }
  .guide-callout { padding: 18px 16px; }
}
