/* ===================================================
   FairGoGuide — style.css v20260430a
   Tropical jungle green theme — inspired by Fair Go Casino
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary:     #091a0c;
  --bg-secondary:   #0d2414;
  --bg-tertiary:    #163520;
  --bg-card:        #112016;
  --bg-card-hover:  #1c3824;
  --accent-primary: #00b894;
  --accent-light:   #00d4a8;
  --accent-dim:     rgba(0,184,148,0.12);
  --accent-gold:    #f5c518;
  --accent-gold-dim:rgba(245,197,24,0.15);
  --text-primary:   #f0fdf4;
  --text-muted:     #7ab58a;
  --success:        #22c55e;
  --danger:         #ef4444;
  --border:         rgba(0,184,148,0.18);
  --border-strong:  rgba(0,184,148,0.40);
  --shadow:         0 4px 24px rgba(0,0,0,0.35);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.50);
  --shadow-teal:    0 4px 20px rgba(0,184,148,0.25);
  --max-width:      1200px;
  --radius:         16px;
  --radius-sm:      10px;
  --transition:     0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  padding-bottom: 70px;
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

a { color: var(--accent-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
strong { color: var(--text-primary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.mw-860 { max-width: 860px; margin-left: auto; margin-right: auto; }

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(9, 26, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.site-header.header-hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 16px;
}
.header-spacer { height: 66px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-img { width: 36px; height: 36px; border-radius: 8px; }
.logo-text {
  font-size: 1.28rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px;
}
.logo-text em { font-style: normal; color: var(--accent-primary); }

.nav-main { flex: 1; display: flex; justify-content: center; }
.nav-desktop { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-desktop li a {
  display: block; padding: 7px 13px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-desktop li a:hover, .nav-desktop li a.active {
  color: var(--text-primary); background: var(--accent-dim);
}
.nav-more { position: relative; }
.nav-more-toggle { cursor: pointer; user-select: none; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px; min-width: 190px;
  box-shadow: var(--shadow-hover); list-style: none; z-index: 200;
}
.nav-more.open .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 9px 14px; border-radius: 7px;
  color: var(--text-muted); font-size: 0.88rem; white-space: nowrap;
}
.nav-dropdown li a:hover { background: var(--accent-dim); color: var(--text-primary); }
@media (max-width: 920px) { .nav-desktop { display: none; } }

.header-cta {
  background: var(--accent-primary); color: #fff !important;
  padding: 9px 22px; border-radius: 100px;
  font-weight: 700; font-size: 0.88rem; white-space: nowrap;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  flex-shrink: 0; box-shadow: 0 2px 12px rgba(0,184,148,0.35);
}
.header-cta:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: var(--shadow-teal); }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 6px; background: none; border: none; cursor: pointer;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }
@media (max-width: 920px) { .nav-hamburger { display: flex; } }

/* ===== HERO SECTION (HOMEPAGE) ===== */
.hero-section {
  position: relative; overflow: hidden;
  padding: 120px 0 72px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0,184,148,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(0,184,148,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #061209 0%, #0d2414 50%, #091a0c 100%);
  border-bottom: 1px solid var(--border);
}
/* Decorative glow circles */
.hero-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,148,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,148,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .hero-section { padding: 100px 0 56px; } }

.hero-h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 18px;
  letter-spacing: -0.5px; color: var(--text-primary);
}
.hero-lead {
  font-size: 1.02rem; color: var(--text-muted);
  margin-bottom: 28px; line-height: 1.75;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.hero-disclaimer a { color: var(--accent-primary); }

/* Trust card on hero right */
.hero-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-trust-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
}
.trust-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.trust-card-header strong { display: block; font-size: 1.05rem; font-weight: 700; }
.trust-card-sub { font-size: 0.78rem; color: var(--accent-primary); font-weight: 600; }
.trust-facts { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.trust-facts li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.trust-facts li:last-child { border-bottom: none; }
.trust-facts li .trust-icon { font-size: 1.1rem; flex-shrink: 0; width: 24px; text-align: center; }
.trust-card-disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; }
.small-link { font-size: 0.75rem; color: var(--accent-primary); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-list {
  display: flex; gap: 0; flex-wrap: wrap;
  justify-content: center; align-items: center; list-style: none;
}
.trust-bar-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}
.trust-bar-list li:last-child { border-right: none; }
.trust-bar-list li svg { fill: var(--accent-primary); flex-shrink: 0; }
@media (max-width: 600px) { .trust-bar-list li { border-right: none; padding: 6px 12px; } }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero-section {
  padding: 100px 0 48px;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(0,184,148,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #061209 0%, #0d2414 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.4px;
}
.page-hero-subtitle {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7;
  max-width: 780px; margin-bottom: 20px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
  background: var(--bg-secondary); border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex; gap: 8px; align-items: center; list-style: none; font-size: 0.82rem;
}
.breadcrumb-list li { color: var(--text-muted); }
.breadcrumb-list li:not(:last-child)::after { content: '›'; margin-left: 8px; }
.breadcrumb-list li a { color: var(--text-muted); }
.breadcrumb-list li a:hover { color: var(--accent-primary); }
.breadcrumb-list li[aria-current="page"] { color: var(--text-primary); font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
@media (max-width: 768px) { .section, .section-alt { padding: 44px 0; } }

/* content-section alternating: same treatment */
.content-section--alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Review page: border between consecutive sections */
.review-section + .review-section { border-top: 1px solid var(--border); }
/* Every other review section gets bg-secondary */
.review-section:nth-child(even) { background: var(--bg-secondary); }

.section-title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800;
  margin-bottom: 8px; letter-spacing: -0.3px;
  color: var(--text-primary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  position: relative;
}
/* Teal accent bar under every section heading */
.section-title::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 40px; height: 3px;
  background: var(--accent-primary); border-radius: 2px;
}
.section-title.centered { text-align: center; }
.section-title.centered::after { left: 50%; transform: translateX(-50%); }
.section-intro {
  color: var(--text-muted); font-size: 0.97rem; line-height: 1.75;
  margin-bottom: 32px; max-width: 820px;
}
.section-intro.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.97rem;
  padding: 13px 28px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-primary); color: #fff;
  box-shadow: 0 3px 14px rgba(0,184,148,0.35);
}
.btn-primary:hover {
  background: var(--accent-light); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,184,148,0.45);
}
.btn-secondary {
  background: transparent; color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}
.btn-secondary:hover {
  background: var(--accent-dim); color: var(--accent-light);
  border-color: var(--accent-light);
}
.btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--accent-primary); background: var(--accent-dim); }
.btn-large { padding: 15px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* CTA / header CTAs */
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-primary); color: #fff !important;
  font-weight: 700; font-size: 1rem;
  padding: 13px 28px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 3px 14px rgba(0,184,148,0.35);
}
.btn-cta:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,184,148,0.45); }
.btn-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent-primary); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; margin-top: 12px;
  transition: color var(--transition);
}
.btn-link:hover { color: var(--accent-light); }

/* ===== RATING BADGE ===== */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-gold-dim); border: 1px solid rgba(245,197,24,0.35);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 20px;
}
.rating-badge-large { padding: 10px 22px; margin-bottom: 24px; }
.stars, .stars-large { display: flex; gap: 3px; }
.star { font-size: 1rem; color: var(--accent-gold); }
.stars-large .star { font-size: 1.4rem; }
.star.half { position: relative; color: rgba(245,197,24,0.4); }
.star.half::before {
  content: '★'; position: absolute; left: 0; overflow: hidden;
  width: 50%; color: var(--accent-gold); white-space: nowrap;
}
.rating-score { font-size: 1rem; font-weight: 700; color: var(--accent-gold); }
.rating-label { font-size: 0.78rem; color: var(--text-muted); }
.rating-teal { color: var(--accent-primary); font-weight: 700; }
.rating-inline { color: var(--accent-gold); font-weight: 700; }

/* ===== BYLINE ===== */
.byline {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; font-size: 0.85rem; color: var(--text-muted);
}
.byline-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-tertiary); object-fit: cover; flex-shrink: 0; }
.byline-name { display: block; font-weight: 600; color: var(--text-primary); }
.byline-date { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.byline a { color: var(--accent-primary); }

/* ===== EDITORIAL ===== */
.editorial-intro { background: var(--bg-secondary); }
.editorial-body { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; max-width: 820px; }
.editorial-body p { margin-bottom: 16px; }
.editorial-body p:last-child { margin-bottom: 0; }

/* ===== QUICK FACTS TABLE ===== */
.quick-facts-section {}
.quick-facts-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.quick-facts-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.quick-facts-table th, .quick-facts-table td {
  padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border);
}
.quick-facts-table th {
  background: var(--bg-tertiary); color: var(--text-muted);
  font-weight: 600; width: 210px; white-space: nowrap;
}
.quick-facts-table td { background: var(--bg-card); color: var(--text-primary); }
.quick-facts-table tr:last-child th, .quick-facts-table tr:last-child td { border-bottom: none; }
.quick-facts-table a { color: var(--accent-primary); }

/* ===== BONUS SECTION ===== */
.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
}
.bonus-card-featured {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 1px rgba(0,184,148,0.1), var(--shadow);
}
.bonus-card-badge {
  background: var(--accent-primary); color: #fff;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 6px 20px; display: inline-block;
}
.bonus-card-body { padding: 28px; }
.bonus-card-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; color: var(--text-primary); }
.bonus-terms-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.bonus-terms-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
}
.bonus-terms-list li:last-child { border-bottom: none; }
.bonus-terms-list li strong { color: var(--text-primary); }
.bonus-example {
  background: var(--bg-tertiary); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 24px; line-height: 1.6; border-left: 3px solid var(--accent-primary);
}
.bonus-card-disclaimer {
  padding: 12px 20px; background: rgba(0,0,0,0.2);
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
  border-top: 1px solid var(--border);
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.highlight-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.highlight-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.highlight-card::before {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(0,184,148,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.highlight-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.highlight-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.highlight-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== COMPARE CTA CARD ===== */
.compare-cta-card {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 36px;
  border-left: 4px solid var(--accent-primary);
}
@media (max-width: 768px) { .compare-cta-card { flex-direction: column; gap: 20px; padding: 24px; } }
.compare-cta-left { flex: 1; }
.compare-cta-left h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.compare-cta-left p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== GAME CATEGORY CARDS ===== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-bottom: 32px; }
.game-category-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.game-category-card:hover { border-color: var(--accent-primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.game-cat-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.game-category-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.game-category-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 4px; }
.games-cta-row { text-align: center; padding-top: 8px; }

/* Individual game cards (games.html) */
.games-grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.game-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.game-icon { font-size: 2rem; margin-bottom: 10px; }
.game-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; }
.game-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.game-tag {
  display: inline-block; background: var(--accent-dim); color: var(--accent-primary);
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; border: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ===== STATS GRID ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 32px 0; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
}
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent-primary); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ===== PAYMENTS SECTION ===== */
.payments-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.payment-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; min-width: 90px;
  transition: border-color var(--transition), transform var(--transition);
}
.payment-item:hover { border-color: var(--accent-primary); transform: translateY(-2px); }
.payment-item span { font-size: 0.75rem; color: var(--text-muted); text-align: center; font-weight: 500; }
/* Payment methods page cards */
.payment-methods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.payment-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color var(--transition);
}
.payment-card:hover { border-color: var(--border-strong); }
.payment-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.payment-card-header h3 { font-size: 1rem; font-weight: 700; }
.payment-detail-list { display: flex; flex-direction: column; gap: 8px; list-style: none; font-size: 0.88rem; }
.payment-detail-list li { display: flex; justify-content: space-between; color: var(--text-muted); }
.payment-detail-list li strong { color: var(--text-primary); }

/* ===== PROS / CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-card, .cons-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.pros-card { border-top: 4px solid var(--success); }
.cons-card { border-top: 4px solid var(--danger); }
.pros-title { color: var(--success); font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; }
.cons-title { color: var(--danger); font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; }
.pros-list, .cons-list { display: flex; flex-direction: column; gap: 0; list-style: none; }
.pros-list li, .cons-list li {
  padding: 9px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border);
  padding-left: 20px; position: relative; color: var(--text-muted);
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons-list li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0d2414 0%, #163520 50%, #1a3d22 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,148,0.10) 0%, transparent 65%);
  pointer-events: none;
}
@media (max-width: 768px) { .cta-banner { flex-direction: column; padding: 32px 24px; gap: 24px; } }
.cta-banner-content { flex: 1; position: relative; z-index: 1; }
.cta-banner-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.cta-banner-content p { color: var(--text-muted); margin-bottom: 8px; font-size: 0.93rem; line-height: 1.6; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }
.cta-banner-disclaimer { font-size: 0.75rem !important; color: var(--text-muted) !important; }
.cta-banner-disclaimer a { color: var(--accent-primary); }

/* ===== REVIEW HEADER ===== */
.review-header-section {
  padding: 100px 0 56px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0,184,148,0.09) 0%, transparent 55%),
    linear-gradient(160deg, #061209 0%, #0d2414 100%);
  border-bottom: 1px solid var(--border);
}
.review-header-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .review-header-grid { grid-template-columns: 1fr; } }
.review-h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.review-header-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.review-header-disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.review-header-disclaimer a { color: var(--accent-primary); }

.review-snapshot-card {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.review-snapshot-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
}
.snapshot-logo {
  display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.05rem;
  margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.snapshot-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; list-style: none; }
.snapshot-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.snapshot-list li:last-child { border-bottom: none; }
.snap-label { color: var(--text-muted); }
.snap-value { font-weight: 600; color: var(--text-primary); }
.snap-gold { color: var(--accent-gold); font-weight: 700; }
.snapshot-disclaimer { text-align: center; font-size: 0.74rem; color: var(--text-muted); margin-top: 10px; }

/* ===== TOC BOX ===== */
.toc-section {}
.toc-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-sm); padding: 22px 26px; margin-bottom: 36px;
}
.toc-title { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 14px; font-weight: 600; }
.toc-list { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.toc-list li { font-size: 0.9rem; }
.toc-list a { color: var(--text-muted); }
.toc-list a:hover { color: var(--accent-primary); }

/* ===== REVIEW SECTION ===== */
.review-section { scroll-margin-top: 80px; }
.review-section h2 { margin-bottom: 16px; }
.review-section p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 16px; }
.review-section h3 {
  font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px;
  color: var(--text-primary); padding-left: 12px;
  border-left: 3px solid var(--accent-primary);
}

/* ===== CONTENT SECTION HEADINGS (inner pages not using section-title) ===== */
.content-section h2, .content-section--alt h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.3px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px; position: relative;
}
.content-section h2::after, .content-section--alt h2::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 36px; height: 3px;
  background: var(--accent-primary); border-radius: 2px;
}
.content-section h3, .content-section--alt h3 {
  font-size: 1.08rem; font-weight: 700; color: var(--text-primary);
  margin: 28px 0 10px; padding-left: 12px;
  border-left: 3px solid var(--accent-primary);
}
.content-section p, .content-section--alt p {
  color: var(--text-muted); font-size: 0.97rem; line-height: 1.78; margin-bottom: 16px;
}
/* Inline h2 on pages using style= directly (bonus-code, payment-methods) */
.container > h2[id], .mw-860 > h2[id] {
  font-size: clamp(1.25rem, 2.3vw, 1.65rem); font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.3px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  margin: 40px 0 18px; position: relative;
}
.container > h2[id]::after, .mw-860 > h2[id]::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 36px; height: 3px;
  background: var(--accent-primary); border-radius: 2px;
}

/* ===== SCORE BARS ===== */
.score-bars { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 28px; }
.score-row { display: flex; align-items: center; gap: 14px; }
.score-label { font-size: 0.87rem; color: var(--text-muted); min-width: 140px; }
.score-bar-track { height: 10px; background: var(--bg-tertiary); border-radius: 100px; overflow: hidden; margin: 6px 0 12px; }
.score-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-primary), var(--accent-light)); border-radius: 100px; transition: width 1s cubic-bezier(.4,0,.2,1); }
.score-val { font-size: 0.87rem; font-weight: 700; color: var(--text-primary); min-width: 34px; text-align: right; }

/* ===== VERDICT BOX ===== */
.verdict-box {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 28px; margin-bottom: 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.verdict-positive { border-left: 5px solid var(--success); }
.verdict-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.verdict-content h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.verdict-content p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.verdict-rating { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.verdict-score { font-size: 1.6rem; font-weight: 800; color: var(--accent-gold); }
.verdict-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; }
.verdict-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.verdict-disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ===== DATA TABLE ===== */
.table-responsive { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--bg-tertiary); font-weight: 700; color: var(--text-muted); padding: 12px 18px; text-align: left; }
.data-table td { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); }
.data-table tr:hover td { background: var(--bg-card-hover); }
.highlight-teal { color: var(--accent-primary); font-weight: 700; }
.table-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }

/* ===== VIP TIERS ===== */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.tier-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.tier-gold { border-top: 3px solid var(--accent-gold); }
.tier-platinum { border-top: 3px solid #9ca3af; }
.tier-elite { border-top: 3px solid var(--accent-primary); box-shadow: 0 0 0 1px rgba(0,184,148,0.12); }
.tier-bronze { border-top: 3px solid #a16207; }
.tier-silver { border-top: 3px solid #9ca3af; }
.tier-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.tier-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.tier-entry { font-size: 0.78rem; color: var(--accent-primary); font-weight: 600; margin-bottom: 14px; display: block; }
.tier-perks { display: flex; flex-direction: column; gap: 6px; list-style: none; text-align: left; }
.tier-perks li { font-size: 0.82rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.tier-perks li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-size: 0.75rem; font-weight: 700; }

/* ===== METHODOLOGY GRID ===== */
.methodology-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.method-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: relative;
}
.method-num {
  position: absolute; top: -14px; left: 20px;
  background: var(--accent-primary); color: #fff;
  font-size: 0.82rem; font-weight: 800; padding: 4px 12px;
  border-radius: 100px;
}
.method-card h3 { font-size: 0.97rem; font-weight: 700; margin: 10px 0 8px; }
.method-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ===== TEAM CARD ===== */
.team-card {
  display: flex; gap: 28px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
@media (max-width: 640px) { .team-card { flex-direction: column; gap: 20px; } }
.team-avatar { flex-shrink: 0; }
.avatar-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
}
.team-bio h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.team-title { font-size: 0.82rem; color: var(--accent-primary); font-weight: 600; display: block; margin-bottom: 14px; }
.team-bio p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }

/* ===== CONTENT LISTS ===== */
.content-list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding-left: 0; margin-bottom: 20px; }
.content-list li { padding-left: 20px; position: relative; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.content-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); font-weight: 700; }
.content-list-ordered { counter-reset: olist; display: flex; flex-direction: column; gap: 8px; list-style: none; padding-left: 0; margin-bottom: 20px; }
.content-list-ordered li { counter-increment: olist; padding-left: 28px; position: relative; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.content-list-ordered li::before { content: counter(olist); position: absolute; left: 0; background: var(--accent-primary); color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; top: 2px; }

/* ===== STEP LIST ===== */
.step-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; background: var(--accent-primary);
  color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 0.97rem;
  box-shadow: 0 2px 10px rgba(0,184,148,0.3);
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.step-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ALTERNATIVES PAGE ===== */
.alt-casino-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.alt-casino-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.alt-casino-header h3 { font-size: 1.15rem; font-weight: 800; }
.alt-rating { color: var(--accent-gold); font-weight: 700; font-size: 0.95rem; }
.alt-casino-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 12px; }
.alt-compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 16px 0; }
@media (max-width: 640px) { .alt-compare-grid { grid-template-columns: 1fr; } }
.alt-compare-grid > div { background: var(--bg-tertiary); border-radius: var(--radius-sm); padding: 12px; font-size: 0.85rem; }
.alt-compare-grid > div strong { display: block; color: var(--text-primary); margin-bottom: 4px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.alt-compare-grid > div p { color: var(--text-muted); margin: 0; font-size: 0.85rem; }

/* ===== LEGIT PAGE ===== */
.verdict-box { }
.licence-fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 24px 0; }
.fact-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.fact-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 5px; font-weight: 600; }
.fact-value { display: block; font-size: 0.93rem; font-weight: 700; color: var(--text-primary); }

/* ===== TIPS GRID ===== */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tip-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; position: relative;
  padding-top: 28px;
}
.tip-num {
  position: absolute; top: -12px; left: 18px;
  background: var(--accent-gold); color: #000;
  font-size: 0.8rem; font-weight: 800; padding: 3px 11px;
  border-radius: 100px;
}
.tip-card h3 { font-size: 0.93rem; font-weight: 700; margin-bottom: 7px; }
.tip-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; color: var(--text-primary); font-size: 0.97rem; font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-primary); }
/* Hide any inline SVG chevrons — ::after handles the toggle indicator */
.faq-question svg { display: none !important; }
.faq-question::after {
  content: '+'; flex-shrink: 0; font-size: 1.3rem; font-weight: 300;
  color: var(--text-muted); line-height: 1; transition: transform 0.25s, color 0.25s;
  min-width: 20px; text-align: center;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); color: var(--accent-primary); }
.faq-item.active .faq-question { color: var(--accent-primary); }
.faq-answer {
  display: none; padding: 16px 22px 20px; color: var(--text-muted);
  font-size: 0.93rem; line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer p { margin-bottom: 10px; color: var(--text-muted); }
.faq-answer p:last-child { margin-bottom: 0; }
/* Direct text nodes inside faq-answer (no <p> wrapper in some pages) */
.faq-answer { color: var(--text-muted); }
.faq-answer ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 5px; }
.faq-item.active .faq-answer { display: block; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; }
.legal-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.legal-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 36px; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; color: var(--text-primary); }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; }
.legal-content p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.legal-content ul li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.legal-content a { color: var(--accent-primary); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 90px; right: 20px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 4px 4px 16px;
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition);
}
.floating-cta:hover { transform: translateY(-2px); }
.floating-cta .btn-primary { border-radius: 100px; padding: 10px 20px; font-size: 0.85rem; }
.floating-cta-close {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 1.1rem; line-height: 1; padding: 4px 10px 4px 4px;
  transition: color var(--transition);
}
.floating-cta-close:hover { color: var(--text-primary); }
@media (min-width: 769px) { .floating-cta { bottom: 24px; } }

/* ===== BOTTOM TAB BAR ===== */
.bottom-tabs {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: rgba(9,26,12,0.97); border-top: 1px solid var(--border);
  height: 64px;
}
@media (max-width: 768px) { .bottom-tabs { display: flex; } }
.tab-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--text-muted); font-size: 0.66rem; font-weight: 600;
  text-decoration: none; padding: 6px 0;
  transition: color var(--transition);
}
.tab-item.active, .tab-item:hover { color: var(--accent-primary); }
.tab-item svg { width: 22px; height: 22px; fill: currentColor; }

/* ===== AGE VERIFICATION ===== */
.age-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.age-overlay.hidden { display: none; }
.age-modal {
  background: var(--bg-secondary); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 44px 36px;
  max-width: 420px; width: 100%; text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.age-badge {
  display: inline-block; background: var(--accent-primary); color: #fff;
  font-size: 1.1rem; font-weight: 900; padding: 8px 20px;
  border-radius: 100px; margin-bottom: 20px;
}
.age-modal h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.age-modal p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.65; }
.age-buttons { display: flex; gap: 12px; justify-content: center; }
.btn-confirm {
  background: var(--accent-primary); color: #fff;
  border: none; padding: 13px 30px; border-radius: 100px;
  font-weight: 700; cursor: pointer; font-size: 0.97rem;
  transition: background var(--transition);
}
.btn-confirm:hover { background: var(--accent-light); }
.btn-exit {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-strong); padding: 13px 24px;
  border-radius: 100px; font-weight: 600; cursor: pointer;
  font-size: 0.9rem; transition: color var(--transition), border-color var(--transition);
}
.btn-exit:hover { color: var(--text-primary); border-color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 44px; margin-bottom: 44px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-col h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent-primary); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.87rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-col p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.75; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-disclaimer { display: flex; align-items: flex-start; gap: 12px; }
.footer-disclaimer p { color: var(--text-muted); font-size: 0.78rem; line-height: 1.6; }
.footer-copyright { color: var(--text-muted); font-size: 0.75rem; }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-primary); color: #fff;
  font-size: 0.7rem; font-weight: 900; padding: 3px 8px;
  border-radius: 4px; flex-shrink: 0; letter-spacing: 0.5px; min-width: 30px;
}
.mt-12 { margin-top: 12px; }

/* ===== COMPARE TABLE ===== */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th { background: var(--bg-tertiary); padding: 13px 18px; text-align: left; font-weight: 700; color: var(--text-primary); border-bottom: 1px solid var(--border); }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text-muted); font-weight: 500; }
.compare-winner { color: var(--success); font-weight: 700; }
.compare-loser { color: var(--text-muted); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.center-muted { text-align: center; color: var(--text-muted); font-size: 0.88rem; }
.mt-28 { margin-top: 28px; }
.mt-20 { margin-top: 20px; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.teal { color: var(--accent-primary); }
.gold { color: var(--accent-gold); }
.affiliate-link { /* semantic only — no visual override */ }
.full { color: var(--accent-gold); } /* star full state */
.tab-active { color: var(--accent-primary) !important; } /* bottom tab active alias */
.nav-active { color: var(--text-primary) !important; background: var(--accent-dim) !important; }
.bg-sec { background: var(--bg-secondary); }

/* ===== SECTION ALIASES (inner pages use different class names) ===== */
.content-section { padding: 64px 0; }
.content-section--alt { background: var(--bg-secondary); padding: 64px 0; }
@media (max-width: 768px) { .content-section, .content-section--alt { padding: 44px 0; } }

/* ===== PAGE HERO (alias — inner pages use .page-hero) ===== */
.page-hero {
  padding: 100px 0 56px;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(0,184,148,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #061209 0%, #0d2414 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero--narrow { padding: 100px 0 40px; }
@media (max-width: 768px) { .page-hero { padding: 84px 0 36px; } .page-hero--narrow { padding: 84px 0 28px; } }

.page-hero-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 44px; align-items: start;
}
@media (max-width: 900px) { .page-hero-inner { grid-template-columns: 1fr; } }
.page-hero-content h1 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* Page header (used on some pages instead of page-hero) */
.page-header { padding: 24px 0 8px; }
.page-title { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.4px; }
.page-header-subtitle { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }

.page-intro { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }

/* ===== BREADCRUMB ALIAS ===== */
.breadcrumb {
  display: flex; gap: 8px; align-items: center; list-style: none; font-size: 0.82rem;
}
.breadcrumb li { color: var(--text-muted); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; }
.breadcrumb li a { color: var(--text-muted); }
.breadcrumb li a:hover { color: var(--accent-primary); }
.breadcrumb li[aria-current="page"], .breadcrumb-current { color: var(--text-primary); font-weight: 500; }

/* ===== BONUS HIGHLIGHT CARD (hero right on bonuses page) ===== */
.bonus-highlight-card {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  position: relative; overflow: hidden; text-align: center;
}
.bonus-highlight-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
}
.bonus-badge {
  display: inline-block; background: var(--accent-primary); color: #fff;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 14px;
}
.bonus-amount {
  font-size: 1.7rem; font-weight: 800; color: var(--accent-gold);
  line-height: 1.1; margin-bottom: 4px;
}
.bonus-extra {
  font-size: 0.97rem; color: var(--accent-primary); font-weight: 600; margin-bottom: 18px;
}
.bonus-quick-facts {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border); margin-bottom: 18px;
}
.bonus-quick-facts li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem;
}
.bonus-quick-facts li:last-child { border-bottom: none; }
.fact-label { color: var(--text-muted); }
.bonus-disclaimer { font-size: 0.74rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ===== INFO BOX ===== */
.info-box {
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-sm); padding: 16px 20px;
  margin: 20px 0; font-size: 0.93rem; color: var(--text-muted); line-height: 1.7;
}
.info-box p { margin: 0; }
.info-box p + p { margin-top: 8px; }
.info-box strong { color: var(--text-primary); }
.info-box--gold { border-left-color: var(--accent-gold); background: rgba(245,197,24,0.06); }
.info-box--blue { border-left-color: #38bdf8; background: rgba(56,189,248,0.06); }
.info-box--warning { border-left-color: var(--danger); background: rgba(239,68,68,0.06); }

/* ===== INFO CARD ===== */
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  transition: border-color var(--transition);
}
.info-card:hover { border-color: var(--border-strong); }
.info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.info-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ===== FEATURE LIST (styled bullet list) ===== */
.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  margin: 16px 0 24px; padding: 0;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.feature-list li {
  padding: 11px 16px 11px 40px; position: relative;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓'; position: absolute; left: 14px;
  color: var(--accent-primary); font-weight: 700;
}
.feature-list li strong { color: var(--text-primary); }

/* ===== STEP NUMBER (variant of .step-num — bonuses / getting-started) ===== */
.step-number {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: var(--accent-primary); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,184,148,0.3);
}
ol.step-list { counter-reset: none; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 20px; }
ol.step-list li { display: flex; gap: 16px; align-items: flex-start; }
ol.step-list .step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
ol.step-list .step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
ol.step-list .step-content { flex: 1; }
.step-list--large gap { gap: 28px; }
.step-note { font-size: 0.83rem; color: var(--text-muted); margin-top: 6px; font-style: italic; }
.step-body { flex: 1; }

/* ===== TABLE ALIASES ===== */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.terms-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.terms-table th { background: var(--bg-tertiary); font-weight: 700; color: var(--text-muted); padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.terms-table td { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); }
.terms-table tr:hover td { background: var(--bg-card-hover); }

.facts-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.facts-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.facts-table th, .facts-table td { padding: 13px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.facts-table th { background: var(--bg-tertiary); color: var(--text-muted); font-weight: 600; width: 200px; white-space: nowrap; }
.facts-table td { background: var(--bg-card); color: var(--text-primary); }
.facts-table tr:last-child th, .facts-table tr:last-child td { border-bottom: none; }

.banking-table-wrap, .bonus-breakdown-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.banking-table, .bonus-breakdown-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.banking-table th, .bonus-breakdown-table th { background: var(--bg-tertiary); font-weight: 700; color: var(--text-muted); padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.banking-table td, .bonus-breakdown-table td { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); }

/* ===== PROS / CONS ALIASES ===== */
.proscons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .proscons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.pros-box { border-top: 4px solid var(--success); }
.cons-box { border-top: 4px solid var(--danger); }
.pros-box h3 { color: var(--success); font-size: 1.02rem; font-weight: 800; margin-bottom: 16px; }
.cons-box h3 { color: var(--danger); font-size: 1.02rem; font-weight: 800; margin-bottom: 16px; }
.pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.pros-box ul li, .cons-box ul li {
  padding: 8px 0 8px 22px; position: relative;
  font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.pros-box ul li:last-child, .cons-box ul li:last-child { border-bottom: none; }
.pros-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons-box ul li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* ===== CTA BANNER INNER ALIASES ===== */
.cta-banner-section { padding: 64px 0; }
@media (max-width: 768px) { .cta-banner-section { padding: 44px 0; } }
.cta-banner-inner {
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(135deg, #0d2414 0%, #163520 50%, #1a3d22 100%);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 44px 40px; position: relative; overflow: hidden;
}
.cta-banner-inner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,148,0.10) 0%, transparent 65%);
  pointer-events: none;
}
@media (max-width: 768px) { .cta-banner-inner { flex-direction: column; padding: 32px 24px; gap: 24px; } }
.cta-banner-action { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.cta-disclaimer { font-size: 0.78rem !important; color: var(--text-muted) !important; }
.cta-links { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.cta-links a { color: var(--accent-primary); }
.bonus-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.bonus-cta-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SUPPORT / SAFETY LISTS ===== */
.support-list, .safety-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 16px 0;
}
.support-list li, .safety-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}
.support-list li strong, .safety-list li strong { color: var(--text-primary); }

/* ===== QUICK FACTS GRID (getting-started) ===== */
.quick-facts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px; margin: 24px 0;
}
.quick-fact {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
}
.qf-icon { font-size: 1.6rem; }
.qf-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.qf-value { font-size: 0.93rem; font-weight: 700; color: var(--text-primary); }

/* ===== PAYMENT GRID (getting-started) ===== */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 20px 0; }
.payment-details { font-size: 0.83rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ===== BONUS TIER GRID (fair-go-bonus-code) ===== */
.bonus-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.bonus-tier {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-tier:hover { border-color: var(--accent-primary); transform: translateY(-3px); }
.bonus-tier-hero { border-color: var(--accent-primary); box-shadow: 0 0 0 1px rgba(0,184,148,0.15); }
.tier-label { font-size: 0.78rem; color: var(--accent-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; }
.tier-match { font-size: 1.5rem; font-weight: 800; color: var(--accent-gold); line-height: 1; margin-bottom: 4px; }
.tier-cap { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.tier-spins { font-size: 0.82rem; color: var(--text-muted); }

/* ===== SCORE BAR VARIANTS (review page) ===== */
.score-bar-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.score-bar-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}
.score-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.score-bar-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.score-bar-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.score-bar-value span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}
.score-bar-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== BUTTON ALIASES ===== */
.btn-full, .btn-primary.btn-full, .btn-cta.btn-full {
  width: 100%; justify-content: center; text-align: center; display: flex; border-radius: var(--radius-sm);
}
/* Plain .btn-primary / .btn-secondary / .btn-cta without .btn parent */
a.btn-primary:not(.btn), button.btn-primary:not(.btn) {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.97rem; padding: 13px 28px;
  border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  background: var(--accent-primary); color: #fff;
  box-shadow: 0 3px 14px rgba(0,184,148,0.35);
}
a.btn-primary:not(.btn):hover, button.btn-primary:not(.btn):hover {
  background: var(--accent-light); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,184,148,0.45);
}
a.btn-secondary:not(.btn), button.btn-secondary:not(.btn) {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.97rem; padding: 13px 28px;
  border-radius: 100px; text-decoration: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  background: transparent; color: var(--accent-primary); border: 2px solid var(--accent-primary);
}
a.btn-secondary:not(.btn):hover, button.btn-secondary:not(.btn):hover {
  background: var(--accent-dim); color: var(--accent-light); border-color: var(--accent-light);
}
.btn-large { padding: 15px 34px; font-size: 1.05rem; }

/* ===== SEMANTIC SECTION WRAPPERS (layout handled by grid/section) ===== */
.hero-left, .hero-right, .main-nav,
.bonus-section, .compare-section, .games-section,
.highlights-section, .more-guides-section, .payments-section,
.pros-cons-section, .cta-banner-section,
.review-header-left, .review-header-right { /* layout via parent grid */ }

/* ===== FLOATING CTA — `<a>` version (inner pages) ===== */
a.floating-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px; font-weight: 700; font-size: 0.88rem;
  background: var(--accent-primary); color: #fff !important;
  text-decoration: none;
}
a.floating-cta svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
a.floating-cta:hover { background: var(--accent-light); color: #fff !important; }

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 990;
  background: rgba(0,0,0,0.72);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-drawer {
  position: absolute; top: 0; right: 0;
  width: 290px; max-width: 88vw; height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}
.mobile-nav-overlay.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mobile-nav-header strong { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.mobile-nav-close-btn {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  font-size: 1.2rem; cursor: pointer; padding: 4px 10px;
  border-radius: var(--radius-sm); line-height: 1.4;
  transition: color var(--transition), border-color var(--transition);
}
.mobile-nav-close-btn:hover { color: var(--text-primary); border-color: var(--text-muted); }
.mobile-nav-links { list-style: none; flex: 1; padding: 8px 0; }
.mobile-nav-links a {
  display: block; padding: 14px 20px;
  color: var(--text-muted); font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--accent-primary); background: var(--accent-dim);
}
.mobile-nav-cta { padding: 20px; border-top: 1px solid var(--border); flex-shrink: 0; }

/* Hamburger → X animation */
.nav-hamburger span { transition: transform 0.22s ease, opacity 0.22s ease; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== AUTHOR PROFILE PAGE ===== */
.author-hero-section {
  background: var(--bg-secondary);
  padding: 100px 0 48px;
  border-bottom: 1px solid var(--border);
}
.author-hero-inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.author-hero-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent-primary);
  object-fit: cover;
  flex-shrink: 0;
}
.author-hero-name {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}
.author-hero-title {
  color: var(--accent-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.author-hero-bio {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}
.author-hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.author-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.author-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}
.author-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* Expertise grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.expertise-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.expertise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.expertise-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Author articles grid */
.author-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.author-article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: block;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  color: var(--text-primary);
}
.author-article-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-teal);
  color: var(--text-primary);
}
.author-article-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.author-article-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
  line-height: 1.35;
}
.author-article-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Standards list */
.standards-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.standards-list li {
  padding: 14px 16px 14px 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
}
.standards-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
}
.standards-list li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 768px) {
  .header-inner { height: 58px; }
  .header-spacer { height: 58px; }
  .hero-section { padding: 88px 0 48px; }
  .page-hero-section { padding: 84px 0 36px; }
  .review-header-section { padding: 84px 0 40px; }
  .author-hero-section { padding: 84px 0 36px; }
  .cta-banner { padding: 28px 20px; }
  .highlight-card, .game-category-card { padding: 22px; }
  .section-title { font-size: 1.4rem; }
  .footer-col h4 { margin-bottom: 12px; }
  .review-snapshot-card { margin-top: 24px; }
  .verdict-box { flex-direction: column; }
  .floating-cta { right: 14px; }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .author-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-hero-stats { justify-content: center; }
  .author-hero-name { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { justify-content: center; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .author-articles-grid { grid-template-columns: 1fr; }
}
