/* ======================================================================
   True Casinos Canada — main stylesheet
   Methodology: BEM (block__element--modifier)
   Sections:
     1. Reset & tokens
     2. Base typography
     3. Layout primitives (.container, .section, .two-col, .stack, .pill)
     4. Buttons
     5. Site chrome (.site-header, .site-footer)
     6. Hero (.hero)
     7. Casino card (.casino-card)
     8. Comparison table (.comparison-table)
     9. Promo block (.promo)
    10. Trust widget (.trust-widget)
    11. FAQ (.faq)
    12. Province disclaimer (.province-disclaimer)
    13. Sticky CTA (.sticky-cta)
    14. Bonus card (.bonus-card)
    15. Utilities (.sr-only, .callout, .breadcrumbs)
   ====================================================================== */

/* 1. Reset & tokens ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0f1320;
  --bg-elevated: #161c2e;
  --bg-card: #1c2336;
  --bg-card-2: #232b42;
  --border: #2a3349;
  --border-strong: #3a4666;
  --text: #eef2f7;
  --text-muted: #8b97b1;
  --brand: #ef3b4c;
  --brand-strong: #c81121;
  --brand-soft: rgba(239, 59, 76, 0.12);
  --brand-ink: #ffffff;
  --accent: #3ddc97;
  --accent-ink: #042118;
  --warn: #ffb84d;
  --danger: #ff7a8a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.28);
  --shadow-md: 0 14px 36px rgba(0,0,0,.42);
  --ease: cubic-bezier(.2,.7,.2,1);
  --container: 1200px;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(239,59,76,.10), transparent 60%),
    radial-gradient(900px 460px at 110% 0%, rgba(61,220,151,.06), transparent 60%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-bottom: 92px; /* reserve space for sticky CTA */
}

/* 2. Base typography ---------------------------------------------------- */
h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2vw + .75rem, 2.25rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--text); }
.muted, .p-muted { color: var(--text-muted); }
ul, ol { padding-left: 1.25rem; margin: 0 0 1em; }
li + li { margin-top: .35rem; }

/* 3. Layout primitives -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.stack > * + * { margin-top: var(--stack, 1rem); }
.section {
  padding: clamp(36px, 5vw, 76px) 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head {
  max-width: 820px;
  margin-bottom: 28px;
}
.section__kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(239,59,76,.22);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.two-col {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .two-col { grid-template-columns: 2fr 1fr; } }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
}
.pill--accent { background: rgba(61,220,151,.08); border-color: rgba(61,220,151,.3); color: var(--accent); }
.pill--brand  { background: var(--brand-soft); border-color: rgba(239,59,76,.3); color: var(--brand); }

/* 4. Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn--primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: var(--brand-ink);
  box-shadow: 0 8px 22px rgba(239,59,76,.38), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(239,59,76,.5), inset 0 1px 0 rgba(255,255,255,.2); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,.04); border-color: var(--brand); color: var(--brand); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 10px 16px; font-size: .85rem; }

/* 5. Site chrome -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15,19,32,.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.012em;
}
.site-header__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ink);
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(239,59,76,.35), inset 0 1px 0 rgba(255,255,255,.18);
}
.site-header__brand-name {
  font-size: 1rem;
}
.site-header__nav {
  margin-left: auto;
  display: none;
  gap: 4px;
}
.site-header__nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 11px;
  border-radius: 8px;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.site-header__nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.site-header__nav a.is-active {
  color: var(--brand);
  background: var(--brand-soft);
}
.site-header__cta { margin-left: auto; }
@media (min-width: 1040px) {
  .site-header__nav { display: flex; }
  .site-header__cta { margin-left: 8px; }
}

/* Footer ---------------------------------------------------------------- */
.site-footer {
  margin-top: 40px;
  padding: 44px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.site-footer__col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li + li { margin-top: 8px; }
.site-footer__col a { color: var(--text); font-size: .9rem; }
.site-footer__col a:hover { color: var(--brand); }
.site-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.site-footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer__badge {
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: .7rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* 6. Hero --------------------------------------------------------------- */
.hero {
  padding: clamp(40px, 6vw, 88px) 0 clamp(28px, 4vw, 56px);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 24px; right: 8%;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(239,59,76,.18), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  border: 1px solid rgba(239,59,76,.28);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero__title { margin-bottom: 16px; }
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand), #ff7a8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 22px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .85rem;
}
.hero__meta strong { color: var(--text); }
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.2fr 1fr; }
}

/* 7. Casino card -------------------------------------------------------- */
.casino-list {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .casino-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .casino-list { grid-template-columns: repeat(3, 1fr); } }

.casino-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.casino-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239,59,76,.4);
  box-shadow: 0 14px 32px rgba(0,0,0,.36);
}
.casino-card--editors-choice {
  border-color: rgba(239,59,76,.5);
  box-shadow: 0 16px 36px rgba(239,59,76,.14), var(--shadow-sm);
}
.casino-card--editors-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 100% 0%, rgba(239,59,76,.14), transparent 60%);
  pointer-events: none;
}
.casino-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: var(--brand-ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(239,59,76,.4);
}
.casino-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.casino-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.casino-card__logo--alt    { background: linear-gradient(135deg, #5a7cff, #2a46ff); color: #fff; }
.casino-card__logo--alt-2  { background: linear-gradient(135deg, #3ddc97, #1a9d68); color: #042118; }
.casino-card__logo--alt-3  { background: linear-gradient(135deg, #ffb84d, #d4801a); color: #2a1d04; }
.casino-card__logo--alt-4  { background: linear-gradient(135deg, #b061ff, #6b2dcc); color: #fff; }
.casino-card__logo--alt-5  { background: linear-gradient(135deg, #ff7a8a, #c81121); color: #fff; }
.casino-card__name {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 2px;
}
.casino-card__tagline {
  margin: 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.casino-card__rating-num {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: .85rem;
}
.casino-card__rating-label {
  color: var(--text-muted);
  font-size: .8rem;
}
.casino-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.casino-card__stat {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.casino-card__stat-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.casino-card__stat-value { font-weight: 800; font-size: .95rem; }
.casino-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.casino-card__tag {
  background: rgba(61,220,151,.08);
  border: 1px solid rgba(61,220,151,.25);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.casino-card__tag--crypto      { background: rgba(247,147,26,.08); border-color: rgba(247,147,26,.3); color: #f7931a; }
.casino-card__tag--fast-payout { background: rgba(61,220,151,.08); border-color: rgba(61,220,151,.3); color: var(--accent); }
.casino-card__tag--big-bonus   { background: var(--brand-soft); border-color: rgba(239,59,76,.3); color: var(--brand); }
.casino-card__tag--exclusive   { background: rgba(176,97,255,.1); border-color: rgba(176,97,255,.3); color: #c89bff; }
.casino-card__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.casino-card__trust::before {
  content: "✓";
  display: inline-flex;
  width: 16px; height: 16px;
  align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
  border-radius: 4px;
  font-size: .7rem;
}
.casino-card__cta { margin-top: auto; }

/* 8. Comparison table --------------------------------------------------- */
.comparison-table--scroll {
  display: block;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  font-size: .95rem;
}
.comparison-table__head th {
  text-align: left;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.comparison-table__row td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table__row:last-child td { border-bottom: 0; }
.comparison-table__row--editors-choice {
  background: linear-gradient(90deg, var(--brand-soft), transparent 65%);
}
.comparison-table__rank {
  width: 44px;
  font-weight: 900;
  color: var(--brand);
  font-size: 1.05rem;
}
.comparison-table__casino {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  min-width: 140px;
}
.comparison-table__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .78rem;
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  flex: none;
}
.comparison-table__rating {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .85rem;
}
.comparison-table__cta { text-align: right; }

/* 9. Promo (BitGuruz pitch block) -------------------------------------- */
.promo {
  background: linear-gradient(135deg, #1a2340 0%, #2a1832 60%, #4a1320 100%);
  border: 1px solid rgba(239,59,76,.32);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.promo::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(closest-side, rgba(239,59,76,.22), transparent 70%);
  pointer-events: none;
}
.promo__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 10px;
  position: relative;
}
.promo__offer {
  font-size: clamp(1.7rem, 3vw + .5rem, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 12px;
  position: relative;
}
.promo__sub {
  color: var(--text-muted);
  margin-bottom: 22px;
  position: relative;
}
.promo__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  position: relative;
}
.promo__features li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: .95rem;
}
.promo__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .72rem;
}
.promo__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.promo__terms {
  display: block;
  margin-top: 14px;
  font-size: .75rem;
  color: var(--text-muted);
  position: relative;
}
.promo--inline { padding: 22px; }
.promo--wide   { padding: 36px; }

/* 10. Trust widget ------------------------------------------------------ */
.trust-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}
.trust-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.trust-widget__label {
  font-weight: 700;
  font-size: .95rem;
}
.trust-widget__rating {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--brand);
}
.trust-widget__stars {
  position: relative;
  display: block;
  height: 18px;
  width: 140px;
  overflow: hidden;
}
.trust-widget__stars-track,
.trust-widget__stars-fill {
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M10 1.5l2.63 5.33 5.87.85-4.25 4.14 1 5.85L10 14.9l-5.25 2.77 1-5.85L1.5 7.68l5.87-.85z' fill='%23394a6b'/></svg>");
}
.trust-widget__stars-fill {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M10 1.5l2.63 5.33 5.87.85-4.25 4.14 1 5.85L10 14.9l-5.25 2.77 1-5.85L1.5 7.68l5.87-.85z' fill='%2300b74a'/></svg>");
  width: 0;
}
.trust-widget__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  font-size: .8rem;
}
.trust-widget__link {
  color: var(--brand);
  font-weight: 700;
}
.trust-widget__link:hover { text-decoration: underline; }
.trust-widget--compact { padding: 12px 14px; }

/* 11. FAQ --------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color .2s var(--ease);
}
.faq__item[open] { border-color: rgba(239,59,76,.45); }
.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform .2s var(--ease);
  flex: none;
}
.faq__item[open] .faq__question::after { content: "–"; color: var(--brand); }
.faq__answer {
  padding: 0 18px 18px;
  color: var(--text-muted);
}

/* 12. Province disclaimer ---------------------------------------------- */
.province-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,184,77,.3);
  background: rgba(255,184,77,.07);
  color: var(--text);
  font-size: .9rem;
}
.province-disclaimer__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--warn);
  color: #2a1d04;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: .85rem;
}
.province-disclaimer__text { margin: 0; }
.province-disclaimer__text strong { color: var(--warn); }

/* 13. Sticky CTA ------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(22,28,46,.92), rgba(15,19,32,.98));
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-cta__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.sticky-cta__headline {
  font-size: .95rem;
  font-weight: 900;
  color: var(--brand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__sub {
  font-size: .75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: var(--brand-ink);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(239,59,76,.45);
  white-space: nowrap;
  flex: none;
}
@media (min-width: 1040px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* 14. Bonus card -------------------------------------------------------- */
.bonus-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .bonus-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bonus-list { grid-template-columns: repeat(3, 1fr); } }

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.bonus-card:hover { transform: translateY(-2px); border-color: rgba(239,59,76,.4); }
.bonus-card--highlight {
  border-color: rgba(239,59,76,.5);
  background: linear-gradient(160deg, var(--bg-card), rgba(239,59,76,.06));
}
.bonus-card__casino {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}
.bonus-card__offer {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}
.bonus-card__terms {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 0 0 6px;
}
.bonus-card__cta { margin-top: auto; padding-top: 8px; }

/* 15. Utilities --------------------------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.callout--brand {
  background: linear-gradient(160deg, var(--bg-card), rgba(239,59,76,.06));
  border-color: rgba(239,59,76,.32);
}

.breadcrumbs {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--brand); }
.breadcrumbs__sep { margin: 0 6px; color: var(--text-muted); }

.divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 24px 0;
}

/* 16. Hero — homepage podium variant ----------------------------------- */
/* Used only on the homepage. Replaces the generic two-column hero with a
   "ranking podium": live ticker → editor badge → bold editorial H1 →
   top-3 cards (#1 physically elevated) → CTA row. */
.hero--podium { padding: clamp(28px, 4vw, 56px) 0 clamp(32px, 4vw, 64px); }
.hero--podium::before {
  top: 0; right: 0; left: auto;
  width: 60%; height: 280px;
  background: radial-gradient(ellipse at top right, rgba(239,59,76,.18), transparent 70%);
  filter: blur(4px);
}

.hero__ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: linear-gradient(90deg, rgba(239,59,76,.10), transparent 80%);
  border: 1px solid rgba(239,59,76,.22);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 100%;
}
.hero__ticker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
  box-shadow: 0 0 0 0 rgba(239,59,76,.5);
  animation: tcc-pulse 1.8s ease-in-out infinite;
}
.hero__ticker-text {
  letter-spacing: .02em;
}
.hero__ticker-text strong {
  color: var(--text);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
  margin-right: 4px;
}
@keyframes tcc-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,59,76,.4); }
  50%      { opacity: .55; box-shadow: 0 0 0 6px rgba(239,59,76,0); }
}

.hero__rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  background: var(--brand-soft);
  border: 1px solid rgba(239,59,76,.32);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 18px;
}
.hero__rank-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 4px 10px rgba(239,59,76,.45), inset 0 1px 0 rgba(255,255,255,.25);
}

.hero__h1 {
  font-size: clamp(2.2rem, 4.5vw + .8rem, 3.8rem);
  font-weight: 900;
  letter-spacing: -.022em;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 18ch;
}
.hero__h1-accent {
  display: block;
  background: linear-gradient(120deg, var(--brand) 0%, #ff7a8a 60%, #ffb84d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Podium ---------------------------------------------------------------- */
.podium {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin: 30px 0 26px;
}
@media (min-width: 720px) {
  .podium {
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: end;
    gap: 16px;
  }
}
.podium__item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.podium__item:hover {
  transform: translateY(-3px);
  border-color: rgba(239,59,76,.4);
}
.podium__item--first {
  border-color: rgba(239,59,76,.55);
  background:
    linear-gradient(165deg, rgba(239,59,76,.10) 0%, transparent 60%),
    var(--bg-card);
  box-shadow: 0 22px 40px rgba(239,59,76,.18), 0 6px 14px rgba(0,0,0,.32);
}
.podium__item--first::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px 200px at 90% 0%, rgba(239,59,76,.14), transparent 60%);
  pointer-events: none;
}
@media (min-width: 720px) {
  .podium__item--first { transform: translateY(-14px); padding-bottom: 28px; }
  .podium__item--first:hover { transform: translateY(-17px); }
}

.podium__rank {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-top-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius-sm);
  letter-spacing: -.02em;
}
.podium__item--first .podium__rank {
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: #fff;
  border-color: rgba(239,59,76,.55);
  width: 46px; height: 46px;
  font-size: 1.05rem;
  box-shadow: 0 6px 12px rgba(239,59,76,.45), inset 0 1px 0 rgba(255,255,255,.18);
}

.podium__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  margin-left: 36px;
  position: relative;
}
.podium__item--first .podium__head { margin-left: 42px; }
.podium__logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .82rem;
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  flex: none;
  letter-spacing: -.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.podium__logo--alt   { background: linear-gradient(135deg, #5a7cff, #2a46ff); color: #fff; }
.podium__logo--alt-2 { background: linear-gradient(135deg, #3ddc97, #1a9d68); color: #042118; }
.podium__name {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.podium__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.podium__rating strong {
  color: var(--accent);
  font-weight: 800;
}
.podium__bonus {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 4px 0 0;
  position: relative;
}
.podium__item--first .podium__bonus {
  font-size: 1.1rem;
  color: var(--brand);
}
.podium__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .76rem;
  color: var(--text-muted);
  position: relative;
}
.podium__meta strong { color: var(--text); font-weight: 700; }
.podium__cta {
  margin-top: auto;
  padding-top: 4px;
  position: relative;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.hero__cta-row [data-component="trustpilot-widget"] {
  flex: 1 1 260px;
  max-width: 360px;
}
.hero__legal {
  display: block;
  margin-top: 14px;
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}
