/* ===============================================
   Casino Canadian — style.css
   Palette: white body + maple red accent + gold highlight
   Mobile-first
   =============================================== */

/* ---------- FALLBACK FONT METRICS (anti-CLS) ---------- */
@font-face {
  font-family: 'Manrope-fallback';
  src: local('Arial'), local('Liberation Sans'), local('Arimo'), local('Helvetica Neue');
  size-adjust: 100%;
  ascent-override: 98%;
  descent-override: 27%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Inter-fallback';
  src: local('Arial'), local('Liberation Sans'), local('Arimo'), local('Helvetica Neue');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22.43%;
  line-gap-override: 0%;
}

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces */
  --bg-page: #FFFFFF;
  --bg-body: #FBF7F4;          /* warm off-white */
  --bg-card: #FFFFFF;
  --bg-section-alt: #F5EEE9;   /* cream for alt sections */
  --bg-soft-red: #FFF2F2;
  --bg-dark: #14110F;          /* warm near-black for footer */
  --bg-dark-2: #1F1A17;

  /* Text */
  --text: #1A1512;
  --text-muted: #6B6058;
  --text-soft: #786D64;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #C7BEB5;

  /* Maple red (primary CTA + accents — matched to logo) */
  --red: #D8232A;
  --red-deep: #A8151B;
  --red-hover: #B81D23;
  --red-soft: #FFEDED;
  --red-border: #F4C7C9;

  /* Gold (subtle highlight — matched to logo outline) */
  --gold: #D4A343;
  --gold-deep: #A8801F;
  --gold-soft: #FFF6DB;
  --gold-text: #4A3610;

  /* Trust green (positive signals) */
  --green: #1F8B4C;
  --green-soft: #E6F5EB;
  --green-text: #165A32;

  /* Navy link (info/secondary) */
  --navy: #0F2A47;
  --navy-hover: #0A1E33;

  /* Borders */
  --border: #EEE5DD;
  --border-strong: #D9CCBF;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 21, 18, .06);
  --shadow-card: 0 2px 12px rgba(26, 21, 18, .07);
  --shadow-card-hover: 0 10px 30px rgba(26, 21, 18, .12);
  --shadow-cta: 0 4px 14px rgba(216, 35, 42, .32);
  --shadow-top: 0 6px 28px rgba(212, 163, 67, .22);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --gutter: 20px;

  /* Type */
  --font-heading: 'Manrope', 'Manrope-fallback', system-ui, sans-serif;
  --font-body: 'Inter', 'Inter-fallback', system-ui, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(28px, 5vw, 44px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 3.6vw, 34px); letter-spacing: -0.015em; }
h3 { font-size: clamp(19px, 2.4vw, 22px); }
h4 { font-size: 17px; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
strong { font-weight: 700; color: var(--text); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 48px 0; }
@media (min-width: 768px) { section { padding: 64px 0; } }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  font-size: 13px;
  padding: 9px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  border-bottom: 2px solid var(--red);
}
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.trust-bar .tb-icon {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.trust-bar strong { color: var(--gold); font-weight: 600; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  flex: 0 0 auto;
  display: inline-block;
}
.site-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter:
    drop-shadow(0 1px 2px rgba(26, 21, 18, .08))
    drop-shadow(0 4px 8px rgba(26, 21, 18, .10))
    drop-shadow(0 10px 18px rgba(26, 21, 18, .06));
  transition: transform .25s ease, filter .25s ease;
}
.site-logo:hover img {
  transform: translateY(-1px) scale(1.02);
  filter:
    drop-shadow(0 1px 2px rgba(26, 21, 18, .08))
    drop-shadow(0 6px 12px rgba(26, 21, 18, .14))
    drop-shadow(0 14px 26px rgba(26, 21, 18, .10));
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background .15s ease;
}
.nav-toggle:hover { background: var(--red-soft); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.main-nav { display: none; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--r-sm);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  background: var(--red-soft);
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .08),
    0 4px 10px rgba(216, 35, 42, .12),
    0 10px 20px rgba(216, 35, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .main-nav { display: block; }
}

/* Mobile nav open state */
.main-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 10px var(--gutter);
  z-index: 30;
}
.main-nav.open ul {
  flex-direction: column;
  gap: 0;
}
.main-nav.open a {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

/* ---------- NAV DROPDOWNS (MENU-SPEC 2026-07) ---------- */
.main-nav li { position: relative; }
.nav-label {
  display: inline-block;
  padding: 8px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--r-sm);
  cursor: default;
}
.drop { list-style: none; margin: 0; padding: 0; }

@media (min-width: 960px) {
  .drop-toggle { display: none; }
  .has-drop > a::after, .has-drop > .nav-label::after {
    content: "\25BE";
    font-size: 10px;
    margin-left: 5px;
    opacity: .55;
  }
  .has-drop > .drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 235px;
    margin-top: 8px;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-card-hover);
    padding: 8px;
    z-index: 40;
  }
  /* invisible hover bridge so the pointer can travel from parent to panel */
  .has-drop > .drop::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
  }
  .has-drop:hover > .drop, .has-drop:focus-within > .drop { display: block; }
  /* keep the last panels inside the viewport */
  .main-nav li:nth-last-child(-n+2) .drop { left: auto; right: 0; }
  .drop a {
    display: block;
    padding: 9px 12px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: var(--r-sm);
  }
  .drop a:hover { transform: none; box-shadow: none; }
  .drop-all a { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 11px; font-weight: 700; color: var(--red-deep); }
}

/* Mobile: accordion groups inside the open hamburger panel */
.main-nav.open .has-drop { display: flex; flex-wrap: wrap; align-items: center; }
.main-nav.open .has-drop > a, .main-nav.open .has-drop > .nav-label { flex: 1 1 auto; }
.main-nav.open .nav-label { display: block; padding: 12px 14px; border-bottom: 1px solid var(--border); cursor: pointer; }
.main-nav.open .drop-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  height: 44px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.main-nav.open .drop-toggle::before { content: "\25BE"; font-size: 13px; transition: transform .2s ease; }
.main-nav.open li.open > .drop-toggle::before { transform: rotate(180deg); }
.main-nav.open .has-drop > .drop { display: none; flex-basis: 100%; padding-left: 14px; }
.main-nav.open li.open > .drop { display: block; }
.drop-toggle { display: none; background: none; border: 0; padding: 0; cursor: pointer; }


/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(216, 35, 42, .08), transparent 60%),
    radial-gradient(900px 400px at 10% 110%, rgba(212, 163, 67, .10), transparent 60%),
    linear-gradient(180deg, #FFFDFB 0%, var(--bg-body) 100%);
  padding: 20px 0 40px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 48px; }
  .hero { padding: 20px 0 64px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .08),
    0 4px 10px rgba(216, 35, 42, .12),
    0 10px 20px rgba(216, 35, 42, .06),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-eyebrow:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .08),
    0 6px 14px rgba(216, 35, 42, .18),
    0 14px 26px rgba(216, 35, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.hero-eyebrow::before {
  content: "🍁";
  font-size: 14px;
}
.hero h1 { margin-bottom: 16px; }
.hero h1 .accent { color: var(--red); }
.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}
/* On inner pages the lede sits inside .content-body, whose `p` rule (16.5px, full
   --text colour) otherwise overrides .hero-lede and makes the intro darker/larger
   than the homepage. Re-assert the hero lede look with higher specificity. */
.hero .hero-lede,
.hero .content-body .hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}
/* Homepage lede shares the hero row with the image, so cap it. Inner-page heroes are
   single-column and full width, so let the lede span the whole section under the H1. */
.hero .hero-grid .hero-lede { max-width: 560px; }
.hero .content-body .hero-lede { max-width: none; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 12px rgba(26, 21, 18, .08),
    0 14px 28px rgba(26, 21, 18, .06),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-stats:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 8px 18px rgba(26, 21, 18, .12),
    0 20px 40px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.hero-stat { }
.hero-stat .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.hero-visual img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 4px rgba(26, 21, 18, .12))
    drop-shadow(0 8px 16px rgba(26, 21, 18, .15))
    drop-shadow(0 24px 40px rgba(26, 21, 18, .18));
  transition: transform .35s ease, filter .35s ease;
}
.hero-visual img:hover {
  transform: translateY(-4px);
  filter:
    drop-shadow(0 2px 4px rgba(26, 21, 18, .12))
    drop-shadow(0 12px 22px rgba(26, 21, 18, .18))
    drop-shadow(0 32px 50px rgba(26, 21, 18, .22));
}
@media (max-width: 899px) {
  .hero { position: relative; overflow: hidden; }
  /* The fade overlay exists only to dim the homepage hero image. Scope it to heroes
     that actually have a .hero-visual, or it washes out the text on inner-page heroes
     (listings/hubs) that have no image behind them. */
  .hero:has(.hero-visual)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, var(--bg-body) 38%, rgba(251,247,244,0.6) 65%, transparent 85%);
    z-index: 1;
    pointer-events: none;
  }
  /* Keep hero text above the overlay regardless. */
  .hero .content-body, .hero .hero-grid { position: relative; z-index: 2; }
  .hero-visual {
    position: absolute;
    top: 12%;
    right: -8%;
    width: 68%;
    height: 90%;
    z-index: 0;
    pointer-events: none;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .hero-visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: right top;
    opacity: 0.28;
    filter: none;
    transform: none !important;
    transition: none;
  }
  .hero-visual img:hover { transform: none !important; filter: none; }
  .hero-grid { position: relative; z-index: 2; }
}

/* ---------- AUTHOR BYLINE ---------- */
.author-byline {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.author-byline-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.author-avatar {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
  border-radius: 50%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.author-avatar:hover { transform: scale(1.04); box-shadow: 0 4px 12px rgba(216, 35, 42, .18); }
.author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}
.author-meta { flex: 1 1 auto; min-width: 0; }
.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.author-name a {
  color: var(--text);
  transition: color .15s ease;
}
.author-name a:hover { color: var(--red); }
.author-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--red-soft);
  color: var(--red-deep);
  border-radius: var(--r-pill);
}
.author-role {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.author-socials {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.author-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--text-muted);
  background: var(--bg-section-alt);
  border-radius: 50%;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 10px rgba(26, 21, 18, .08),
    0 10px 20px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.author-socials .social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.author-socials .social-icon:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 14px rgba(26, 21, 18, .12),
    0 14px 26px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.author-socials .social-icon[data-social="linkedin"]:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}
.author-socials .social-icon[data-social="x"]:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.author-socials .social-icon[data-social="email"]:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .15),
    0 4px 12px rgba(216, 35, 42, .25),
    0 12px 24px rgba(216, 35, 42, .15),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .15),
    0 8px 18px rgba(216, 35, 42, .35),
    0 18px 32px rgba(216, 35, 42, .22),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary::after {
  content: "→";
  font-size: 17px;
  margin-left: 2px;
  transition: transform .2s ease;
}
.btn-primary:hover::after { transform: translateX(3px); }
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 10px rgba(26, 21, 18, .08),
    0 10px 20px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}
.btn-secondary:hover {
  color: var(--red);
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 8px 16px rgba(26, 21, 18, .12),
    0 16px 28px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--red-deep); text-decoration: underline; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; display: flex; }

/* ---------- STICKY TOP-3 COMPARE ---------- */
.compare-strip {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.compare-strip h2 {
  font-size: 22px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-strip h2 .badge-top {
  background: var(--gold);
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.compare-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .compare-grid { grid-template-columns: repeat(3, 1fr); } }
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.compare-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.compare-card.top {
  border-color: var(--gold);
  box-shadow: var(--shadow-top);
}
.compare-card.top::before {
  content: "⭐ Editor's Pick";
  position: absolute;
  top: -11px;
  right: 14px;
  background: var(--gold);
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.compare-rank {
  position: absolute;
  top: -5px;
  left: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  font-size: 16px;
  box-shadow:
    0 2px 4px rgba(216, 35, 42, .2),
    0 4px 12px rgba(216, 35, 42, .25);
  z-index: 2;
}
.compare-head { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 76px; }
.compare-logo {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  max-width: 200px;
  width: 100%;
  background: var(--bg-section-alt);
  border-radius: var(--r-md);
  padding: 10px 18px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 3px 8px rgba(26, 21, 18, .07),
    0 8px 18px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.compare-card:hover .compare-logo {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 5px 12px rgba(26, 21, 18, .10),
    0 12px 24px rgba(26, 21, 18, .07),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.compare-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.compare-bonus {
  font-size: 14.5px;
  color: var(--text);
  padding: 5px 0 4px;
  margin-top: 10px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.compare-bonus strong { color: var(--red); }
.compare-meta { display: flex; gap: 12px; font-size: 13px; color: var(--text-muted); }
.compare-card-link { display: block; color: inherit; text-decoration: none; }
.compare-badge { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 2px 7px; border-radius: 10px; margin-left: 8px; vertical-align: middle; }
.compare-cta { padding-top: 4px; }
.compare-cta .btn { width: 100%; justify-content: center; }

/* ---------- CASINO CARDS ---------- */
.section-heading {
  text-align: left;
  margin-bottom: 8px;
}
.section-heading .kicker {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-heading .sub {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 700px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.casino-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.casino-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-top);
}
.casino-card.featured::before {
  content: "🏆 #1 Pick";
  position: absolute;
  top: -12px;
  right: 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 3px 8px rgba(168, 128, 31, .35);
}
@media (min-width: 880px) {
  .casino-card.featured::before {
    right: auto;
    left: 60px;
  }
}

@media (min-width: 880px) {
  .casino-card {
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 28px;
    padding: 26px;
  }
}

/* Listing-card blurb: clamp to a few lines with a "Read more" toggle so the card stays
   compact on every screen; JS removes the toggle when the text is short enough to fit. */
.cc-blurb {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.casino-card.blurb-open .cc-blurb {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
  overflow: visible;
}
.cc-blurb-toggle {
  display: none;            /* JS reveals it only when the blurb actually overflows */
  margin: 4px 0 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.cc-blurb-toggle:hover { color: var(--red); }

/* Card — Left block: logo + rank */
.cc-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-rank {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  box-shadow:
    0 2px 4px rgba(26, 21, 18, .2),
    0 6px 14px rgba(26, 21, 18, .25);
  z-index: 2;
}
.casino-card.featured .cc-rank {
  background: var(--red);
  box-shadow:
    0 2px 4px rgba(216, 35, 42, .25),
    0 6px 14px rgba(216, 35, 42, .3);
}
.cc-logo {
  flex: 1 1 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: var(--bg-section-alt);
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 10px rgba(26, 21, 18, .08),
    0 12px 24px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.casino-card:hover .cc-logo {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 14px rgba(26, 21, 18, .12),
    0 16px 30px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.cc-logo img,
.cc-logo svg {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cc-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
  text-align: center;
  color: var(--text);
  letter-spacing: -.01em;
}
.guide-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.guide-links a {
  display: inline-block;
  padding: 9px 15px;
  background: var(--bg-section-alt);
  border: 1px solid rgba(26, 21, 18, .08);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.guide-links a:hover { background: var(--red-soft); color: var(--red-deep); transform: translateY(-1px); }
.review-hero { padding: 34px 0 18px !important; }
.review-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.review-cta-row .btn { flex: 1 1 auto; min-width: 150px; justify-content: center; }
.review-logo-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section-alt);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  min-height: 160px;
  box-shadow: 0 1px 2px rgba(26,21,18,.05), 0 4px 12px rgba(26,21,18,.08), inset 0 1px 0 rgba(255,255,255,.7);
}
.review-logo-right img { max-width: 220px; max-height: 100px; width: auto; height: auto; display: block; }
@media (max-width: 899px) {
  .review-logo-right { padding: 20px 24px; min-height: 80px; order: -1; }
  .review-logo-right img { max-height: 60px; }
  /* Stack the CTAs full width: the "Visit <Casino>" label is too long to share a
     row on a phone, so side-by-side buttons overflowed past the left edge. */
  .review-cta-row { flex-direction: column; }
  .review-cta-row .btn { flex: 1 1 auto; width: 100%; min-width: 0; }
}
.review-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section-alt);
  border-radius: var(--r-md);
  padding: 12px 20px;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(26,21,18,.05), 0 4px 12px rgba(26,21,18,.08), inset 0 1px 0 rgba(255,255,255,.7);
}
.review-logo img { max-height: 56px; max-width: 220px; width: auto; height: auto; display: block; }
.rev-brand { display: flex; align-items: center; gap: 12px; }
.rev-brand img { height: 30px; width: auto; max-width: 92px; flex: 0 0 auto; object-fit: contain; }

/* Card — Middle: content */
.cc-body { }
.cc-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.cc-title .lic {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 6px;
}
.cc-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cc-rating .score {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--red);
  font-size: 18px;
}
.cc-rating .stars {
  display: inline-flex;
  gap: 1px;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1;
}
.cc-rating .stars .star {
  color: var(--gold);
  display: inline-block;
}
.cc-rating .stars .star.empty { color: #D9CCBF; }
.cc-rating .stars .star.half {
  background: linear-gradient(90deg, var(--gold) 50%, #D9CCBF 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cc-rating .count { color: var(--text-muted); font-size: 13px; }

.cc-bonus {
  font-size: 16px;
  line-height: 1.45;
  margin: 8px 0 12px;
}
.cc-bonus strong { color: var(--red); font-weight: 700; }

.cc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 4px;
}
.cc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--bg-section-alt);
  color: var(--text);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 3px 8px rgba(26, 21, 18, .07),
    0 8px 16px rgba(26, 21, 18, .04),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cc-tag:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 5px 12px rgba(26, 21, 18, .12),
    0 12px 22px rgba(26, 21, 18, .07),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.cc-tag.interac { background: var(--red-soft); color: var(--red-deep); }
.cc-tag.licensed { background: var(--green-soft); color: var(--green-text); }
.cc-tag.gold { background: var(--gold-soft); color: var(--gold-text); }

/* Card — Right: CTA */
.cc-cta { display: flex; flex-direction: column; gap: 8px; }
.cc-cta .btn { width: 100%; }
.cc-terms {
  font-size: 11.5px;
  color: var(--text-soft);
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
.cc-review-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.cc-review-link:hover { color: var(--red); }

/* Payment icons row */
.cc-payments {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0 4px;
  margin-top: 6px;
  border-top: 1px dashed var(--border);
}
.cc-pay-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-right: 6px;
}
.cc-payments .pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 10px rgba(26, 21, 18, .08),
    0 10px 22px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
  flex: 0 0 auto;
  background: #fff;
  line-height: 0;
}
.cc-payments .pay:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 14px rgba(26, 21, 18, .12),
    0 14px 28px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.cc-payments .pay svg {
  display: block;
}

/* Expandable details row */
.cc-details {
  display: none;
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  grid-template-columns: 1fr;
  gap: 16px;
}
.casino-card.open .cc-details { display: grid; }
@media (min-width: 700px) {
  .cc-details { grid-template-columns: 1fr 1fr; }
}
.cc-proscons h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.cc-proscons h4.pros { color: var(--green-text); }
.cc-proscons h4.cons { color: var(--red-deep); }
.cc-proscons ul { list-style: none; padding: 0; margin: 0; }
.cc-proscons li {
  padding: 4px 0 4px 24px;
  font-size: 14px;
  position: relative;
  color: var(--text-muted);
}
.cc-proscons li::before {
  position: absolute;
  left: 0;
  top: 4px;
  font-weight: 700;
}
.cc-proscons .pros-list li::before { content: "✓"; color: var(--green); }
.cc-proscons .cons-list li::before { content: "✕"; color: var(--red); }

.cc-toggle {
  background: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cc-toggle:hover { color: var(--red); }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  font-size: 13.5px;
  padding: 12px var(--gutter) 14px;
  margin: 0 auto;
  max-width: var(--container);
  color: var(--text-muted);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}
.breadcrumbs li {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--red);
  font-weight: 600;
  transition: color .15s ease;
}
.breadcrumbs a:hover {
  color: var(--red-deep);
  text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  padding: 48px 0 64px;
}
@media (min-width: 768px) { .legal-page { padding: 64px 0 80px; } }
.legal-page h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  margin-bottom: 10px;
}
.legal-page .legal-meta {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.legal-page .legal-meta strong { color: var(--text); }
.legal-page h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}
/* The grid heading sits in a .section-heading right under its kicker; kill the
   legal-page 40px top gap so the H2 hugs the kicker like on the homepage. */
.legal-page .section-heading h2 { margin-top: 0; }
.legal-page h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page p, .legal-page li {
  font-size: 15.5px;
  line-height: 1.7;
}
.legal-page ul, .legal-page ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
.legal-page li { margin-bottom: 6px; }
.legal-page .back-home {
  display: inline-block;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}
.legal-page .back-home:hover { color: var(--red-deep); text-decoration: underline; }
/* The back link also appears outside .legal-page (banking/guide pages use plain sections),
   so give it the same spacing/style there too. */
.back-home {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}
.back-home:hover { color: var(--red-deep); text-decoration: underline; }

/* ---------- ABOUT PAGE ---------- */
.about-page { padding: 48px 0; }
@media (min-width: 768px) { .about-page { padding: 64px 0; } }

.about-hero {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.about-hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .about-hero-grid { grid-template-columns: 280px 1fr; gap: 40px; }
}
.about-hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  max-width: 280px;
  margin: 0 auto;
}
.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-text .kicker {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-hero-text h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 48px);
}
.about-role {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.about-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 580px;
}
.about-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  background: var(--bg-section-alt);
  border-radius: 50%;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 12px rgba(26, 21, 18, .10),
    0 12px 24px rgba(26, 21, 18, .06),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.about-socials .social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.about-socials .social-icon:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 16px rgba(26, 21, 18, .14),
    0 16px 30px rgba(26, 21, 18, .10),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.about-socials .social-icon[data-social="linkedin"]:hover {
  background: #0A66C2;
  color: #fff;
}
.about-socials .social-icon[data-social="x"]:hover {
  background: #000;
  color: #fff;
}
.about-socials .social-icon[data-social="email"]:hover {
  background: var(--red);
  color: #fff;
}

.about-section {
  max-width: 760px;
  margin: 0 auto 40px;
}
.about-section h2 {
  margin-bottom: 18px;
  font-size: clamp(22px, 3vw, 28px);
}
.about-section p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
}
.about-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-topics li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.about-topics li:last-child { border-bottom: 0; }
.about-topics li::before {
  content: "🍁";
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 16px;
}
.about-process {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.about-process li {
  counter-increment: step;
  padding: 20px 20px 20px 68px;
  background: var(--bg-card);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.65;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 12px rgba(26, 21, 18, .08),
    0 12px 24px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-process li:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 16px rgba(26, 21, 18, .12),
    0 16px 30px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.about-process li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 4px rgba(216, 35, 42, .25),
    0 6px 14px rgba(216, 35, 42, .25);
}
.about-contact .about-contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-contact .about-contacts li {
  padding: 14px 18px;
  font-size: 16px;
  background: var(--bg-card);
  border-radius: var(--r-md);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 3px 8px rgba(26, 21, 18, .07),
    0 8px 18px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-contact .about-contacts li:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 5px 12px rgba(26, 21, 18, .12),
    0 12px 24px rgba(26, 21, 18, .07),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.about-rg-note {
  margin-top: 28px;
  padding: 18px 24px;
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  border-radius: var(--r-md);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .06),
    0 4px 12px rgba(216, 35, 42, .10),
    0 14px 28px rgba(216, 35, 42, .07),
    inset 0 1px 0 rgba(255, 255, 255, .6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-rg-note:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .06),
    0 6px 16px rgba(216, 35, 42, .14),
    0 18px 32px rgba(216, 35, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .6);
}
.about-rg-note strong { color: var(--red-deep); }

/* ---------- CONTENT SECTIONS ---------- */
/* Default: reading-comfortable width (used by legal pages) */
.content-body {
  max-width: 780px;
  margin: 0 auto;
}
/* Homepage <section> wrappers: full container width */
main > section .content-body {
  max-width: none;
}
/* Hub pages (banking/guides) with a card grid: full container width, like the homepage */
.legal-page.page-wide .content-body {
  max-width: none;
}
/* Hubs lift the H1 + intro into a .hero band above, so the article starts straight
   with the card grid. Drop the big legal-page top gap (64px) to the listing's 18px so
   the grid sits tight under the author byline like everywhere else. */
.legal-page.page-wide {
  padding-top: 18px;
}
/* The hub card grid sits inside .legal-page, whose prose <p>/<li> sizing (15.5px)
   otherwise overrides the card's own type — the terms line was rendering at body
   size instead of 11.5px. Re-assert the card sizes with higher specificity. */
/* Card type sizing must hold wherever cards appear (homepage, .legal-page, or .content-body
   alternating sections) — the .content-body/.legal-page `p` rules (16.5/15.5px) would otherwise
   blow up the terms/bonus/blurb text. Two-class selectors outrank those single-class `p` rules. */
.casino-card .cc-blurb { font-size: 14px; line-height: 1.5; }
.casino-card .cc-bonus { font-size: 16px; line-height: 1.45; }
.casino-card .cc-terms { font-size: 11.5px; line-height: 1.4; }
.content-body h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 20px;
}
.content-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1em;
}
.content-body ul, .content-body ol {
  font-size: 16px;
  line-height: 1.75;
  padding-left: 1.3em;
  margin-bottom: 1em;
}
.content-body li { margin-bottom: 8px; }
.content-body li strong { color: var(--text); }

/* Callout / info box */
.callout {
  padding: 18px 24px;
  border-radius: var(--r-md);
  margin: 24px 0;
  border-left: 4px solid var(--red);
  background: var(--red-soft);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .04),
    0 4px 12px rgba(26, 21, 18, .08),
    0 16px 32px rgba(26, 21, 18, .06),
    inset 0 1px 0 rgba(255, 255, 255, .6);
  transition: transform .2s ease, box-shadow .2s ease;
  font-size: 15.5px;
}
.callout p { margin-bottom: 0.5em; }
.callout p:last-child { margin-bottom: 0; }
.callout:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .04),
    0 6px 16px rgba(26, 21, 18, .10),
    0 20px 40px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .6);
}
.callout.green { border-left-color: var(--green); background: var(--green-soft); }
.callout.gold { border-left-color: var(--gold-deep); background: var(--gold-soft); }
.callout.navy { border-left-color: var(--navy); background: #EEF3F9; }
.callout strong { color: var(--red-deep); }
.callout.green strong { color: var(--green-text); }
.callout.gold strong { color: var(--gold-text); }
.callout.navy strong { color: var(--navy); }

/* Stat grid */
.stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 24px 0;
}
.stat-card {
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.stat-card .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat-card .lbl {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* Two-column layout */
.two-col {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 22px 0;
}
@media (min-width: 720px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.two-col .col {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.two-col .col h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--text);
}

/* Simple content table */
.ctable-wrap {
  margin: 24px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
  background: var(--bg-card);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 16px rgba(26, 21, 18, .10),
    0 20px 40px rgba(26, 21, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.ctable {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  font-size: 14.5px;
  background: transparent;
}
.ctable th, .ctable td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ctable thead th {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--text);
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}
.ctable tbody tr:nth-child(even) td { background: var(--bg-body); }
.ctable tbody tr:hover td { background: var(--red-soft); }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable tbody td strong { color: var(--text); font-weight: 700; }

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-strong);
}
.timeline li {
  position: relative;
  padding: 4px 0 16px 36px;
  font-size: 15px;
  line-height: 1.55;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--bg-body);
  box-shadow: 0 0 0 1px var(--red);
}
.timeline li strong {
  display: block;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Sticky TOC — wide desktop only, fades in past hero */
.toc-sticky {
  display: none;
  position: fixed;
  top: 96px;
  left: 16px;
  width: 220px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding: 18px 18px 14px;
  background: var(--bg-card);
  border-radius: var(--r-md);
  font-size: 13px;
  z-index: 30;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 6px 16px rgba(26, 21, 18, .10),
    0 18px 32px rgba(26, 21, 18, .07),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.toc-sticky.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.toc-sticky h3 {
  margin: 0 0 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.toc-sticky ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-sticky li { margin: 0; }
.toc-sticky li { margin-bottom: 4px; }
.toc-sticky a {
  display: block;
  padding: 7px 10px 7px 24px;
  color: var(--text);
  font-weight: 500;
  position: relative;
  border-radius: var(--r-sm);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.toc-sticky a::before {
  content: "→";
  position: absolute;
  left: 8px;
  top: 7px;
  color: var(--red);
  font-weight: 700;
}
.toc-sticky a:hover,
.toc-sticky a.active {
  color: var(--red);
  background: var(--red-soft);
  font-weight: 700;
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .08),
    0 4px 10px rgba(216, 35, 42, .12),
    0 10px 20px rgba(216, 35, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}
/* Wide screens only: the 220px fixed panel needs ~236px of left gutter, which exists once the
   viewport is wider than ~1672px (1200 container + margins). There the sticky TOC takes over
   (JS toggles .visible after the hero / Top Casinos) and the inline in-flow TOC is hidden. */

/* Inline TOC */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 28px;
  margin: 24px 0 48px;
  box-shadow: var(--shadow-sm);
}
.toc h3 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.toc li { padding: 3px 0; }
.toc a {
  color: var(--text);
  font-weight: 500;
}
.toc a:hover { color: var(--red); }
.toc a::before {
  content: "→";
  color: var(--red);
  font-weight: 700;
  margin-right: 6px;
}

/* Provincial list */
.prov-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.prov-list li {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
}
.prov-list li strong {
  display: block;
  color: var(--red);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- POPULAR SLOTS GRID ---------- */
.slots-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 28px;
}
.slot-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 4px 12px rgba(26, 21, 18, .08),
    0 14px 28px rgba(26, 21, 18, .05),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .25s ease, box-shadow .25s ease;
}
.slot-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .05),
    0 8px 18px rgba(26, 21, 18, .14),
    0 22px 44px rgba(26, 21, 18, .10),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.slot-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}
.slot-card:hover .slot-thumb img { transform: scale(1.04); }
.slot-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin: 4px 0 0;
  color: var(--text);
  line-height: 1.2;
}
.slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.slot-provider { font-weight: 600; color: var(--text); }
.slot-rtp { font-weight: 600; }
.slot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.slot-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--bg-section-alt);
  color: var(--text);
}
.slot-tag.gold { background: var(--gold-soft); color: var(--gold-text); }
.slot-tag.interac { background: var(--red-soft); color: var(--red-deep); }
.slot-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 4px 0 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .04),
    0 3px 8px rgba(26, 21, 18, .06),
    0 8px 18px rgba(26, 21, 18, .04),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.faq-item:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(26, 21, 18, .04),
    0 5px 12px rgba(26, 21, 18, .10),
    0 12px 24px rgba(26, 21, 18, .07),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.faq-item[open] {
  box-shadow:
    0 1px 2px rgba(216, 35, 42, .08),
    0 6px 16px rgba(216, 35, 42, .12),
    0 16px 30px rgba(216, 35, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 52px 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
  letter-spacing: inherit;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--red);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-ans {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
/* Two-class selector so the FAQ answer keeps its 15px and isn't bumped to 16.5px by
   `.content-body p` when the FAQ sits inside a .content-body section (hubs, reviews, homepage). */
.faq-item .faq-ans p { margin: 0; font-size: 15px; }

/* ---------- REVIEW PAGE WIDTH + ENTITIES ---------- */
/* Review body should span the same width as listing pages, not the narrow 780px legal column */
.review-body .content-body { max-width: none; }

/* Pros / Cons side-by-side comparison box */
.proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0 30px;
}
@media (min-width: 680px) { .proscons { grid-template-columns: 1fr 1fr; } }
.pc-col {
  border-radius: var(--r-md);
  padding: 18px 22px;
  background: var(--bg-card);
  box-shadow: 0 1px 2px rgba(26,21,18,.04), 0 3px 8px rgba(26,21,18,.06), inset 0 1px 0 rgba(255,255,255,.7);
}
.pc-col h3 { margin: 0 0 12px; font-size: 1.05rem; }
.pc-pros { border-top: 3px solid #1a9d5a; }
.pc-cons { border-top: 3px solid var(--red); }
.pc-col ul { margin: 0; padding: 0; list-style: none; }
.pc-col li { position: relative; padding-left: 26px; margin-bottom: 9px; line-height: 1.55; }
.pc-pros li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #1a9d5a; font-weight: 700; }
.pc-cons li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }

/* Comparison table when moved inside prose (listings) */
.glance-table { margin: 18px 0 28px; }

/* ---------- AUTHOR CARD (review pages) ---------- */
.author-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: 24px 26px;
  margin: 30px 0 18px;
  box-shadow: 0 1px 2px rgba(26,21,18,.04), 0 4px 14px rgba(26,21,18,.07), inset 0 1px 0 rgba(255,255,255,.7);
}
.author-card .ac-left { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.author-card .ac-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(26,21,18,.12);
}
.author-card .ac-social { display: flex; gap: 8px; }
.author-card .ac-social a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-body); color: var(--text);
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.author-card .ac-social a:hover { background: var(--red); color: #fff; }
.author-card .ac-body { flex: 1 1 auto; min-width: 0; }
.author-card .ac-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--red); margin-bottom: 4px;
}
.author-card .ac-name { font-size: 1.3rem; margin: 0 0 2px; }
.author-card .ac-role { font-size: 13px; color: var(--text-muted); margin: 0 0 12px; }
.author-card .ac-bio { font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.author-card .ac-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.author-card .ac-chips span {
  font-size: 12px; font-weight: 600; color: var(--text);
  background: var(--bg-body); border-radius: 999px; padding: 5px 12px;
}
.author-card .ac-more { font-weight: 700; color: var(--red); text-decoration: none; font-size: 14px; }
.author-card .ac-more:hover { text-decoration: underline; }

/* Reviews hub: trust meta, category nav, sort bar */
.hub-meta { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.hub-meta a { color: var(--red); text-decoration: none; font-weight: 600; }
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 18px 0 28px; }
.cat-nav a { font-size: 13px; font-weight: 600; color: var(--text); background: var(--bg-card); border-radius: 999px; padding: 8px 18px; text-decoration: none; box-shadow: 0 1px 2px rgba(26,21,18,.05), 0 2px 6px rgba(26,21,18,.06); transition: background .15s, color .15s; }
.cat-nav a:hover { background: var(--red); color: #fff; }
.sort-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 16px; }
.sort-bar .sort-label { font-size: 13px; font-weight: 700; color: var(--text-muted); margin-right: 2px; }
.sort-bar button { font-size: 13px; font-weight: 600; color: var(--text); background: var(--bg-card); border: 1px solid var(--line, rgba(26,21,18,.1)); border-radius: 999px; padding: 7px 15px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.sort-bar button:hover { border-color: var(--red); }
.sort-bar button.active { background: var(--red); color: #fff; border-color: var(--red); }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 18px; }
.filter-bar select { font-size: 13px; font-weight: 600; color: var(--text); background: var(--bg-card); border: 1px solid var(--line, rgba(26,21,18,.12)); border-radius: 8px; padding: 8px 12px; cursor: pointer; }
.filter-empty { font-weight: 600; color: var(--text-muted); }
.filter-empty button, #filter-reset { background: var(--red); color: #fff; border: 0; border-radius: 6px; padding: 4px 12px; font-weight: 700; cursor: pointer; }

/* Casino card: pros bullets + editor's-choice badge */
.casino-card { position: relative; }
.casino-card .cc-pros { list-style: none; margin: 8px 0 0; padding: 0; }
.casino-card .cc-pros li { position: relative; padding-left: 20px; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; line-height: 1.4; }
.casino-card .cc-pros li::before { content: "✓"; position: absolute; left: 0; color: #1a9d5a; font-weight: 700; }
.casino-card.is-editor { border: 2px solid var(--red); }
.cc-editor-badge { position: absolute; top: 0; left: 18px; transform: translateY(-50%); background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .03em; padding: 3px 10px; border-radius: 999px; box-shadow: 0 2px 6px rgba(216,35,42,.3); }

/* Closed-brand tag in reviews hub card */
.cc-closed { display:inline-block; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:#fff; background:#8a8a8a; border-radius:4px; padding:2px 7px; vertical-align:middle; margin-left:6px; }

/* Related pages block (listings) */
.related-links { margin: 30px 0 8px; padding: 20px 24px; background: var(--bg-card); border-radius: var(--r-md); box-shadow: 0 1px 2px rgba(26,21,18,.04), 0 3px 8px rgba(26,21,18,.06); }
.related-links h2 { font-size: 1.1rem; margin: 0 0 12px; }
.related-links ul { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.related-links li { margin: 0; }
.related-links a { font-weight: 600; color: var(--red); text-decoration: none; }
.related-links a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .author-card { flex-direction: column; gap: 16px; }
  .author-card .ac-left { flex-direction: row; }
}

/* Screenshots placed contextually at the end of review sections (block style) */
.shot-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 26px;
}
.shot-block {
  margin: 0;
  max-width: 760px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 1px 2px rgba(26,21,18,.05), 0 6px 16px rgba(26,21,18,.08), inset 0 1px 0 rgba(255,255,255,.6);
}
.shot-block figcaption {
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-body);
  border-bottom: 1px solid var(--line, rgba(26,21,18,.08));
}
.shot-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile screenshots: a row of phone-framed thumbnails */
.shot-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 26px;
}
.shot-phones .phone {
  margin: 0;
  width: 200px;
  max-width: 46%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 2px 6px rgba(26,21,18,.10), 0 10px 22px rgba(26,21,18,.10);
}
.shot-phones .phone img { width: 100%; height: auto; display: block; }
.shot-phones .phone figcaption {
  padding: 8px 10px;
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hover zoom (image enlarges slightly inside its frame) + click-to-open */
.shot-zoom {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}
.shot-zoom img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .28s ease;
}
.shot-zoom:hover img { transform: scale(1.05); }

/* CSS-only lightbox: opens the screenshot at full (standard) size on click */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox:target { display: flex; }
.lightbox .lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 7, .85);
  cursor: zoom-out;
}
.lightbox img {
  position: relative;
  max-width: 70vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
@media (max-width: 720px) { .lightbox img { max-width: 92vw; max-height: 80vh; } }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 48px 0 0;
  margin-top: 40px;
  border-top: 4px solid var(--red);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-inner .footer-col:first-child { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr 1.2fr; } .footer-inner .footer-col:first-child { grid-column: auto; } }
.footer-col h2 {
  color: var(--text-on-dark);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul.cols-2 { columns: 2; column-gap: 32px; }
.footer-col ul.cols-2 li { break-inside: avoid; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 14px;
}
.footer-col a:hover { color: var(--gold); }
.footer-logo img { height: 54px; width: auto; }
.footer-desc { font-size: 14px; line-height: 1.6; margin: 12px 0 0; color: var(--text-on-dark-muted); }

.footer-bottom {
  margin-top: 36px;
  padding: 20px var(--gutter);
  background: var(--bg-dark-2);
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
  text-align: center;
}
.footer-bottom p { margin: 0 0 6px; }
.footer-bottom strong { color: var(--gold); }
.footer-bottom a { color: var(--gold); text-decoration: underline; }

/* ---------- UTILITY ---------- */
.bg-alt { background: var(--bg-section-alt); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }
.hidden { display: none !important; }

/* Similar casinos block on reviews (internal linking) */
.related-reviews { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); }
.related-reviews h2 { margin: 0 0 10px; }
.related-reviews .rr-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.related-reviews .rr-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.related-reviews .rr-score { font-weight: 700; color: var(--gold-text); font-size: 13px; }
.related-reviews .rr-lic { color: var(--text-muted); font-size: 12.5px; }

/* Readable frame for the homepage hero lede (it sits over the hero chip image) */
.hero-grid .hero-lede {
  position: relative;
  z-index: 2;
  background: rgba(255, 252, 249, 0.50);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(26, 21, 18, .06);
}

/* ---------- Author profile page (/about/johnny-thompson/) ---------- */
.author-profile { background: var(--bg-section-alt); border-bottom: 1px solid var(--border); padding: 32px 0; }
.author-profile .ap-inner { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.ap-photo { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 16px rgba(26,21,18,.12); flex: 0 0 auto; }
.ap-body { flex: 1 1 320px; }
.ap-name { margin: 0 0 4px; }
.ap-role { color: var(--text-muted); margin: 0 0 10px; font-weight: 600; }
.ap-bio { color: var(--text-muted); font-size: 15px; line-height: 1.55; margin: 0 0 12px; max-width: 640px; }
.ap-bio p { margin: 0; }
.ap-social { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.ap-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--navy); text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.ap-social svg { display: block; }
.ap-social a[aria-label*=" on X"]:hover { background: #000; border-color: #000; color: #fff; }
.ap-social a[aria-label*="Facebook"]:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.ap-social a[aria-label*="LinkedIn"]:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.ap-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.ap-stats span { font-size: 12.5px; font-weight: 600; color: var(--text); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; }

.author-review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; margin: 16px 0 8px; }
.ar-card { display: flex; flex-direction: column; gap: 8px; padding: 14px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card); text-decoration: none; transition: box-shadow .2s ease, transform .2s ease; }
.ar-card:hover { box-shadow: 0 6px 16px rgba(26,21,18,.10); transform: translateY(-2px); }
.ar-logo { height: 40px; display: flex; align-items: center; }
.ar-logo img { max-height: 40px; max-width: 120px; width: auto; height: auto; object-fit: contain; }
.ar-logo-text { font-weight: 800; font-family: var(--font-heading); color: var(--text); font-size: 15px; }
.ar-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.ar-name { font-weight: 700; font-size: 13.5px; color: var(--text); line-height: 1.3; }
.ar-score { font-weight: 800; color: var(--gold-text); font-size: 15px; white-space: nowrap; }
.ar-out { font-size: 11px; color: var(--text-muted); font-weight: 600; }
@media (max-width: 600px) { .author-review-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } .author-profile .ap-inner { gap: 16px; } .ap-photo { width: 96px; height: 96px; } }

.ac-social svg { display: block; }

/* ---------- Sticky review CTA bar ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--bg-dark); color: #fff; border-top: 2px solid var(--red); box-shadow: 0 -4px 20px rgba(0,0,0,.28); transform: translateY(100%); transition: transform .3s ease; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta.sc-dismissed { display: none; }
.sticky-cta-inner { display: flex; align-items: center; gap: 14px; padding: 10px var(--gutter); }
.sc-logo img { width: 100px; height: 44px; border-radius: 8px; background: #fff; padding: 3px 6px; object-fit: contain; display: block; }
.sc-offer { font-weight: 700; font-size: 15px; flex: 1 1 auto; min-width: 0; line-height: 1.3; }
.sc-cta { flex: 0 0 auto; white-space: nowrap; }
.sc-close { flex: 0 0 auto; background: transparent; border: none; color: var(--text-on-dark-muted); font-size: 24px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.sc-close:hover { color: #fff; }
@media (max-width: 600px) { .sc-offer { font-size: 13px; } .sticky-cta-inner { gap: 10px; padding: 8px 14px; } .sc-logo img { width: 70px; height: 38px; } }


.ac-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* "See also" pill links on reviews */
.see-also-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 4px; }
.sa-pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; background: var(--bg-card); border: 1px solid var(--border); color: var(--navy); font-weight: 700; font-size: 16px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease; }
.sa-pill::after { content: "\2192"; color: var(--red); font-weight: 800; }
.sa-pill:hover { border-color: var(--navy); background: #fff; box-shadow: 0 3px 10px rgba(26,21,18,.08); transform: translateY(-1px); }

.sa-ico { font-size: 20px; line-height: 1; }

.h2-ico { margin-right: 10px; font-size: 0.85em; vertical-align: baseline; }

/* Responsible Gambling card on homepage */
.rg-card { display: flex; gap: 24px; align-items: flex-start; text-align: left; background: var(--bg-card); border: 1px solid var(--red-border); border-left: 5px solid var(--red); border-radius: 16px; padding: 28px 36px; box-shadow: 0 4px 18px rgba(216,35,42,.08); }
.rg-icon { font-size: 40px; line-height: 1; flex: 0 0 auto; }
.rg-body { flex: 1 1 auto; min-width: 0; }
.rg-body h2 { margin: 0 0 10px; }
.rg-body p { margin: 0 0 16px; }
.rg-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.rg-tags span { font-size: 12.5px; font-weight: 600; color: var(--text); background: var(--bg-section-alt); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; }
.rg-help { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 11px 20px; border-radius: 999px; background: var(--red-soft); color: var(--red-deep); border: 1px solid var(--red-border); text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.rg-help:hover { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 600px) { .rg-card { flex-direction: column; gap: 12px; padding: 22px; } .rg-icon { font-size: 32px; } .rg-body p { font-size: 14.5px; line-height: 1.5; } .rg-tags span { font-size: 11.5px; } .rg-help { font-size: 13px; } }

.ap-social a[aria-label*="Email"]:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---- Trust Score breakdown (review page) ---- */
.trust-score { margin: 6px 0 34px; background: linear-gradient(180deg, var(--gold-soft) 0%, var(--bg-card) 46%); border: 1px solid var(--border-strong); border-radius: 16px; padding: 30px 26px 24px; box-shadow: var(--shadow-card); position: relative; }
.ts-head { display: flex; align-items: center; gap: 20px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.ts-overall { flex: 0 0 auto; display: flex; align-items: baseline; gap: 4px; }
.ts-num { font-size: 52px; line-height: 1; font-weight: 800; letter-spacing: -1px; color: var(--gold-deep); font-variant-numeric: tabular-nums; }
.ts-out { font-size: 19px; font-weight: 700; color: var(--text-soft); }
.ts-badge { position: absolute; top: 0; left: 0; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: var(--gold-text); background: linear-gradient(180deg, #E6BC5A 0%, var(--gold) 100%); border: none; border-radius: 16px 0 10px 0; padding: 5px 14px 6px; white-space: nowrap; box-shadow: inset 0 -1px 0 rgba(168,128,31,.35); }
.ts-headmeta { flex: 1 1 auto; min-width: 0; }
.ts-title { margin: 0 0 4px; font-size: 21px; }
.ts-note { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--text-soft); }
.ts-note a { font-weight: 700; color: var(--red-deep); text-decoration: none; white-space: nowrap; }
.ts-note a:hover { text-decoration: underline; }
.ts-rows { display: grid; gap: 11px; }
.ts-row { display: grid; grid-template-columns: 200px 1fr 40px; align-items: center; gap: 14px; }
.ts-cat { font-size: 14px; font-weight: 600; color: var(--text); display: flex; align-items: baseline; gap: 7px; }
.ts-weight { font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--bg-section-alt); border-radius: 999px; padding: 2px 7px; }
.ts-bar { height: 9px; background: var(--bg-section-alt); border-radius: 999px; overflow: hidden; }
.ts-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%); }
.ts-fill.ts-hi { background: linear-gradient(90deg, #2FA45E 0%, var(--green-text) 100%); }
.ts-fill.ts-lo { background: var(--border-strong); }
.ts-val { font-size: 14.5px; font-weight: 700; color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .trust-score { padding: 18px 16px 20px; }
  .ts-head { gap: 14px; }
  .ts-num { font-size: 42px; }
  .ts-title { font-size: 18px; }
  .ts-note { font-size: 12.5px; }
  .ts-row { grid-template-columns: 118px 1fr 34px; gap: 10px; }
  .ts-cat { font-size: 12px; flex-direction: column; gap: 3px; }
}

/* ---- Real-money payout test card (review page) ---- */
.payout-test { margin: 0 0 0; background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 10px; padding: 20px 24px 18px; box-shadow: var(--shadow-card); }
.pt-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 16px; }
.pt-badge { font-size: 12.5px; font-weight: 800; letter-spacing: .2px; color: var(--green-text); background: var(--green-soft); border: 1px solid #BCE3CB; border-radius: 999px; padding: 5px 13px; }
.pt-by { font-size: 13px; color: var(--text-soft); font-weight: 600; }
.pt-grid { display: flex; align-items: stretch; gap: 14px; }
.pt-tile { flex: 1 1 0; min-width: 0; background: var(--bg-section-alt); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; }
.pt-tile.pt-wd { background: var(--gold-soft); border-color: var(--gold); }
.pt-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pt-amt { font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.pt-meta { font-size: 13px; color: var(--text-soft); }
.pt-speed { font-size: 11px; font-weight: 800; text-transform: none; letter-spacing: 0; border-radius: 999px; padding: 2px 9px; white-space: nowrap; }
.pt-speed.pt-instant, .pt-speed.pt-fast { color: #fff; background: var(--green); }
.pt-speed.pt-sameday { color: var(--gold-text); background: var(--gold); }
.pt-speed.pt-standard { color: var(--text); background: var(--border-strong); }
.pt-arrow { flex: 0 0 auto; align-self: center; font-size: 22px; color: var(--gold-deep); font-weight: 700; }
.pt-note { margin: 14px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--text-soft); font-style: italic; }
@media (max-width: 640px) {
  .payout-test { padding: 16px 15px 15px; }
  .pt-grid { flex-direction: column; gap: 10px; }
  .pt-arrow { transform: rotate(90deg); }
  .pt-amt { font-size: 22px; }
}

/* ---- Scoring weights panel (methodology page) ---- */
.weights { display: grid; gap: 13px; margin: 22px 0 10px; padding: 24px 26px; background: linear-gradient(180deg, var(--gold-soft) 0%, var(--bg-card) 58%); border: 1px solid var(--border-strong); border-radius: 16px; box-shadow: var(--shadow-card); }
.wt-row { display: grid; grid-template-columns: 270px 1fr 48px; align-items: center; gap: 16px; }
.wt-cat { font-size: 14.5px; font-weight: 600; color: var(--text); }
.wt-bar { height: 10px; background: var(--bg-section-alt); border-radius: 999px; overflow: hidden; }
.wt-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%); }
.wt-val { font-size: 15px; font-weight: 800; color: var(--gold-deep); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .weights { padding: 16px 15px; gap: 14px; }
  .wt-row { grid-template-columns: 1fr 54px; grid-template-areas: "cat val" "bar bar"; gap: 6px 12px; }
  .wt-cat { grid-area: cat; font-size: 13.5px; }
  .wt-val { grid-area: val; }
  .wt-bar { grid-area: bar; }
}

/* Sub-headings between the homepage category link rows */
.gl-sub { margin: 26px 0 12px; font-size: 16px; }

/* ---- Generic card grid for h3+text groups (RG tools, help lines, contact channels, steps) ---- */
.tool-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; margin: 18px 0 26px; }
.tool-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.tool-card h3 { margin: 0 0 8px; font-size: 16.5px; }
.tool-card p { margin: 0 0 8px; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
.tool-card p:last-child, .tool-card ul:last-child { margin-bottom: 0; }
.tool-card ul { margin: 0; padding-left: 18px; font-size: 14.5px; color: var(--text-muted); }

/* ---- "Last verified" stamp: small muted line under the review hero eyebrow ---- */
.verified-on { display: block; margin: -6px 0 16px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); letter-spacing: .01em; }

/* ---- Fastest tested payouts leaderboard (fast-payout page) ---- */
.payout-board .pb-rank { font-weight: 800; color: var(--gold-deep); font-variant-numeric: tabular-nums; }
.pb-badge { display: inline-block; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 2px 8px; margin-left: 6px; vertical-align: middle; white-space: nowrap; }
.pb-badge.pb-instant, .pb-badge.pb-fast { color: #fff; background: var(--green); }
.pb-badge.pb-sameday { color: var(--gold-text); background: var(--gold); }
.pb-badge.pb-standard { color: var(--text); background: var(--border-strong); }
.payout-board .pb-link a { white-space: nowrap; font-weight: 700; }

/* ---- "How it compares" vs-table (review page) ---- */
.vs-table .vs-current { background: var(--gold-soft); }
.vs-table .vs-current td { font-weight: 600; }
.vs-you { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; color: var(--gold-text); background: var(--gold); border-radius: 999px; padding: 1px 7px; margin-left: 4px; vertical-align: middle; }
.vs-na { color: var(--text-muted); }

/* ---- Review-embedded tables: flatter card-style frame (matches Trust Score / payout
   cards), clipped corners, and no forced horizontal scroll (fit + wrap instead). ---- */
.ct-review { margin: 0; border: 1px solid var(--border-strong); border-radius: 10px; box-shadow: var(--shadow-card); overflow: hidden; }
.ct-review .ctable { min-width: 0; }

/* ---- Banking-at-a-glance snapshot (review banking section) ---- */
.banking-snapshot { margin: 0; }
.banking-snapshot .bs-label { width: 42%; font-weight: 600; color: var(--text); }
.banking-snapshot td { color: var(--text); }
@media (max-width: 480px) { .banking-snapshot .bs-label { width: 48%; } }
