/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #F0F4F8;
  --surface:     #FFFFFF;
  --surface-2:   #E8EDF4;
  --surface-3:   #DDE4EE;
  --border:      #C8D4E3;
  --border-hi:   #A8BACE;
  --primary:     #B8CCE0;
  --primary-dim: rgba(77,159,255,0.08);
  --accent:      #1A6FD8;
  --accent-dark: #1358B0;
  --accent-dim:  rgba(26,111,216,0.12);
  --success:     #0FA86E;
  --danger:      #D93A3A;
  --warning-bg:  #FEF3C7;
  --warning-text:#92400E;
  --text:        #0D1520;
  --text-2:      #3A5070;
  --muted:       #7890A8;
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --header-h:    68px;
  --max-w:       1380px;
  --content-w:   780px;
  --radius:      8px;
  --radius-sm:   5px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.55rem); margin-top: 2.5rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  background: #0D1520;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-img { width: 38px; height: 38px; display: block; flex-shrink: 0; }
.logo-claim { color: #fff; }
.logo-big   { color: var(--accent); }
.logo-bonus { color: #fff; }

/* Desktop nav */
.site-nav { display: none; }
.site-nav > ul { display: flex; align-items: center; gap: 0.1rem; }
.site-nav a,
.site-nav .nav-dropdown-toggle {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a img,
.site-nav .nav-dropdown-toggle img:not(.caret) {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.site-nav a:hover,
.site-nav .nav-dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav a:hover img,
.site-nav .nav-dropdown-toggle:hover img:not(.caret) { opacity: 1; }
.site-nav a[aria-current="page"] { color: var(--accent); background: rgba(77,159,255,0.12); }

/* Dropdown toggle button */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-2);
  background: none; border: none; cursor: pointer;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--text); background: var(--surface-2); }
.nav-dropdown-toggle .caret {
  filter: invert(30%) sepia(10%) saturate(300%) hue-rotate(180deg);
  transition: transform 0.2s var(--ease);
}
.nav-dropdown.open .caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px); right: 0;
  min-width: 196px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  max-height: 70vh;
  overflow-y: auto;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: var(--primary-dim);
  padding-left: 1.1rem;
}
.nav-dropdown-menu a.nav-dropdown-all {
  margin-top: 0.3rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-hi);
  border-radius: 0;
  color: var(--accent);
  font-weight: 600;
}
.nav-dropdown-menu a.nav-dropdown-all:hover {
  background: var(--primary-dim);
  padding-left: 0.85rem;
}

/* Hamburger */
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  cursor: pointer; flex-shrink: 0;
  transition: border-color 0.18s, background 0.18s;
}
.nav-toggle:hover { border-color: var(--accent); background: rgba(255,255,255,0.14); }
.nav-toggle img { filter: brightness(0) invert(1); }
.icon-close { display: none; }
.icon-open  { display: block; }
body.nav-open .icon-close { display: block; }
body.nav-open .icon-open  { display: none; }
body.nav-open .nav-toggle { border-color: var(--accent); background: var(--primary-dim); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 400;
  overflow-y: auto;
  border-top: 2px solid var(--accent);
}
body.nav-open .mobile-nav { display: block; }
.mobile-nav > ul { display: flex; flex-direction: column; padding: 0.5rem 0 2rem; }
.mobile-nav a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem; font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--accent); background: var(--primary-dim); padding-left: 2rem; }
.mobile-nav a.mob-section-all { color: var(--accent); font-weight: 700; }
.mobile-section-label {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  list-style: none;
  display: list-item;
}

/* Mobile casino review grid */
.mob-reviews-grid-wrap {
  list-style: none;
  padding: 0.5rem 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mob-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.mobile-nav .mob-reviews-grid a {
  display: block;
  padding: 8px 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mobile-nav .mob-reviews-grid a:hover {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent);
  padding-left: 4px;
}
.mobile-nav .mob-reviews-all {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--primary-dim);
  border-color: var(--accent);
}
.mobile-nav .mob-reviews-all:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

/* Desktop breakpoint */
@media (min-width: 900px) {
  .site-nav  { display: flex; align-items: center; }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* ── Back to top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--accent);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(26,111,216,0.35);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top img { filter: brightness(10); }

/* ── Page hero ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0D1520 0%, #142240 60%, #1A3D6B 100%);
  padding: 1.25rem 1.25rem 1.25rem;
}
.page-hero .hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb-bar {
  background: #0D1520;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.breadcrumb-bar .breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.15rem 1.25rem;
  margin-bottom: 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { font-size: 0.7rem; opacity: 0.4; }
.hero-casino-name {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.hero-sep {
  width: 1px; height: 1.4em;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  flex: 1;
  min-width: 0;
}
.hero-stars {
  display: flex; align-items: center; gap: 0.3rem;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .page-hero .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-casino-name { white-space: normal; font-size: 1.4rem; }
  .hero-sep { display: none; }
  .hero-subtitle { flex: none; }
  .hero-stars { margin-left: 0; }
}
.hero-stars .stars {
  display: flex; gap: 2px;
}
.hero-stars img { filter: invert(80%) sepia(60%) saturate(600%) hue-rotate(5deg); }
.hero-rating-num {
  font-size: 1.1rem; font-weight: 700; color: #FFD060;
  margin-left: 0.4rem;
}
.hero-rating-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ── Casino showcase (homepage screenshot above hero) ────────── */
.casino-showcase {
  background: var(--showcase-bg, #0D1520);
  padding: 0 1rem 0;
}
.casino-showcase-img {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  line-height: 0;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.casino-showcase-img img {
  display: block;
  width: 100%;
  height: auto;
}
.casino-showcase-img::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(to top, var(--showcase-bg, #0D1520), transparent);
  pointer-events: none;
}

/* ── Main content wrapper ────────────────────────────────────── */
.review-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 960px) {
  .review-wrap {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

/* ── Review sidebar (sticky quick-facts card) ────────────────── */
.review-sidebar {
  order: -1;
  margin-top: 2rem;
}
@media (min-width: 960px) {
  .review-sidebar {
    order: 2;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    margin-top: 2rem;
  }
}

/* ── Quick facts card ────────────────────────────────────────── */
.facts-card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
}
.facts-card-head {
  background: linear-gradient(160deg, #080F1C 0%, #0F2340 50%, #1A3D6B 100%);
  padding: 1.4rem 1.25rem 1.1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.facts-card-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #4D9FFF);
}
.facts-casino-logo-wrap {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin-bottom: 0.75rem;
  min-width: 140px; min-height: 52px;
}
.facts-casino-logo-wrap img { max-width: 140px; max-height: 46px; }
.facts-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.facts-rating-row {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.facts-stars { display: flex; gap: 2px; }
.facts-stars img { filter: invert(80%) sepia(60%) saturate(600%) hue-rotate(5deg); }
.facts-score { font-size: 1.3rem; font-weight: 700; color: #FFD060; }

.facts-bonus-highlight {
  background: linear-gradient(90deg, #1358B0, var(--accent));
  color: #fff;
  text-align: center;
  padding: 0.85rem 1rem;
}
.facts-bonus-highlight .bonus-label { font-size: 0.67rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.8; }
.facts-bonus-highlight .bonus-value { font-size: 1.05rem; font-weight: 800; line-height: 1.3; margin-top: 0.2rem; letter-spacing: -0.01em; }

.facts-list {
  padding: 0.5rem 0;
}
.facts-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1.1rem;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}
.facts-row:nth-child(even) { background: var(--bg); }
.facts-row:last-child { border-bottom: none; }
.facts-key { font-size: 0.72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.facts-val { font-size: 0.85rem; font-weight: 600; color: var(--text); text-align: right; }

.facts-cta {
  padding: 1rem 1.1rem 1.25rem;
}
.btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #4D9FFF);
  color: #fff;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.15s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(26,111,216,0.4);
}
.btn-cta:hover { opacity: 0.9; transform: translateY(-2px); text-decoration: none; box-shadow: 0 6px 24px rgba(26,111,216,0.5); }
.facts-tcs { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }
.facts-tcs a { color: var(--muted); text-decoration: underline; }

/* ── Review main content ─────────────────────────────────────── */
.review-main { margin-top: 2rem; }

/* Affiliate disclosure bar */
.disclosure-bar {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.disclosure-bar a { color: var(--text-2); text-decoration: underline; }

/* Pros / cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0 2.25rem;
}
@media (max-width: 560px) {
  .pros-cons { grid-template-columns: 1fr; }
}
.pros-box, .cons-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border: none;
}
.pc-heading {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.9rem 1.1rem;
  margin: 0;
  color: #fff;
}
.pc-heading img { flex-shrink: 0; filter: brightness(10); }
.pros-box .pc-heading { background: var(--success); }
.cons-box .pc-heading { background: var(--danger); }
.pc-list {
  background: var(--surface);
  padding: 0.25rem 0 0.5rem;
  display: flex; flex-direction: column;
}
.pc-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; line-height: 1.55;
  padding: 0.55rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.pc-item:last-child { border-bottom: none; }
.pc-item img { flex-shrink: 0; margin-top: 0.18rem; }
.pros-box .pc-item img { filter: invert(40%) sepia(90%) saturate(600%) hue-rotate(120deg); }
.cons-box .pc-item img { filter: invert(30%) sepia(80%) saturate(800%) hue-rotate(340deg); }

/* Section headings */
.section-heading {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 2.75rem; margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 52px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-heading img {
  flex-shrink: 0;
  width: 26px; height: 26px;
  filter: invert(25%) sepia(80%) saturate(700%) hue-rotate(190deg);
}
.section-heading h2 { margin: 0; font-size: 1.25rem; letter-spacing: -0.01em; }

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table tr:nth-child(odd) td { background: var(--surface); }
.info-table tr:nth-child(even) td { background: var(--bg); }
.info-table td {
  padding: 0.7rem 1rem;
  vertical-align: middle;
}
.info-table td:first-child {
  width: 38%;
  color: var(--text-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.info-table td:last-child { font-weight: 500; color: var(--text); }

/* Promo day table */
.promo-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.875rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.promo-table tr { border-bottom: 1px solid var(--border); background: var(--surface); }
.promo-table tr:last-child { border-bottom: none; }
.promo-table tr:nth-child(even) { background: var(--bg); }
.promo-table td { padding: 0.7rem 1rem; vertical-align: middle; }
.promo-table td:first-child { width: 36%; white-space: nowrap; }
.promo-table .day-chip {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}
.promo-table td:last-child { font-weight: 500; }

@media (max-width: 500px) {
  .info-table {
    table-layout: fixed;
  }
  .info-table td {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .info-table td:first-child {
    white-space: normal;
    width: 40%;
  }
  .promo-table td {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .promo-table td:first-child {
    white-space: normal;
    width: auto;
  }
}

/* Bonus highlight box */
.bonus-box {
  background: linear-gradient(135deg, #0D1828 0%, #0F2A50 60%, #1A3D70 100%);
  border: 1px solid rgba(26,111,216,0.25);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.4rem;
  margin: 1.5rem 0 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,24,40,0.25);
}
.bonus-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(26,111,216,0.22) 0%, transparent 68%);
  pointer-events: none;
}
.bonus-box .bonus-title {
  font-size: 1.6rem; font-weight: 800;
  color: #FFD060;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}
.bonus-box .bonus-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0;
  line-height: 1.65;
  position: relative;
}
.bonus-tcs {
  margin-top: 0.9rem;
  font-size: 0.71rem;
  color: rgba(255,255,255,0.28);
  font-style: italic;
  position: relative;
}

/* Warning box */
.warning-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: #78350F;
  margin: 1.25rem 0;
  line-height: 1.6;
}

/* RG section */
.rg-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  margin-top: 2.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.rg-section h2 { margin-top: 0; font-size: 1.15rem; }
.rg-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 0.75rem;
}
.rg-link {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.rg-link:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* Age warning bar */
.age-bar {
  background: #1A1A2E;
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
}
.age-bar strong { color: #fff; }

/* ── Site Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  margin-top: 3rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}
.footer-heading {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-disclaimer,
.footer-legal,
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-disclaimer a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-copy { color: rgba(255,255,255,0.25); margin-top: 0.25rem; }

/* ── Money pages ─────────────────────────────────────────────── */
.mp-content { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem 3rem; }
/* Money-page intro lead (first paragraph after hero) */
.mp-content > p:first-of-type {
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--text);
  margin-top: 1.8rem;
}
.mp-content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.15rem;
  line-height: .78;
  font-weight: 800;
  color: var(--accent);
  margin: .1rem .6rem -.1rem 0;
}
.mp-hero-h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); color: #fff; margin: 0 0 .75rem; line-height: 1.2; }
.mp-hero-lead { color: rgba(255,255,255,.7); font-size: 1rem; margin: 0 0 1.25rem; max-width: 600px; }
.mp-stats-strip {
  display: flex; gap: .65rem; flex-wrap: wrap; margin-top: .5rem;
}
.mp-stat-chip {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; padding: .3rem .7rem; font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.85); white-space: nowrap;
}
/* Disclosure bar */
.disclosure-bar {
  background: #e8f4fd; border-bottom: 1px solid #bee3f8;
  padding: .55rem 1.25rem; font-size: .78rem; color: #1a5276; text-align: center;
}
.disclosure-bar a { color: #1a5276; text-decoration: underline; }

/* Quick-pick recommendation */
.quick-pick-card {
  background: linear-gradient(180deg, #ffffff, #f1f7ff);
  border: 1px solid var(--accent);
  border-radius: 12px; padding: 1.3rem 1.5rem;
  display: grid; grid-template-columns: 52px 1fr auto; gap: 1.1rem;
  align-items: center; margin: 1.75rem 0;
  box-shadow: 0 16px 38px -26px rgba(20,82,168,.5);
}
.qp-rank {
  width: 52px; height: 52px;
  background: linear-gradient(180deg, #ffd873, #f0a417); color: #5c4310;
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem; font-weight: 800;
  flex-shrink: 0; font-family: var(--font-display); letter-spacing: -.02em;
  box-shadow: 0 8px 18px -8px rgba(241,164,23,.6);
}
.qp-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .2rem; }
.qp-bonus { color: var(--accent); font-weight: 700; }
.qp-tag { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.btn-accent,
.qp-cta .btn-accent {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .55rem 1.2rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; text-decoration: none; white-space: nowrap;
  transition: background .15s; border: none; cursor: pointer;
}
.btn-accent:hover,
.qp-cta .btn-accent:hover { background: var(--accent-dark); text-decoration: none; }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 580px;
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.compare-table thead tr { background: var(--surface-2); }
.compare-table th {
  padding: .6rem .75rem; text-align: left; font-size: .75rem;
  font-weight: 700; color: var(--text-2); text-transform: uppercase;
  letter-spacing: .04em; border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.compare-table th.th-icon-wrap {
  text-align: center;
}
.th-col-icon {
  display: inline-flex; flex-direction: column; align-items: center; gap: .25rem;
}
.th-col-icon img { width: 18px; height: 18px; opacity: .7; }
.compare-table td {
  padding: .7rem .75rem; font-size: .88rem; vertical-align: middle;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--primary-dim); }
.casino-cell-logo {
  display: flex; align-items: center; gap: .65rem;
}
.casino-cell-logo img {
  width: 80px; height: 30px; object-fit: contain; border-radius: 3px;
  flex-shrink: 0;
}
.casino-cell-name { font-weight: 600; font-size: .85rem; }
.casino-cell-rank {
  width: 22px; height: 22px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--text-2); flex-shrink: 0;
}
.casino-cell-rank.rank-top { background: var(--accent); border-color: var(--accent); color: #fff; }
.wager-pill {
  display: inline-block; padding: .15rem .45rem; border-radius: 3px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.wager-free { background: #dcfce7; color: #15803d; }
.wager-low  { background: #fef9c3; color: #a16207; }
.wager-med  { background: #ffedd5; color: #c2410c; }
.wager-high { background: #fee2e2; color: #b91c1c; }
.lic-pill {
  display: inline-block; padding: .15rem .45rem; border-radius: 3px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.lic-mga  { background: #dbeafe; color: #1d4ed8; }
.lic-iom  { background: #ede9fe; color: #6d28d9; }
.lic-est  { background: #d1fae5; color: #065f46; }
.lic-crc  { background: #fce7f3; color: #9d174d; }
.lic-kah  { background: #e0f2fe; color: #075985; }
.lic-anj  { background: #fee2e2; color: #b91c1c; }
.stars-sm { display: flex; gap: 2px; align-items: center; }
.stars-sm img { width: 13px; height: 13px; }
.stars-sm span { font-weight: 700; font-size: .82rem; margin-left: 3px; }
.table-cta-btn {
  display: inline-block; background: var(--accent); color: #fff !important;
  padding: .3rem .75rem; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 700; white-space: nowrap;
  transition: background .15s; text-decoration: none !important;
}
.table-cta-btn:hover { background: var(--accent-dark); }

/* Callout boxes */
.callout-info {
  background: #eff6ff; border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem; margin: 1.5rem 0;
}
.callout-info p { margin: 0; font-size: .88rem; color: var(--text); }
.callout-info h4 { color: var(--accent); margin-bottom: .4rem; font-size: .95rem; }
.callout-warning {
  background: var(--warning-bg); border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem; margin: 1.5rem 0;
}
.callout-warning p { margin: 0; font-size: .88rem; color: var(--warning-text); }
.callout-warning h4 { color: #92400e; margin-bottom: .4rem; font-size: .95rem; }
.callout-success {
  background: #f0fdf4; border-left: 4px solid var(--success);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem; margin: 1.5rem 0;
}
.callout-success p { margin: 0; font-size: .88rem; color: #166534; }
.callout-success h4 { color: var(--success); margin-bottom: .4rem; font-size: .95rem; }
.reform-banner {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d1b5e 100%);
  border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; color: #fff;
}
.reform-banner h3 { color: #fff; margin-bottom: .6rem; font-size: 1.1rem; }
.reform-banner p { color: rgba(255,255,255,.75); font-size: .88rem; }
.reform-banner p:last-child { margin-bottom: 0; }

/* Casino dive cards */
.casino-dive { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 2rem 0; }
.casino-dive-header {
  background: var(--accent); color: #fff;
  padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
}
.casino-dive-rank {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  opacity: .35; line-height: 1;
}
.casino-dive-title { font-size: 1.1rem; font-weight: 700; }
.casino-dive-bonus-val { font-size: 1.35rem; font-weight: 800; }
.casino-dive-body { padding: 1.5rem; }
.casino-logo-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.casino-logo-row img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }
.casino-logo-row .rating-pill {
  margin-left: auto; background: var(--accent); color: #fff;
  padding: .3rem .7rem; border-radius: 20px; font-weight: 700; font-size: .9rem;
}
.casino-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 1rem 0; }
.fact-row { display: flex; align-items: flex-start; gap: .55rem; }
.fact-sq {
  width: 28px; height: 28px; border-radius: 4px; background: var(--primary-dim);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fact-sq img { width: 15px; height: 15px; }
.fact-text { font-size: .83rem; color: var(--text); line-height: 1.4; }
.fact-text strong { display: block; font-size: .75rem; color: var(--text-2); text-transform: uppercase; letter-spacing: .03em; }
.casino-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.pc-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-2); margin-bottom: .5rem; }
.pc-col ul { display: flex; flex-direction: column; gap: .4rem; }
.pc-col li { display: flex; align-items: flex-start; gap: .4rem; font-size: .84rem; line-height: 1.4; }
.pc-col li img { flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
.casino-dive-cta { padding: 1.25rem 1.5rem; background: var(--surface-2); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.casino-dive-cta .tc-note { font-size: .75rem; color: var(--muted); }
.btn-visit {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .6rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem; text-decoration: none; white-space: nowrap;
  transition: background .15s;
}
.btn-visit:hover { background: var(--accent-dark); text-decoration: none; }
.btn-review {
  display: inline-block; color: var(--accent); font-weight: 600; font-size: .88rem;
  text-decoration: none; white-space: nowrap;
}
.btn-review:hover { text-decoration: underline; }

/* Author box */
.author-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; margin: 2.2rem 0;
}
.author-photo {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex: none; border: 1px solid var(--border);
}
.author-name { font-weight: 700; font-size: .95rem; margin-bottom: .12rem; }
.author-role { font-size: .78rem; color: var(--muted); margin: .12rem 0 .5rem; }
.author-bio-text { font-size: .86rem; color: var(--text-2); margin: 0; line-height: 1.55; }

/* Responsive */
@media (max-width: 600px) {
  .quick-pick-card { grid-template-columns: 1fr; gap: .75rem; }
  .qp-cta { text-align: right; }
  .casino-facts { grid-template-columns: 1fr; }
  .casino-pros-cons { grid-template-columns: 1fr; }
  .casino-dive-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .casino-dive-cta { flex-direction: column; }

  /* Comparison table: hide rank column + star images to fit on narrow screens */
  .compare-table { min-width: 420px; }
  .compare-table td:nth-child(1),
  .compare-table th:nth-child(1) { display: none; }
  .stars-sm img { display: none; }
  .stars-sm span { margin-left: 0; font-size: .88rem; font-weight: 700; }
}

/* ── Money page two-column hero ─────────────────── */
.page-hero:has(.mp-hero-wrap) {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 145% at 85% -15%, #20406e 0%, #11264a 52%, #0b1830 100%);
}
.page-hero:has(.mp-hero-wrap)::before {
  content: ""; position: absolute; right: 17%; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(241,164,23,.20), transparent);
  pointer-events: none;
}
.page-hero:has(.mp-hero-wrap)::after {
  content: ""; position: absolute; right: -80px; bottom: -130px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(52,210,123,.15), transparent);
  pointer-events: none;
}
.mp-hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.4rem 1.25rem 2rem;
  align-items: center;
}
.mp-hero-left { display: flex; flex-direction: column; gap: .8rem; }
.mp-hero-right { display: flex; flex-direction: column; gap: .75rem; }
.mp-featured-casino {
  position: relative;
  background: linear-gradient(165deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 1.6rem 1.15rem 1.3rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .55rem; text-align: center;
  box-shadow: 0 32px 58px -30px rgba(0,0,0,.7);
}
.mfc-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .66rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: #5c4310; margin: 0;
  background: linear-gradient(180deg, #ffe7a6, #f3c763);
  border: 1px solid #e4c067; border-radius: 4px; padding: .24rem .65rem;
  white-space: nowrap; box-shadow: 0 8px 18px -8px rgba(241,164,23,.7);
}
.mfc-label::before { content: "\2605\00a0"; color: #b5840f; }
.mfc-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: -.01em; }
.mfc-bonus { font-size: .8rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.4; }
.mfc-cta {
  display: block; width: 100%; text-align: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .9rem;
  border-radius: 7px; padding: .6rem .75rem; text-decoration: none; margin-top: .35rem;
  transition: background .15s;
}
.mfc-cta:hover { background: var(--accent-dark); text-decoration: none; }
.mp-hero-disclosure {
  font-size: .75rem; color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.08); border-radius: 5px;
  padding: .55rem .85rem; background: rgba(255,255,255,.03); line-height: 1.45;
}
.mp-hero-disclosure a { color: rgba(255,255,255,.6); text-decoration: underline; }
.mp-hero-byline {
  display: flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: .6rem .75rem;
}
.mp-hero-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mp-hero-avatar img { filter: brightness(3) opacity(.5); }
.mp-hero-author { display: block; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.75); }
.mp-hero-edited { display: block; font-size: .69rem; color: rgba(255,255,255,.4); }
@media (max-width: 820px) {
  .mp-hero-wrap { grid-template-columns: 1fr; gap: 1.25rem; }
  .mp-hero-right { flex-direction: row; flex-wrap: wrap; }
  .mp-featured-casino { flex: 1; min-width: 220px; }
  .mp-hero-byline { flex: 1; min-width: 180px; }
}

/* ── FAQ section ─────────────────────────────────── */
.faq-section { margin: 2rem 0; }
.faq-section > h2 { margin-bottom: 1rem; }
.faq-list { display: flex; flex-direction: column; gap: .45rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; background: var(--surface);
}
.faq-item summary {
  padding: .9rem 1.1rem; cursor: pointer;
  font-weight: 600; font-size: .93rem; color: var(--text);
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; user-select: none; gap: .75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.25rem; font-weight: 300;
  color: var(--accent); flex-shrink: 0;
}
.faq-item[open] > summary::after { content: '\2212'; }
.faq-item[open] > summary { color: var(--accent); }
.faq-body {
  padding: 0 1.1rem 1rem; font-size: .88rem;
  color: var(--text-2); line-height: 1.6;
}
.faq-body p { margin: 0; }

/* ── Author byline links (shared across money pages) ── */
.mp-hero-author a, .author-name a { color: inherit; text-decoration: none; }
.mp-hero-author a:hover, .author-name a:hover { text-decoration: underline; }
