@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;600;700&display=swap');
:root {
  --bg-main: #14090B;
  --bg-card: #1E0E11;
  --accent: #EE2222;
  /* deeper red for surfaces that carry white text (AA needs ≤ #D41C1C at 4.5:1) */
  --accent-deep: #C81A1A;
  --accent-2: #E6BBA6;
  --text-main: #FCEFEA;
  --text-muted: #B08E86;
  --border: rgba(238,34,34,0.20);

  /* light surfaces for the dark brand logo (LOGO_TONE=dark) */
  --surface-head: #FDF6F2;
  --surface-foot: #F6E9E3;
  --on-surface: #1A0B0D;
  --on-surface-muted: #6E4B45;

  --font-head: 'Anton', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, Arial, sans-serif;

  --radius: 4px;
  --shadow: 0 8px 30px rgba(0,0,0,.45);
  --glow: 0 0 28px rgba(238,34,34,.55);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* inline links in running text: colour alone is 1.55:1 against body copy,
   so they must stay underlined to be identifiable (WCAG 1.4.1) */
main :is(p, li) a:not(.sbg-btn) {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .012em;
  line-height: 1.04;
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(1.9rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
p { margin: 0 0 1rem; overflow-wrap: anywhere; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- CONTAINER (single width owner) ---------- */
.sbg-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.2rem);
}

/* ---------- SECTIONS = STRIPS (alternating bands) ---------- */
.sbg-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, var(--bg-main) 0%, #100608 100%);
  position: relative;
}
.sbg-section--alt {
  background: linear-gradient(180deg, var(--bg-card) 0%, #170A0D 100%);
}
.sbg-section__head { max-width: 52rem; margin-bottom: 2rem; }
.sbg-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: .7rem;
}
.sbg-lead { color: var(--text-muted); font-size: 1.05rem; }
.sbg-hot {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: .12em .5em;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(238,34,34,.6);
  vertical-align: middle;
}
.sbg-mark {
  background: linear-gradient(transparent 60%, rgba(238,34,34,.35) 0);
  padding: 0 .1em;
}

/* ---------- BUTTONS ---------- */
.sbg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: .72rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.sbg-btn:hover { text-decoration: none; }
.sbg-btn--cta {
  background: linear-gradient(135deg, var(--accent-deep) 0%, #8E1010 100%);
  color: #fff;
  box-shadow: var(--glow);
}
.sbg-btn--cta:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 0 38px rgba(238,34,34,.72); }
.sbg-btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
}
.sbg-btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.sbg-btn--lg { padding: .95rem 2.2rem; font-size: 1.05rem; }

/* ---------- ICONS ---------- */
.sbg-icon {
  width: 1.5em; height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ---------- HEADER (light surface — dark logo) ---------- */
.sbg-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface-head);
  border-bottom: 3px solid var(--accent);
}
.sbg-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 2vw, 1.4rem);
  min-height: 68px;
  padding-block: .5rem;
}
.sbg-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.sbg-logo:hover { text-decoration: none; }
.sbg-logo__img {
  height: 40px;
  width: auto;
  max-width: min(45vw, 190px);
  object-fit: contain;
}
.sbg-nav {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, 1.4vw, 1.35rem);
  margin-inline-start: auto;
}
.sbg-nav a:not(.sbg-btn) {
  font-weight: 600;
  font-size: .93rem;
  color: var(--on-surface);
  padding: .4rem .1rem;
  position: relative;
}
.sbg-nav a:not(.sbg-btn):hover {
  color: var(--accent);
  text-decoration: none;
}
.sbg-nav a:not(.sbg-btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -.1rem;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .2s ease;
}
.sbg-nav a:not(.sbg-btn):hover::after { width: 100%; }
.sbg-header__cta { flex-shrink: 0; padding: .6rem 1.2rem; font-size: .9rem; }

.sbg-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-inline-start: auto;
}
.sbg-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.sbg-header.is-open .sbg-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sbg-header.is-open .sbg-burger span:nth-child(2) { opacity: 0; }
.sbg-header.is-open .sbg-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7 links + CTA + logo need ~920px; below that the row squeezed and wrapped */
@media (max-width: 1024px) {
  .sbg-burger { display: flex; }
  .sbg-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--surface-head);
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 14px 24px rgba(0,0,0,.3);
    padding: .4rem 0 .8rem;
  }
  .sbg-header.is-open .sbg-nav { display: flex; }
  .sbg-nav a:not(.sbg-btn) {
    padding: .85rem clamp(1rem, 4vw, 2.2rem);
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .sbg-nav a:not(.sbg-btn)::after { display: none; }
  .sbg-header__inner { position: relative; }
  .sbg-header__cta { margin-inline-start: 0; }
}
@media (max-width: 479px) {
  .sbg-header__cta { display: none; }
  .sbg-burger { margin-inline-start: auto; }
  .sbg-nav { margin-top: 0; }
  .sbg-header .sbg-nav__cta {
    display: inline-flex;
    margin: .7rem clamp(1rem, 4vw, 2.2rem) 0;
    width: auto;
  }
}
.sbg-nav__cta { display: none; }

/* ---------- HERO (image-first) ---------- */
.sbg-hero {
  border-top: none;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(238,34,34,.28) 0%, transparent 70%),
    linear-gradient(180deg, #1A0A0D 0%, var(--bg-main) 100%);
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
}
.sbg-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.sbg-hero__visual { order: -1; width: 100%; }
.sbg-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(238,34,34,.22);
}
.sbg-hero__visual:not(:has(img)) {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #2A0E12 0%, #14090B 60%, #EE2222 220%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.sbg-hero h1 { margin: 0; }
.sbg-hero__sub {
  max-width: 46rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.sbg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  align-items: center;
}
.sbg-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #14090B;
  background: linear-gradient(135deg, var(--accent-2), #F0D6C9);
  padding: .45rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(230,187,166,.35);
}

/* ---------- STATS-BAR (counters) ---------- */
.sbg-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem) clamp(2rem, 6vw, 4rem);
  justify-content: center;
  align-items: flex-start;
}
.sbg-stats__item { text-align: center; min-width: 0; }
.sbg-stats__value {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 22px rgba(238,34,34,.45);
}
.sbg-stats__label {
  display: block;
  margin-top: .5rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- OVERVIEW ---------- */
.sbg-overview p { color: var(--text-main); }
.sbg-overview p + p { margin-top: 1rem; }

/* ---------- FEATURE-CARDS (icon-rows) ---------- */
.sbg-features { display: flex; flex-direction: column; }
.sbg-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 0;
  min-width: 0;
}
.sbg-feature + .sbg-feature { border-top: 1px solid var(--border); }
.sbg-feature__icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: rgba(238,34,34,.08);
  border: 1px solid var(--accent-2);
  border-radius: var(--radius);
  color: var(--accent);
}
.sbg-feature__icon .sbg-icon { width: 1.7em; height: 1.7em; }
.sbg-feature__body { min-width: 0; }
.sbg-feature__body h3 { margin-bottom: .25rem; }
.sbg-feature__body p { margin: 0; color: var(--text-muted); }

/* ---------- CARDS-GRID ---------- */
.sbg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.2rem;
}
.sbg-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-width: 0;
  overflow: hidden;
}
.sbg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .7;
}
.sbg-card h3 { margin-bottom: .4rem; }
.sbg-card p { margin: 0; color: var(--text-muted); }
.sbg-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--accent-2);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: .9rem;
}

/* ---------- DATA-TABLE ---------- */
.sbg-table-wrap { overflow-x: auto; max-width: 100%; margin-block: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); }
.sbg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  min-width: 520px;
}
.sbg-table thead th {
  background: var(--accent-deep);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: left;
  padding: .85rem 1rem;
  white-space: nowrap;
  border-top: 2px solid var(--accent-2);
}
.sbg-table td {
  padding: .8rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
}
.sbg-table tbody tr:nth-child(odd) { background: var(--bg-card); }
.sbg-table tbody tr:nth-child(even) { background: var(--bg-main); }
.sbg-table tbody tr:hover { background: rgba(238,34,34,.10); }

/* ---------- TWO-COLS + CONTENT PANEL ---------- */
.sbg-twocols {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: start;
}
.sbg-twocols > * { min-width: 0; }
@media (max-width: 820px) { .sbg-twocols { grid-template-columns: 1fr; } }

.sbg-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sbg-panel__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-2);
}
.sbg-facts { margin: 0; }
.sbg-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  border-top: 1px solid var(--border);
}
.sbg-facts__row:first-child { border-top: none; }
.sbg-facts dt, .sbg-facts__row .sbg-facts__k { color: var(--text-muted); font-size: .88rem; margin: 0; }
.sbg-facts dd, .sbg-facts__row .sbg-facts__v { margin: 0; font-weight: 600; text-align: right; }

.sbg-checklist { list-style: none; margin: 0; padding: 0; }
.sbg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
}
.sbg-checklist .sbg-icon { color: var(--accent); margin-top: .1em; }

.sbg-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.sbg-tile {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.sbg-tile__value { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent); }
.sbg-tile__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }

.sbg-score { text-align: center; }
.sbg-score__num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 22px rgba(238,34,34,.45);
}
.sbg-score__stars { display: flex; justify-content: center; gap: .15rem; color: var(--accent-2); margin: .4rem 0; }
/* 8.9/10 ≈ 4.5 stars — five solid ones read as a perfect score */
.sbg-score__star--dim { opacity: .35; }
.sbg-score__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }

/* ---------- NUMBERED-LIST ---------- */
.sbg-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.sbg-steps li {
  counter-increment: step;
  position: relative;
  padding: .3rem 0 1.3rem 3.6rem;
  min-height: 2.8rem;
}
.sbg-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), #8E1010);
  border-radius: var(--radius);
  box-shadow: 0 0 16px rgba(238,34,34,.45);
}
.sbg-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.3rem; top: 2.9rem; bottom: .2rem;
  width: 2px;
  background: var(--border);
}
.sbg-steps li strong { display: block; font-weight: 700; }

/* ---------- CATEGORIES-BAR ---------- */
.sbg-pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.sbg-pills a, .sbg-pills span {
  display: inline-block;
  padding: .4rem .95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .84rem;
  color: var(--text-main);
  background: var(--bg-card);
}
.sbg-pills a:hover { border-color: var(--accent); color: var(--accent-2); text-decoration: none; }

/* ---------- PAGE-HEADER ---------- */
.sbg-page-header {
  position: relative;
  background: linear-gradient(180deg, #1A0A0D 0%, var(--bg-main) 100%);
  border-top: none;
  border-bottom: 3px solid var(--accent);
  padding-block: clamp(2rem, 5vw, 3.2rem);
}
.sbg-page-header h1 { margin-bottom: .5rem; }
.sbg-breadcrumb { font-size: .82rem; color: var(--text-muted); }
.sbg-breadcrumb a { color: var(--text-muted); }
.sbg-breadcrumb a:hover { color: var(--accent-2); }
.sbg-breadcrumb [aria-current] { color: var(--text-main); }
.sbg-breadcrumb__sep { margin: 0 .4rem; opacity: .6; }

/* ---------- LEGAL-BODY ---------- */
/* the measure belongs to the container — on the <section> it clipped the whole band */
.sbg-legal { counter-reset: legal; }
.sbg-legal .sbg-container { max-width: 60rem; }
.sbg-legal h2 { counter-increment: legal; }
.sbg-legal h2::before {
  content: counter(legal) '. ';
  color: var(--accent);
}
.sbg-legal h3 { margin-top: 1.6rem; }
.sbg-legal p, .sbg-legal li { color: var(--text-muted); }
.sbg-legal ul, .sbg-legal ol { padding-inline-start: 1.4rem; }

/* ---------- TOC ---------- */
.sbg-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-inline-start: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.sbg-toc__title { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: .6rem; }
.sbg-toc ul { list-style: none; margin: 0; padding: 0; }
.sbg-toc li { padding: .3rem 0; }
.sbg-toc a { color: var(--text-main); font-size: .92rem; }
.sbg-toc a:hover { color: var(--accent-2); }

/* ---------- FAQ (boxed) ---------- */
.sbg-faq { display: flex; flex-direction: column; gap: .9rem; }
.sbg-faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1.3rem;
}
.sbg-faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  color: var(--accent-2);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.sbg-faq summary::-webkit-details-marker { display: none; }
.sbg-faq summary::before {
  content: '+';
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.3rem;
  line-height: 1;
  margin-right: .5rem;
  text-shadow: 0 0 12px rgba(238,34,34,.6);
  transition: transform .2s;
}
.sbg-faq details[open] summary::before { content: '\2212'; }
.sbg-faq details > :not(summary) { padding: .2rem 0 1.1rem; color: var(--text-muted); }

/* ---------- CTA-BLOCK ---------- */
/* not a .sbg-section, so it owns its own padding — without it the h2 sat on the border */
.sbg-cta {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 3px solid var(--accent-2);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(238,34,34,.32) 0%, transparent 65%),
    linear-gradient(180deg, #200A0E 0%, #0E0507 100%);
  text-align: center;
}
.sbg-cta .sbg-container { max-width: 44rem; }
.sbg-cta h2 { margin-bottom: .8rem; }
.sbg-cta p { color: var(--text-muted); margin-bottom: 1.6rem; }

/* ---------- PAYMENTS-TABLE ---------- */
.sbg-pay td:first-child { white-space: nowrap; }
.sbg-pay__method { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.sbg-pay__method .sbg-icon { color: var(--accent-2); }

/* ---------- RTP-GRID ---------- */
.sbg-rtp {
  display: grid;
  gap: clamp(.6rem, 1.5vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .sbg-rtp { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .sbg-rtp { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.sbg-rtp-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sbg-rtp-item:hover { transform: translateY(-3px); box-shadow: 0 0 26px rgba(238,34,34,.4); }
.sbg-rtp-item__thumb {
  aspect-ratio: 3 / 2;
  position: relative;
  background: linear-gradient(135deg, #2A0E12, #14090B);
}
.sbg-rtp-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sbg-rtp-item__name {
  padding: .55rem .7rem;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  /* two lines: at 320px the column is ~140px and one line cut the provider off.
     border-box, so the vertical padding has to be in the reserve too */
  min-height: calc(2 * 1.3em + 1.1rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sbg-rtp-tooltip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity .2s;
  background: linear-gradient(0deg, rgba(10,5,7,.95), rgba(10,5,7,.6));
  padding: .5rem .7rem;
  font-size: .78rem;
}
.sbg-rtp-tooltip b { color: var(--accent-2); }
.sbg-rtp-item:hover .sbg-rtp-tooltip { opacity: 1; }
.sbg-rtp-badge {
  position: absolute;
  top: .4rem; right: .4rem;
  z-index: 2;
  font-size: .68rem;
  font-weight: 700;
  color: #14090B;
  background: var(--accent-2);
  padding: .1rem .45rem;
  border-radius: 999px;
}

/* ---------- FOOTER (light surface — dark logo) ---------- */
.sbg-footer {
  background: var(--surface-foot);
  color: var(--on-surface);
  border-top: 3px solid var(--accent);
}
.sbg-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.4rem, 4vw, 2.6rem);
  padding-block: clamp(2.4rem, 5vw, 3.4rem);
}
.sbg-footer__inner > * { min-width: 0; }
.sbg-footer__brand .sbg-logo__img { height: 36px; max-width: 180px; }
.sbg-footer__brand p { color: var(--on-surface-muted); font-size: .9rem; margin-top: .9rem; }
.sbg-footer__col h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--on-surface);
  margin-bottom: .8rem;
}
.sbg-footer__col ul { list-style: none; margin: 0; padding: 0; }
.sbg-footer__col li { padding: .28rem 0; }
.sbg-footer__col a { color: var(--on-surface-muted); font-size: .9rem; }
.sbg-footer__col a:hover { color: var(--accent); }
.sbg-footer__bottom {
  border-top: 1px solid rgba(0,0,0,.1);
}
.sbg-footer__bottom-inner {
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
/* flex so the 40px badge stops distending the first 20px line box of the copy */
.sbg-footer__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .78rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
  max-width: 60ch;
}
.sbg-footer__age {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .8rem;
  color: var(--accent);
}
.sbg-footer__copy { font-size: .8rem; color: var(--on-surface-muted); }
@media (max-width: 820px) {
  .sbg-footer__inner { grid-template-columns: 1fr 1fr; }
  .sbg-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .sbg-footer__inner { grid-template-columns: 1fr; }
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.sbg-footer .sbg-logo__img{filter:none;background:transparent;padding:0}
.sbg-footer .sbg-footer__logo-chip{background:transparent;padding:0}
/* sa-ph-media */
.sbg-page-header:has(.sbg-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.sbg-page-header:has(.sbg-hero__img) .sbg-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.sbg-page-header:has(.sbg-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
.sbg-page-header:has(.sbg-hero__img)>:not(.sbg-hero__img){position:relative;z-index:2}
.sbg-page-header:has(.sbg-hero__img),.sbg-page-header:has(.sbg-hero__img) h1,.sbg-page-header:has(.sbg-hero__img) a,.sbg-page-header:has(.sbg-hero__img) p,.sbg-page-header:has(.sbg-hero__img) li,.sbg-page-header:has(.sbg-hero__img) span{color:#fff}
/* sa-hero-media */
.sbg-hero:has(>.sbg-hero__img){position:relative;isolation:isolate}
.sbg-hero:has(>.sbg-hero__img)>.sbg-hero__img{z-index:0}
.sbg-hero:has(>.sbg-hero__img)::after{z-index:1}
.sbg-hero:has(>.sbg-hero__img)>:not(.sbg-hero__img){position:relative;z-index:2}
/* sa-rhythm */
:where(.sbg-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.sbg-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.sbg-rtp-item,.sbg-rtp-item:hover,.sbg-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
