@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════════════════
   CasinoReview — Base Stylesheet
   Colours are placeholders. Override per-domain via DOMAIN.md design brief.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ────────────────────────────────────────────────────────
   Replace the hex values below with those from DOMAIN.md → Section 4.2
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  /* Colours — override per domain */
  --color-primary:        #1E3A5F;
  --color-primary-light:  #2B5090;
  --color-primary-dark:   #142740;

  --color-secondary:      #D4AF37;
  --color-secondary-light:#E8CB5D;
  --color-secondary-dark: #A88B28;

  --color-accent:         #E8400A;
  --color-accent-hover:   #C93308;

  --color-bg:             #F5F7FA;
  --color-surface:        #FFFFFF;
  --color-surface-alt:    #F0F3F8;

  --logo-bg:              #1a1a2e;   /* Dark bg for casino logos (designed for dark) */

  --color-text:           #1A1D23;
  --color-text-secondary: #5A6275;
  --color-text-muted:     #9399A6;

  --color-border:         #E2E6EF;

  --color-link:           #1E3A5F;  /* Contrast-safe interactive color — overridden per domain */
  --color-link-hover:     #142740;

  --color-success:        #1A9B5C;
  --color-success-bg:     #E8F7EF;
  --color-danger:         #D93025;
  --color-danger-bg:      #FCEAE9;
  --color-warning:        #E68A00;
  --color-warning-bg:     #FEF3DC;

  --color-star:           #F5B800;

  /* Typography */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  30px;
  --text-3xl:  38px;
  --text-hero: 48px;

  /* Spacing */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;

  /* Border radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 24px rgba(0,0,0,.14);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Nunito', system-ui, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.container-narrow { max-width: 800px; }
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section { padding: var(--s-16) 0; }
.section-alt { background: var(--color-surface-alt); }
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--s-8);
  flex-wrap: wrap;
  gap: var(--s-4);
}
.section-header h2 { font-size: var(--text-2xl); font-weight: 700; }
.section-sub { color: var(--color-text-secondary); margin-top: var(--s-2); }
.link-more { color: var(--color-link); font-weight: 600; white-space: nowrap; align-self: center; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0 var(--s-6);
  height: 44px;
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-xl { height: 52px; padding: 0 var(--s-8); font-size: var(--text-md); }
.btn-lg { height: 48px; padding: 0 var(--s-7); }
.btn-sm { height: 34px; padding: 0 var(--s-4); font-size: var(--text-sm); }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  border-color: var(--color-link);
  color: var(--color-link);
}
.btn-secondary:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }

.btn-ghost { background: transparent; color: var(--color-link); }
.btn-ghost:hover { text-decoration: underline; }

/* CTA (affiliate) — pill shape, accent colour */
.btn-cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--r-full);
  padding: 0 var(--s-8);
  height: 48px;
  box-shadow: 0 4px 16px rgba(232,64,10,.35);
}
.btn-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,64,10,.45);
  color: #fff;
  text-decoration: none;
}

/* ─── Badges ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .03em;
}
.badge-primary { background: var(--color-primary); color: #fff; }
.badge-gold    { background: var(--color-secondary); color: #fff; padding: 3px; border-radius: 0px 0px 5px 5px; }
.badge-success { background: var(--color-success-bg); color: var(--color-success); }
.badge-danger  { background: var(--color-danger-bg); color: var(--color-danger); }
.badge-neutral { background: var(--color-surface-alt); color: var(--color-text-secondary); }
.badge-white   { background: #fff; color: var(--color-link); }

/* ─── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.site-logo { font-size: var(--text-lg); font-weight: 800; color: var(--color-link); text-decoration: none; }
.site-nav { flex: 1; }
.site-nav ul { display: flex; gap: var(--s-1); }
.site-nav a {
  display: block;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}
.site-nav a:hover { background: var(--color-surface-alt); color: var(--color-link); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: var(--s-2); }
.nav-close { display: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.2s; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,.8); padding: var(--s-16) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-8); padding-bottom: var(--s-12); }
.footer-logo { display: block; font-size: var(--text-lg); font-weight: 800; color: #fff; margin-bottom: var(--s-4); }
.footer-col h4 { font-size: var(--text-sm); text-transform: uppercase; font-weight: 700; color: #fff; margin-bottom: var(--s-4); }
.footer-col ul li { margin-bottom: var(--s-2); }
.footer-col a { color: rgba(255,255,255,.7); font-size: var(--text-sm); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--s-6) 0;
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.footer-copyright { font-size: var(--text-sm); color: rgba(255,255,255,.5); }
.footer-disclaimer { font-size: var(--text-xs); color: rgba(255,255,255,.4); flex: 1; text-align: center; }
.footer-age {
  font-size: var(--text-sm);
  font-weight: 800;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: 2px 10px;
  color: #fff;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2f5e 35%, #2d1b69 65%, #1e3a5f 100%);
  padding: var(--s-16) 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(99,102,241,.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(139,92,246,.20) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(59,130,246,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 { font-size: var(--text-hero); font-weight: 800; color: #fff; line-height: 1.1; margin: var(--s-4) 0; }
.hero-sub { font-size: var(--text-md); color: rgba(255,255,255,.85); margin-bottom: var(--s-8); }
.hero-cta { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

.section-title { margin-bottom: 15px; }

/* ─── Page header ───────────────────────────────────────────────────────── */
.page-header { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: var(--s-8) 0; }
.page-header h1 { font-size: var(--text-3xl); font-weight: 800; }
.page-header > .container > img { background: var(--logo-bg); border-radius: var(--r-lg); padding: var(--s-3); object-fit: contain; display: block; margin-bottom: var(--s-4); }

/* Provider header — two-column layout */
.provider-header { display: flex; gap: var(--s-8); align-items: flex-start; }
.provider-header__logo { flex-shrink: 0; width: 400px; height: 400px; display: flex; align-items: center; justify-content: center; }
.provider-header__logo img { max-width: 400px; max-height: 400px; width: 100%; height: 100%; object-fit: contain; border-radius: 15px; }
.provider-header__info { flex: 1; min-width: 0; }

.page-sub { color: var(--color-text-secondary); margin-top: var(--s-2); }

/* ─── Slot hero (slot detail page header) ────────────────────────────────── */
.slot-hero { padding: var(--s-10) 0; text-align: center; }
.slot-hero__inner { display: flex; flex-direction: column; align-items: center; gap: var(--s-4); }
.slot-hero__inner .page-sub { margin-bottom: var(--s-1); }
.slot-hero__thumb {
  width: 100%;
  max-width: 50%;
  border-radius: var(--r-2xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 767px) {
  .slot-hero__thumb { max-width: 100%; }
  .slot-hero .btn-cta { width: 100%; }
}

/* ─── Breadcrumbs ───────────────────────────────────────────────────────── */
.breadcrumbs { padding: var(--s-3) 0; background: var(--color-surface-alt); border-bottom: 1px solid var(--color-border); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0; font-size: var(--text-sm); color: var(--color-text-muted); }
.breadcrumbs li::after { content: '/'; margin: 0 var(--s-2); }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--color-text-secondary); }
.breadcrumbs a:hover { color: var(--color-link-hover); }

/* ─── Casino cards ──────────────────────────────────────────────────────── */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-6);
}
.casino-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.casino-card--featured { border: 2px solid var(--color-secondary); }
.card-badge { position: absolute; top: -1px; right: var(--s-4); font-size: var(--text-xs); }
.casino-card__header { display: flex; align-items: flex-start; gap: var(--s-4); margin-bottom: var(--s-4); }
.casino-logo-wrap {
  width: 80px; height: 80px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--logo-bg);
  padding: 8px;
}
.casino-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.casino-logo-wrap--lg { width: 120px; height: 120px; border-radius: var(--r-xl); padding: 12px; }
.casino-logo-placeholder { font-size: var(--text-2xl); font-weight: 800; color: var(--color-link); }
.casino-card__info { flex: 1; }
.casino-name { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s-2); }
.casino-name a { color: var(--color-text); text-decoration: none; }
.casino-name a:hover { color: var(--color-link); }
.casino-rating-row { display: flex; align-items: center; gap: var(--s-3); }
.rating-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: var(--text-xl);
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.rating-badge--lg { width: 64px; height: 64px; }
.casino-pros { margin: var(--s-4) 0; }
.casino-pros li { display: flex; align-items: flex-start; gap: var(--s-2); font-size: var(--text-sm); margin-bottom: 4px; }
.casino-pros li::before { content: '✓'; color: var(--color-success); font-weight: 700; flex-shrink: 0; }
.bonus-strip {
  background: linear-gradient(135deg, var(--color-secondary-light), rgba(212,175,55,.1));
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin: var(--s-4) 0;
}
.casino-card__actions { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-4); }
.casino-card__actions .btn { width: 100%; }

/* Casino list (catalogue) */
.casino-list { display: flex; flex-direction: column; gap: var(--s-5); }
.casino-card--list { display: flex; }
.casino-card--list .casino-card__header { width: 100%; align-items: center; }
.casino-card--list .casino-card__info { flex: 1; }
.casino-desc { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: var(--s-2); }
.casino-card__cta { display: flex; flex-direction: column; gap: var(--s-2); min-width: 160px; }

/* Casino tile grid (catalogue grid view) */
.casinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.casino-card--tile {
  display: flex;
  flex-direction: column;
  padding: var(--s-5);
}
.casino-card--tile .casino-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin-bottom: var(--s-4);
  background: var(--logo-bg);
  border-radius: var(--r-md);
  padding: var(--s-2);
}
.casino-card--tile .casino-tile__logo img {
  max-width: 140px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.casino-tile__logo-placeholder {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-link);
}
.casino-card--tile .casino-tile__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.casino-card--tile .casino-name {
  font-size: var(--text-md);
  flex: 1;
}
.casino-card--tile .rating-badge {
  width: 40px;
  height: 40px;
  font-size: var(--text-md);
  flex-shrink: 0;
}
.casino-card--tile .casino-desc {
  flex: 1;
  margin-bottom: var(--s-4);
}
.casino-tile__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: auto;
}
.casino-tile__actions .btn { text-align: center; }

/* Bonus chips inside casino tile */
.casino-tile__bonuses {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.bonus-chip {
  background: var(--color-surface-alt, #f4f6fa);
  border-left: 3px solid var(--color-link);
  border-radius: var(--radius-sm);
  padding: var(--s-2) var(--s-3);
}
.bonus-chip__title {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--s-1);
}
.bonus-chip__spins {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-link);
  font-weight: 600;
  margin-right: var(--s-1);
}
.bonus-chip__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-1);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* ─── Providers grid (/games/) ───────────────────────────────────────────── */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.provider-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.provider-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--s-5) var(--s-4);
  text-decoration: none;
  color: inherit;
}
.provider-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  margin-bottom: var(--s-3);
  padding: var(--s-2);
}
.provider-card__logo img {
  min-width: 120px;
  min-height: 120px;
  max-width: 160px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}
.provider-card__placeholder {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-link);
}
.provider-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  color: var(--color-text);
  margin: 0;
}
.provider-card__link:hover .provider-card__name { color: var(--color-link); }

/* ─── Payments grid (/payments/) ─────────────────────────────────────────── */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.payment-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.payment-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  margin-bottom: var(--s-3);
}
.payment-card__logo img {
  max-width: 120px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.payment-card__placeholder {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-link);
}
.payment-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  margin: 0 0 var(--s-3);
}
.payment-card__name:hover { color: var(--color-link); }
.payment-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-1);
  margin-top: var(--s-2);
}
.payment-meta span {
  font-size: 11px;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  padding: 2px 8px;
}

/* ─── Casino header (detail page) ────────────────────────────────────────── */
.casino-header { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: var(--s-8) 0; }
.casino-header__inner { display: flex; gap: var(--s-8); align-items: flex-start; flex-wrap: wrap; }
.casino-header__main { display: flex; gap: var(--s-6); align-items: flex-start; flex: 1; }
.casino-header__info { flex: 1; }
.casino-title-row { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.casino-title-row h1 { font-size: var(--text-3xl); font-weight: 800; }
.rating-row { display: flex; align-items: center; gap: var(--s-4); margin-top: var(--s-3); }
.trust-score { font-size: var(--text-sm); color: var(--color-text-secondary); }
.license-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }
.casino-header__cta { min-width: 240px; }
.cta-bonus { font-weight: 700; margin-bottom: var(--s-3); text-align: center; }
.cta-disclaimer { font-size: var(--text-xs); color: var(--color-text-muted); text-align: center; margin-top: var(--s-2); }

/* ─── Quick facts ───────────────────────────────────────────────────────── */
.quick-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--s-4); }
.fact-item {
  display: flex; flex-direction: column; gap: var(--s-1);
  padding: var(--s-4);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
}
.fact-icon { font-size: 20px; }
.fact-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; color: var(--color-text-muted); }
.fact-value { font-size: var(--text-base); font-weight: 600; }

/* ─── Pros & Cons ───────────────────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); }
.pros, .cons {
  padding: var(--s-6);
  border-radius: var(--r-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.pros h3 { color: var(--color-success); font-size: var(--text-md); margin-bottom: var(--s-4); }
.cons h3 { color: var(--color-danger); font-size: var(--text-md); margin-bottom: var(--s-4); }
.pros li, .cons li { font-size: var(--text-sm); margin-bottom: var(--s-2); padding-left: var(--s-5); position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--color-success); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--color-danger); font-weight: 700; }

/* ─── Rating bars ───────────────────────────────────────────────────────── */
.rating-bars { display: flex; flex-direction: column; gap: var(--s-4); }
.rating-bar-row { display: flex; align-items: center; gap: var(--s-4); }
.rating-bar-row > span:first-child { min-width: 100px; font-size: var(--text-sm); }
.rating-bar-row > span:last-child { font-size: var(--text-sm); font-weight: 700; min-width: 36px; text-align: right; }
.bar { flex: 1; height: 8px; background: var(--color-border); border-radius: var(--r-full); overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary)); border-radius: var(--r-full); }

/* ─── Showcase (bonuses/top) ────────────────────────────────────────────── */
.showcase-header {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  padding: var(--s-16) 0;
  text-align: center;
  color: #fff;
}
.showcase-header h1 { font-size: var(--text-3xl); font-weight: 800; margin: var(--s-3) 0; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.showcase-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--r-2xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.showcase-card:hover { border-color: var(--color-link); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.position-badge {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--color-secondary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.exclusive-badge {
  position: absolute;
  top: var(--s-4); right: var(--s-4);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-sm);
}
.showcase-card__header { display: flex; align-items: center; gap: var(--s-4); margin-bottom: var(--s-4); }
.showcase-card__header img { background: var(--logo-bg); border-radius: var(--r-lg); padding: var(--s-2); object-fit: contain; flex-shrink: 0; }
.showcase-card__info h2,
.showcase-card__info h3 { font-size: var(--text-md); font-weight: 800; }
.showcase-bonus { padding: var(--s-4); background: linear-gradient(135deg, var(--color-secondary-light), rgba(212,175,55,.08)); border-radius: var(--r-lg); margin: var(--s-3) 0; text-align: center; }
.showcase-bonus__amount { font-size: var(--text-md); font-weight: 800; color: var(--color-secondary-dark); }
.showcase-bonus__terms { font-size: var(--text-xs); color: var(--color-text-secondary); margin-top: var(--s-1); }
.showcase-card__cta { display: flex; flex-direction: column; align-items: center; gap: var(--s-2); margin-top: auto; padding-top: var(--s-4); }
.showcase-disclaimer { font-size: var(--text-xs); color: var(--color-text-muted); text-align: center; margin-top: var(--s-3); }
.payment-logos { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; margin: var(--s-4) 0; }

/* ─── Bonus cards ───────────────────────────────────────────────────────── */
.bonus-list { display: flex; flex-direction: column; gap: var(--s-4); }
.bonus-card {
  display: flex; align-items: center; gap: var(--s-5);
  padding: var(--s-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.bonus-card:hover { box-shadow: var(--shadow-md); }
.bonus-card__casino { display: flex; align-items: center; gap: var(--s-3); min-width: 200px; }
.bonus-card__casino img { background: var(--logo-bg); border-radius: var(--r-md); padding: var(--s-1); object-fit: contain; flex-shrink: 0; }
.bonus-casino-name { font-weight: 700; font-size: var(--text-sm); display: block; margin-bottom: var(--s-1); }
.bonus-amount { font-size: var(--text-lg); font-weight: 700; flex: 1; }
.bonus-spins { color: var(--color-secondary-dark); font-weight: 600; }
.bonus-meta { display: flex; gap: var(--s-4); font-size: var(--text-sm); color: var(--color-text-secondary); }
.bonus-card--full { flex-direction: column; align-items: flex-start; }

/* ─── Article grid ──────────────────────────────────────────────────────── */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--s-6); }
.article-card { background: var(--color-surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--color-border); }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-card__body { padding: var(--s-5); }
.article-card h2, .article-card h3 { font-size: var(--text-lg); margin: var(--s-2) 0; line-height: 1.3; }
.article-card a { color: var(--color-text); }
.article-card a:hover { color: var(--color-link); text-decoration: none; }
.article-meta { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--s-2); }

/* ─── Article (single) ──────────────────────────────────────────────────── */
.article-header { margin-bottom: var(--s-8); }
.article-header h1 { font-size: var(--text-3xl); font-weight: 800; margin: var(--s-3) 0; }
.article-featured-image { width: 100%; border-radius: var(--r-xl); margin-top: var(--s-6); }
.article-intro { font-size: var(--text-md); color: var(--color-text-secondary); margin-bottom: var(--s-8); }
.prose h2 { font-size: var(--text-2xl); font-weight: 700; margin: 30px 0 10px; }
.prose h3 { font-size: var(--text-xl); font-weight: 600; margin: var(--s-6) 0 var(--s-3); }
.prose p { margin-bottom: 15px; }
.prose ul, .prose ol { list-style: disc; padding-left: var(--s-6); margin-bottom: var(--s-4); }
.prose a { color: var(--color-link); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: var(--s-6) 0; font-size: var(--text-sm); }
.prose table th { background: var(--color-surface-alt, #f5f5f5); font-weight: 600; text-align: left; padding: var(--s-3) var(--s-4); border: 1px solid var(--color-border, #e0e0e0); white-space: nowrap; }
.prose table td { padding: var(--s-3) var(--s-4); border: 1px solid var(--color-border, #e0e0e0); vertical-align: top; }
.prose table tr:nth-child(even) td { background: var(--color-surface-alt); }
.prose table tr:hover td { background: var(--color-surface-alt); filter: brightness(1.1); }
.prose table { overflow-x: auto; display: block; }

/* ─── Expert verdict ────────────────────────────────────────────────────── */
.expert-verdict {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  color: #fff;
  text-align: center;
}
.expert-verdict h2 { font-size: var(--text-2xl); margin-bottom: var(--s-4); }
.expert-verdict p { margin-bottom: var(--s-6); opacity: .9; }
.expert-verdict .btn { display: block; margin: var(--s-6) auto 0; width: fit-content; }

/* ─── Category nav ──────────────────────────────────────────────────────── */
.category-nav { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.category-nav a {
  padding: 6px var(--s-4);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  text-decoration: none;
}
.category-nav a:hover, .category-nav a.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ─── Pagination ────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: var(--s-4); margin-top: var(--s-10); }
.page-link { padding: var(--s-2) var(--s-4); border: 1px solid var(--color-border); border-radius: var(--r-md); font-size: var(--text-sm); }
.page-link:hover { border-color: var(--color-link); color: var(--color-link); text-decoration: none; }
.page-current { font-size: var(--text-sm); color: var(--color-text-secondary); }

/* ─── Predictions ───────────────────────────────────────────────────────── */
.predictions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s-6); }
.prediction-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.prediction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Meta bar — tournament link + date */
.prediction-card__meta { display: flex; justify-content: space-between; align-items: center; gap: var(--s-2); padding: var(--s-3) var(--s-4); background: var(--color-surface-alt); font-size: var(--text-xs); border-bottom: 1px solid var(--color-border); }
.prediction-card__tournament { color: var(--color-link); font-weight: 600; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prediction-card__tournament:hover { text-decoration: underline; }
.prediction-card__meta-right { display: flex; align-items: center; gap: var(--s-2); flex-shrink: 0; color: var(--color-text-muted); }
.prediction-card__round { background: var(--color-border); border-radius: var(--r-full); padding: 1px var(--s-2); }
.prediction-card__date { white-space: nowrap; }

/* Teams */
.prediction-card__teams { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-5) var(--s-4); flex: 1; }
.prediction-team { flex: 1; font-size: var(--text-sm); font-weight: 700; line-height: 1.35; color: var(--color-text); }
.prediction-team--away { text-align: right; }
.prediction-team a { color: inherit; text-decoration: none; }
.prediction-team a:hover { color: var(--color-link); }
.prediction-vs { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); color: #fff; font-size: 10px; font-weight: 800; padding: 5px 8px; border-radius: var(--r-full); flex-shrink: 0; letter-spacing: .06em; }

/* Footer — result + link */
.prediction-card__footer { display: flex; align-items: center; justify-content: space-between; padding: var(--s-3) var(--s-4); border-top: 1px solid var(--color-border); margin-top: auto; }
.prediction-card__link { color: var(--color-link); font-weight: 600; font-size: var(--text-sm); text-decoration: none; }
.prediction-card__link:hover { text-decoration: underline; }
.result-badge { display: inline-flex; align-items: center; padding: 3px var(--s-3); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; border-radius: var(--r-full); letter-spacing: .04em; }
.result-badge--win { background: var(--color-success-bg); color: var(--color-success); }
.result-badge--loss { background: var(--color-danger-bg); color: var(--color-danger); }

/* ─── Filter tabs ───────────────────────────────────────────────────────── */
.section--compact { padding: var(--s-6) 0; }
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}
.filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 7px var(--s-5);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.18s ease;
}
.filter-tab:hover {
  border-color: var(--color-link);
  color: var(--color-link);
  text-decoration: none;
}
.filter-tab--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ─── Game meta tiles (slot detail) ──────────────────────────────────────── */
.game-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--s-4);
}
.game-meta__item {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-4);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  text-align: center;
}
.game-meta__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text-muted);
}
.game-meta__value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

/* ─── Games tile grid ────────────────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
}
.game-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.game-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.game-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
}
.game-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.game-card:hover .game-card__img-wrap img {
  transform: scale(1.06);
}
.game-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.game-card:hover .game-card__play { opacity: 1; }
.game-card__play-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  padding-left: 3px;
}
.game-card__rtp {
  position: absolute;
  top: var(--s-2);
  right: var(--s-2);
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
  letter-spacing: .03em;
  z-index: 1;
}
.game-card__vol {
  position: absolute;
  bottom: var(--s-2);
  left: var(--s-2);
  padding: 2px 7px;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  z-index: 1;
}
.game-card__body {
  padding: var(--s-3);
}
.game-card__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
  color: var(--color-text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.game-card__provider {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
}
/* Volatility colours (slugified Swahili values) */
.badge--juu      { background: rgba(220,38,38,.85);  color: #fff; }
.badge--wastani  { background: rgba(217,119,6,.85);  color: #fff; }
.badge--chini    { background: rgba(5,150,105,.85);  color: #fff; }
.badge--juu-sana { background: rgba(127,29,29,.9);   color: #fff; }

/* ─── Subdomain: back row ────────────────────────────────────────────────── */
.subdomain-back {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  padding: var(--s-2) 0;
}
.subdomain-back__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.subdomain-back__link:hover { color: var(--color-link); text-decoration: none; }
.subdomain-back__link small { font-size: var(--text-sm); font-weight: 500; }

/* ─── Subdomain: tab bar ─────────────────────────────────────────────────── */
.subdomain-tabs {
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.subdomain-tabs__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.subdomain-tabs__inner::-webkit-scrollbar { display: none; }

.subdomain-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; /* overlap container border */
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
}
.subdomain-tab:hover {
  color: var(--color-link);
  border-bottom-color: var(--color-link);
  text-decoration: none;
}
.subdomain-tab.active {
  color: var(--color-link);
  border-bottom-color: var(--color-link);
  font-weight: 700;
}

/* Login — right-aligned, accent colour, looks like a CTA chip */
.subdomain-tab--login {
  margin-left: auto;
  color: var(--color-accent);
  font-weight: 700;
  border-bottom-color: transparent !important;
}
.subdomain-tab--login:hover {
  color: var(--color-accent-hover);
  border-bottom-color: transparent !important;
  text-decoration: none;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .casino-header__inner { flex-direction: column; }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .casinos-grid { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .site-nav { display: none; position: fixed; inset: 0; background: var(--color-primary-dark); z-index: 200; padding: var(--s-8); }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav a { color: rgba(255,255,255,.9); font-size: var(--text-md); padding: var(--s-3) var(--s-4); }
  .nav-close { display: block; position: absolute; top: var(--s-4); right: var(--s-4); background: none; border: none; color: rgba(255,255,255,.8); font-size: 2rem; line-height: 1; cursor: pointer; padding: var(--s-2); }
  .burger { display: flex; }
  .hero h1 { font-size: var(--text-3xl); }
  .hero-cta { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .casino-card--list .casino-card__header { flex-direction: column; }
  .casino-card__cta { flex-direction: column; width: 100%; }
  .showcase-card__cta { flex-direction: column; }
  .bonus-card { flex-direction: column; align-items: flex-start; }
  .casino-grid { grid-template-columns: 1fr; }
  .casinos-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid  { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .showcase-grid { grid-template-columns: 1fr; }
  .provider-header { flex-direction: column; align-items: center; }
  .provider-header__logo { width: 200px; height: 200px; }
  .provider-header__logo img { max-width: 200px; max-height: 200px; }
}
@media (max-width: 479px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Author Box ────────────────────────────────────────────────────────── */
.author-box-section {
  background: var(--color-surface-alt);
  padding: var(--s-12) 0;
}
.author-box {
  display: flex;
  gap: var(--s-8);
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-link);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.07);
  padding: var(--s-8);
}
.author-box__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-link);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.10);
}
.author-box__photo--placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  border: 3px solid var(--color-link);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.10);
}
.author-box__content {
  flex: 1;
  min-width: 0;
}
.author-box__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-link);
  background: rgba(30, 58, 95, 0.08);
  padding: 3px var(--s-2);
  border-radius: 4px;
  margin: 0 0 var(--s-3) 0;
}
.author-box__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--s-2) 0;
  line-height: 1.2;
}
.author-box__short {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin: 0 0 var(--s-3) 0;
}
.author-box__bio {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 599px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s-4);
    padding: var(--s-6);
  }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background: var(--color-surface-alt);
}
.faq-section > .container > h2 {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--s-10) 0;
  position: relative;
}
.faq-section > .container > h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin: var(--s-3) auto 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item.is-open {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  margin: 0;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-link);
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
  transition: color 0.2s, background 0.2s;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover {
  color: var(--color-link-hover);
  background: var(--color-surface-alt);
}
.faq-item.is-open .faq-question {
  color: var(--color-link);
  border-bottom: 1px solid var(--color-border);
}
.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-size: cover;
  transition: transform 0.25s ease, background-color 0.2s;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(180deg);
  background-color: var(--color-secondary);
}
.faq-answer {
  padding: 0 var(--s-6);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: var(--s-5) var(--s-6);
}
.faq-answer p { margin: 0 0 var(--s-3) 0; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 599px) {
  .faq-question {
    padding: var(--s-4) var(--s-5);
    font-size: var(--text-base);
  }
  .faq-item.is-open .faq-answer {
    padding: var(--s-4) var(--s-5);
  }
}

/* ─── Scheduled Banner ──────────────────────────────────────────────────────── */
.scheduled-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 20px;
  background: yellow;
  border-bottom: 2px solid var(--color-warning);
  color: var(--color-text);
  font-size: var(--text-sm);
  text-align: center;
}
.scheduled-banner__icon {
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.scheduled-banner__text {
  line-height: 1.4;
}
