/* === SpinEmpire Canada Review — main.css === */
:root {
  --bg:         #060c1a;
  --bg-card:    #0d1828;
  --bg-alt:     #111f34;
  --gold:       #f0b429;
  --gold-dim:   rgba(240,180,41,0.12);
  --gold-glow:  rgba(240,180,41,0.35);
  --blue:       #4da6ff;
  --green:      #34d399;
  --red:        #f87171;
  --text:       #e2eaf5;
  --muted:      #7a90aa;
  --border:     rgba(255,255,255,0.07);
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Utilities ─── */
.spc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header ─── */
.spc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,12,26,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.spc-header__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.spc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.spc-logo:hover { text-decoration: none; opacity: 0.9; }
.spc-logo img { display: block; height: 40px; width: auto; }

/* Nav */
.spc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.spc-nav a {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.spc-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.spc-nav a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Header buttons */
.spc-hdr-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.spc-hdr-mob-cta {
  display: none !important;
  flex-shrink: 0;
}

.spc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.spc-btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.spc-btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.spc-btn--gold {
  background: linear-gradient(135deg, #ffd060, #f0b429, #c88200);
  color: #000;
  border: none;
  box-shadow: 0 2px 14px var(--gold-glow);
}
.spc-btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(240,180,41,0.55);
  text-decoration: none;
  color: #000;
}

.spc-btn--full { width: 100%; }
.spc-btn--lg { padding: 13px 28px; font-size: 15px; }

/* Mobile burger */
.spc-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 7px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  cursor: pointer;
  margin-left: auto;
}
.spc-burger span {
  display: block;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile panel */
.spc-mob-panel {
  display: none;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.spc-mob-panel.is-open { display: block; }

.spc-mob-panel a {
  display: block;
  padding: 12px 20px;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.spc-mob-panel a:last-child { border-bottom: none; }
.spc-mob-panel a.active { color: var(--gold); }
.spc-mob-panel a:hover { color: var(--text); text-decoration: none; }

.spc-mob-cta {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
}

/* ─── Breadcrumb ─── */
.spc-breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.spc-breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.spc-breadcrumb__inner a { color: var(--muted); }
.spc-breadcrumb__inner a:hover { color: var(--gold); text-decoration: none; }
.spc-breadcrumb__sep { color: var(--border); }
.spc-breadcrumb__cur { color: var(--text); }

/* ─── Hero ─── */
.spc-hero {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.spc-hero picture { display: block; width: 100%; }

.spc-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.spc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(6,12,26,0.88) 0%, rgba(6,12,26,0.5) 55%, transparent 100%);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.spc-hero__overlay > * { pointer-events: auto; }

.spc-hero__overlay .spc-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.spc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.spc-hero__title {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  max-width: 520px;
}

.spc-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 26px;
  max-width: 400px;
  line-height: 1.5;
}

.spc-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Main two-column layout ─── */
.spc-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* ─── Sidebar ─── */
.spc-sidebar {
  width: 268px;
  flex-shrink: 0;
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ─── Cards (sidebar) ─── */
.spc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spc-card__head {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Score widget */
.spc-score {
  padding: 22px 18px 18px;
  text-align: center;
}

.spc-score__name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.spc-score__region {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.spc-score__ring {
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  position: relative;
}

.spc-score__ring svg { transform: rotate(-90deg); }

.spc-score__ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.spc-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
}

.spc-score__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(52,211,153,0.1);
  border-radius: 5px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* TOC */
.spc-toc { padding: 6px 0; }

.spc-toc__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--muted);
  transition: all 0.15s;
  border-left: 2px solid transparent;
}
.spc-toc__item:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-left-color: rgba(240,180,41,0.5);
  text-decoration: none;
}
.spc-toc__item.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-dim);
}

.spc-toc__n {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--bg-alt);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

/* Quick facts */
.spc-facts { padding: 4px 0; }

.spc-facts__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 16px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.spc-facts__row:last-child { border-bottom: none; }
.spc-facts__lbl { color: var(--muted); flex-shrink: 0; max-width: 45%; }
.spc-facts__val { color: var(--text); font-weight: 600; text-align: right; }

/* Sidebar CTA */
.spc-sb-cta {
  padding: 18px;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-alt), var(--bg-card));
}

.spc-sb-cta__bonus {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 3px;
}
.spc-sb-cta__sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ─── Content area ─── */
.spc-content {
  flex: 1;
  min-width: 0;
}

.spc-content h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 90px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spc-content h2:first-child { margin-top: 0; }

.spc-content h2 .h2-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spc-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}

.spc-content p {
  margin-bottom: 16px;
  color: rgba(226,234,245,0.88);
  line-height: 1.75;
}

.spc-content ul, .spc-content ol {
  margin: 0 0 16px 22px;
}
.spc-content li {
  margin-bottom: 7px;
  color: rgba(226,234,245,0.85);
}

/* Overview table */
.spc-overview-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.spc-overview-tbl tr:nth-child(odd) td { background: var(--bg-alt); }
.spc-overview-tbl tr:nth-child(even) td { background: var(--bg-card); }
.spc-overview-tbl td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spc-overview-tbl tr:last-child td { border-bottom: none; }
.spc-overview-tbl td:first-child {
  color: var(--muted);
  font-weight: 600;
  width: 38%;
  white-space: nowrap;
}
.spc-overview-tbl td:last-child { color: var(--text); }

/* Pros / Cons */
.spc-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.spc-pros, .spc-cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.spc-pros__hd {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.spc-cons__hd {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spc-pros ul, .spc-cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spc-pros li, .spc-cons li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--text);
}
.spc-pros li:last-child, .spc-cons li:last-child { border-bottom: none; }
.spc-pros li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2334d399'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.spc-cons li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23f87171'/%3E%3Cpath d='M5.5 5.5l5 5M10.5 5.5l-5 5' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* Payment tags */
.spc-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.spc-pay-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* Info box */
.spc-info {
  background: var(--bg-alt);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(226,234,245,0.88);
}
.spc-info--gold { border-left-color: var(--gold); background: var(--gold-dim); }
.spc-info--green { border-left-color: var(--green); }

/* Providers grid */
.spc-providers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}

.spc-provider {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: border-color 0.2s;
}
.spc-provider:hover { border-color: rgba(240,180,41,0.3); }

.spc-provider img {
  max-height: 34px;
  max-width: 86px;
  object-fit: contain;
  filter: brightness(0.65) saturate(0);
  transition: filter 0.2s;
}
.spc-provider:hover img { filter: brightness(1) saturate(1); }

/* Bonus stage mini-cards */
.spc-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.spc-stage {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  text-align: center;
}
.spc-stage:hover { transform: translateY(-2px); border-color: rgba(240,180,41,0.35); }

.spc-stage::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.spc-stage__lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.spc-stage__pct {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.spc-stage__cap {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.spc-stage__spins {
  display: inline-block;
  background: rgba(52,211,153,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.spc-stage__game {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* FAQ */
.spc-faq { margin-bottom: 32px; }

.spc-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.spc-faq__q {
  width: 100%;
  text-align: left;
  padding: 15px 18px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: none;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
.spc-faq__q:hover { background: var(--bg-alt); }
.spc-faq__q[aria-expanded="true"] { color: var(--gold); }
.spc-faq__q[aria-expanded="true"] .spc-faq__icon { transform: rotate(45deg); }

.spc-faq__icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s;
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
}

.spc-faq__a {
  display: none;
  padding: 15px 18px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: rgba(226,234,245,0.85);
  line-height: 1.7;
}
.spc-faq__a.open { display: block; }

/* ─── BONUS PAGE ─── */
/* Bonus full-detail cards */
.spc-bonus-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.spc-bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  overflow: hidden;
  transition: border-color 0.2s;
}
.spc-bonus-card:hover { border-color: rgba(240,180,41,0.3); }

.spc-bonus-card__img {
  width: 190px;
  flex-shrink: 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.spc-bonus-card__img img { width: 100%; height: 100%; object-fit: cover; }

.spc-bonus-card__body { padding: 20px 24px; flex: 1; }

.spc-bonus-card__stage {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.spc-bonus-card__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.2;
}
.spc-bonus-card__desc {
  font-size: 14px;
  color: rgba(226,234,245,0.85);
  margin-bottom: 14px;
  line-height: 1.6;
}

.spc-bonus-stats-full {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.spc-bonus-stats-full li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.spc-bonus-stats-full li:last-child { border-bottom: none; }
.spc-bonus-stats-full li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.spc-bonus-stats-full li span:first-child { color: var(--muted); font-weight: 500; }
.spc-bonus-stats-full li span:last-child { font-weight: 700; text-align: right; }

.spc-bonus-card__terms {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ─── APP PAGE ─── */
.spc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.spc-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: border-color 0.2s;
}
.spc-feature:hover { border-color: rgba(240,180,41,0.25); }
.spc-feature__icon { margin-bottom: 12px; }
.spc-feature__title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.spc-feature__text { font-size: 12px; color: var(--muted); line-height: 1.55; }

.spc-steps { list-style: none; margin-bottom: 32px; }
.spc-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.spc-steps li:last-child { border-bottom: none; }
.spc-steps__n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd060, var(--gold), #c88200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}
.spc-steps__body { flex: 1; }
.spc-steps__label { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.spc-steps__desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Compare table */
.spc-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spc-compare th {
  background: var(--bg-alt);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.spc-compare td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.spc-compare tr:last-child td { border-bottom: none; }
.spc-compare tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.spc-compare td:first-child { color: var(--muted); font-weight: 600; }
.spc-compare .yes { color: var(--green); font-weight: 700; }
.spc-compare .no { color: var(--red); }

/* ─── Footer ─── */
.spc-footer {
  background: #040810;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}

.spc-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 36px;
}

.spc-footer__brand { }
.spc-footer__brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
}

.spc-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.spc-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.spc-footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.spc-footer__links a:hover { color: var(--text); text-decoration: none; }

/* Aggregators row */
.spc-footer__agg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.spc-footer__agg-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  flex-shrink: 0;
}
.spc-footer__agg-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.spc-footer__agg-list img {
  height: 20px;
  width: auto;
  filter: grayscale(1) brightness(2.5);
  opacity: 0.45;
}

/* Disclaimer */
.spc-footer__disc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.spc-footer__disc p { margin-bottom: 6px; }
.spc-footer__disc a { color: var(--muted); text-decoration: underline; }

/* ─── Sticky scroll CTA ─── */
.spc-scroll-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(7,12,24,0.97) 60%, transparent);
  transition: bottom 0.35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.spc-scroll-cta.is-visible {
  bottom: 0;
  pointer-events: auto;
}
.spc-scroll-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(240,180,41,0.45);
  max-width: 480px;
  width: 100%;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.spc-scroll-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,180,41,0.55);
  color: #000;
  text-decoration: none;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .spc-nav, .spc-hdr-btns { display: none; }
  .spc-burger { display: flex; }
  .spc-hdr-mob-cta { display: flex !important; }

  .spc-hero img { height: 300px; }
  .spc-hero { max-height: 300px; }

  .spc-main {
    flex-direction: column;
    padding: 24px 10px;
    gap: 20px;
    overflow-x: hidden;
  }
  .spc-sidebar {
    width: 100%;
    position: static;
  }
  .spc-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .spc-stages { grid-template-columns: 1fr 1fr; }
  .spc-proscons { grid-template-columns: 1fr; }

  .spc-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .spc-bonus-card { flex-direction: column; }
  .spc-bonus-card__img { width: 100%; height: 160px; }
  .spc-bonus-card__body { padding: 16px; }
  .spc-bonus-card__title { font-size: 19px; }

  /* Prevent inner elements from causing horizontal overflow */
  .spc-content table,
  .spc-content img,
  .spc-content pre,
  .spc-content .spc-info,
  .spc-content .spc-stages,
  .spc-content .spc-bonus-grid,
  .spc-content .spc-payment-row,
  .spc-content .sec-bonus-stats { max-width: 100%; }
}

@media (max-width: 640px) {
  .spc-header__bar { padding-left: 10px; padding-right: 10px; gap: 10px; }
  .spc-breadcrumb__inner { padding-left: 10px; padding-right: 10px; }
  .spc-wrap { padding-left: 10px; padding-right: 10px; }

  .spc-main { padding: 16px 10px; gap: 16px; }

  .spc-footer__grid { grid-template-columns: 1fr; padding-left: 10px; padding-right: 10px; }
  .spc-footer__agg { padding-left: 10px; padding-right: 10px; gap: 12px; }
  .spc-footer__disc { padding-left: 10px; padding-right: 10px; }

  .spc-mob-panel a { padding-left: 10px; padding-right: 10px; }
  .spc-mob-cta { padding-left: 10px; padding-right: 10px; }

  /* Overview table — stack on mobile */
  .spc-overview-tbl { font-size: 13px; }
  .spc-overview-tbl td { padding: 8px 10px; display: block; width: 100% !important; white-space: normal; }
  .spc-overview-tbl td:first-child {
    padding-bottom: 2px;
    border-bottom: none;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .spc-overview-tbl td:last-child { padding-top: 0; }
  .spc-overview-tbl tr { display: block; border-bottom: 1px solid var(--border); }
  .spc-overview-tbl tr:last-child { border-bottom: none; }

  /* Stages — 2 col compact */
  .spc-stages { grid-template-columns: 1fr 1fr; gap: 8px; }
  .spc-stage { padding: 14px 10px; }
  .spc-stage__pct { font-size: 24px; }
  .spc-stage__cap { font-size: 12px; }
  .spc-stage__game { font-size: 10px; }

  /* Bonus cards */
  .spc-bonus-card { flex-direction: column; }
  .spc-bonus-card__img { width: 100%; height: 140px; }
  .spc-bonus-card__body { padding: 14px 12px; }
  .spc-bonus-card__title { font-size: 18px; }
  .spc-bonus-stats-full { width: 100%; }
  .spc-bonus-stats-full li { padding: 7px 10px; font-size: 12px; flex-wrap: wrap; gap: 4px; }
  .spc-bonus-stats-full li span:last-child { word-break: break-word; }

  .spc-providers { grid-template-columns: repeat(3, 1fr); }
  .spc-hero__title { font-size: 20px; }
  .spc-feature-grid { grid-template-columns: 1fr 1fr; }

  .spc-payment-row { gap: 6px; }
  .spc-pay-tag { font-size: 12px; padding: 5px 10px; }

  .spc-scroll-cta { padding: 10px 10px 14px; }
}

@media (max-width: 480px) {
  /* Stages — single col on small phones */
  .spc-stages { grid-template-columns: 1fr 1fr; }

  /* Bonus card body tighter */
  .spc-bonus-card__body { padding: 12px 12px; }
  .spc-bonus-card__title { font-size: 16px; }

  .spc-providers { grid-template-columns: repeat(3, 1fr); }
  .spc-feature-grid { grid-template-columns: 1fr; }
  .spc-proscons { gap: 12px; }
  .spc-hero__badge { font-size: 10px; }
  .spc-hero__sub { font-size: 14px; }
  .spc-hero__actions { flex-direction: column; gap: 8px; }
  .spc-hero__actions .spc-btn { width: 100%; justify-content: center; }
  .spc-footer__agg-list { gap: 12px; }
  .spc-footer__agg-list img { height: 16px; }
  .spc-hdr-mob-cta { font-size: 13px; padding: 8px 12px; }
  .spc-scroll-cta__btn { font-size: 14px; padding: 13px 20px; }
}
