/* SpinEmpire Australia 15 — sp15 prefix — Analytical/Strategic theme */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sp15-bg:          #07090f;
  --sp15-surface:     #0d1321;
  --sp15-surface2:    #141e33;
  --sp15-surface3:    #1c2840;
  --sp15-border:      rgba(255,255,255,0.07);
  --sp15-orange:      #f97316;
  --sp15-orange-lt:   #fb923c;
  --sp15-violet:      #7c3aed;
  --sp15-violet-lt:   #a78bfa;
  --sp15-green:       #22c55e;
  --sp15-text:        #e2e8f0;
  --sp15-muted:       #6b7fa3;
  --sp15-radius:      8px;
  --sp15-radius-lg:   14px;
  --sp15-wrap:        1160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--sp15-bg);
  color: var(--sp15-text);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Wrap ─── */
.sp15-wrap {
  max-width: var(--sp15-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.sp15-section-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ─── Buttons ─── */
.sp15-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--sp15-radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
  border: none;
  white-space: nowrap;
}
.sp15-btn:hover { opacity: .88; transform: translateY(-1px); }
.sp15-btn--primary {
  background: var(--sp15-orange);
  color: #fff;
}
.sp15-btn--outline {
  background: transparent;
  color: var(--sp15-orange);
  border: 1.5px solid var(--sp15-orange);
}
.sp15-btn--lg { padding: 15px 32px; font-size: 15px; }

/* ─── Header ─── */
.sp15-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sp15-border);
}
.sp15-header__bar {
  max-width: var(--sp15-wrap);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sp15-head__left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.sp15-logo img { height: 38px; width: auto; }
.sp15-nav { flex: 1; display: flex; justify-content: center; }
.sp15-nav ul { display: flex; gap: 4px; }
.sp15-nav a {
  padding: 8px 16px;
  border-radius: var(--sp15-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--sp15-muted);
  transition: color .18s, background .18s;
}
.sp15-nav a:hover,
.sp15-nav a.active { color: var(--sp15-text); background: var(--sp15-surface2); }
.sp15-head__actions { display: flex; gap: 8px; flex-shrink: 0; }
.sp15-head__mobile-cta { display: none; }

/* Burger */
.sp15-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.sp15-burger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--sp15-text); transition: .25s;
}

/* Mobile panel */
.sp15-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
}
.sp15-panel {
  position: fixed; top: 0; right: 0; z-index: 201;
  width: min(320px, 90vw); height: 100%;
  background: var(--sp15-surface);
  border-left: 1px solid var(--sp15-border);
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .28s ease;
}
.sp15-panel.is-open { transform: translateX(0); }
.sp15-panel__head {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.sp15-panel__logo img { height: 34px; }
.sp15-panel__close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
  color: var(--sp15-muted);
}
.sp15-panel__close::before,
.sp15-panel__close::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 18px; height: 2px; background: currentColor;
  border-radius: 2px; transform-origin: center;
}
.sp15-panel__close::before { transform: rotate(45deg); }
.sp15-panel__close::after { transform: rotate(-45deg); }
.sp15-panel__nav li { border-bottom: 1px solid var(--sp15-border); }
.sp15-panel__nav a {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 500;
  color: var(--sp15-text);
  transition: color .18s;
}
.sp15-panel__nav a:hover,
.sp15-panel__nav a.active { color: var(--sp15-orange); }
.sp15-panel__actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}
.sp15-panel__actions .sp15-btn { width: 100%; }

/* ─── Hero ─── */
.sp15-hero {
  position: relative;
  background: var(--sp15-surface);
  overflow: hidden;
}
.sp15-hero__link { display: block; }
.sp15-hero__link picture { display: block; }
.sp15-hero__link img { width: 100%; height: auto; display: block; }

.sp15-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7,9,15,.82) 0%, rgba(7,9,15,.4) 60%, transparent 100%);
}
.sp15-hero__overlay > * { pointer-events: auto; }
.sp15-hero__overlay .sp15-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}
.sp15-hero__tag {
  display: inline-block;
  background: var(--sp15-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.sp15-hero__title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}
.sp15-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  line-height: 1.6;
}
.sp15-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Stats Bar ─── */
.sp15-statsbar {
  background: var(--sp15-surface);
  border-bottom: 1px solid var(--sp15-border);
}
.sp15-statsbar__inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.sp15-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
  padding: 4px 12px;
  border-right: 1px solid var(--sp15-border);
}
.sp15-stat:last-child { border-right: none; }
.sp15-stat__val {
  font-size: 28px;
  font-weight: 800;
  color: var(--sp15-orange);
  line-height: 1;
}
.sp15-stat__label {
  font-size: 12px;
  color: var(--sp15-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ─── Section base ─── */
.sp15-section { padding: 72px 0; }
.sp15-section--alt { background: var(--sp15-surface); }
.sp15-section--dark { background: var(--sp15-surface2); }

.sp15-section__head {
  margin-bottom: 48px;
  max-width: 700px;
}
.sp15-section__head--center {
  margin: 0 auto 48px;
  text-align: center;
}

.sp15-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sp15-orange);
  margin-bottom: 12px;
}
.sp15-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--sp15-orange);
  border-radius: 2px;
}

.sp15-h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}
.sp15-h2 em { color: var(--sp15-orange); font-style: normal; }

.sp15-intro {
  font-size: 15px;
  color: var(--sp15-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ─── Bonus Package section ─── */
.sp15-stage-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: var(--sp15-radius-lg);
  border: 1px solid var(--sp15-border);
}
.sp15-stage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sp15-stage-table th {
  background: var(--sp15-surface3);
  color: var(--sp15-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sp15-border);
  white-space: nowrap;
}
.sp15-stage-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sp15-border);
  vertical-align: top;
  color: var(--sp15-text);
}
.sp15-stage-table tr:last-child td { border-bottom: none; }
.sp15-stage-table tr:hover td { background: rgba(249,115,22,.04); }
.sp15-stage-table .sp15-td--stage {
  font-weight: 700;
  color: var(--sp15-orange);
  white-space: nowrap;
}
.sp15-stage-table .sp15-td--match {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.sp15-td--best { color: var(--sp15-green); font-weight: 700; }
.sp15-td--muted { color: var(--sp15-muted); }

/* Stage cards grid */
.sp15-stage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sp15-stage-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.sp15-stage-card:hover { border-color: var(--sp15-orange); }
.sp15-stage-card__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.sp15-stage-card__body { padding: 20px; }
.sp15-stage-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sp15-orange);
  background: rgba(249,115,22,.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.sp15-stage-card__match {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.sp15-stage-card__h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--sp15-text);
  margin-bottom: 10px;
}
.sp15-stage-card__desc {
  font-size: 13px;
  color: var(--sp15-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sp15-stage-stats {
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.sp15-stage-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--sp15-border);
}
.sp15-stage-stats li:last-child { border-bottom: none; }
.sp15-stage-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.sp15-stage-stats li span:first-child { color: var(--sp15-muted); }
.sp15-stage-stats li span:last-child { font-weight: 700; color: #fff; }
.sp15-stage-card__terms {
  font-size: 11px;
  color: var(--sp15-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.sp15-stage-card a.sp15-btn { width: 100%; }

/* Hidden global widget anchor */
a[data-bonus="cta_url"] { display: none; }

/* ─── Volatility section ─── */
.sp15-vol-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.sp15-vol-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 200px;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius-lg);
  padding: 24px 20px;
}
.sp15-vol-card__icon {
  margin-bottom: 14px;
  border-radius: var(--sp15-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--sp15-surface3);
}
.sp15-vol-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp15-vol-card__stage {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sp15-muted);
  margin-bottom: 6px;
}
.sp15-vol-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sp15-vol-card__provider {
  font-size: 12px;
  color: var(--sp15-orange);
  font-weight: 600;
  margin-bottom: 12px;
}
.sp15-vol-card__mechanic {
  font-size: 12px;
  color: var(--sp15-violet-lt);
  font-weight: 600;
  background: rgba(124,58,237,.12);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.sp15-vol-card__desc {
  font-size: 13px;
  color: var(--sp15-muted);
  line-height: 1.6;
}

/* ─── Info row (two-col) ─── */
.sp15-info-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sp15-info-row__text { flex: 1 1 380px; }
.sp15-info-row__aside { flex: 0 0 320px; }
.sp15-info-row__text h2 { margin-bottom: 16px; }
.sp15-info-row__text p { color: var(--sp15-muted); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.sp15-info-row__text p:last-child { margin-bottom: 0; }

/* Aside box */
.sp15-aside-box {
  background: var(--sp15-surface3);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius-lg);
  padding: 24px;
}
.sp15-aside-box__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sp15-muted);
  margin-bottom: 16px;
}
.sp15-aside-list { display: flex; flex-direction: column; gap: 12px; }
.sp15-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--sp15-text);
  line-height: 1.5;
}
.sp15-aside-list li .sp15-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sp15-orange);
  margin-top: 7px;
}

/* ─── Providers ─── */
.sp15-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.sp15-provider-item {
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.sp15-provider-item:hover { border-color: var(--sp15-orange); }
.sp15-provider-item img { height: 32px; width: auto; transition: opacity .2s; }
.sp15-provider-item:hover img { opacity: 1; }

/* ─── Checklist section ─── */
.sp15-checklist { display: flex; flex-direction: column; gap: 12px; }
.sp15-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius);
  padding: 16px 20px;
}
.sp15-check-item__icon { flex-shrink: 0; margin-top: 2px; }
.sp15-check-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.sp15-check-item__desc { font-size: 13px; color: var(--sp15-muted); line-height: 1.55; }

/* ─── Highlight boxes ─── */
.sp15-highlight-row { display: flex; flex-wrap: wrap; gap: 16px; }
.sp15-highlight-box {
  flex: 1 1 calc(33.33% - 12px);
  min-width: 200px;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius-lg);
  padding: 24px 20px;
}
.sp15-highlight-box__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--sp15-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.sp15-highlight-box__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sp15-highlight-box__desc { font-size: 13px; color: var(--sp15-muted); line-height: 1.6; }

/* ─── FAQ ─── */
.sp15-faq { display: flex; flex-direction: column; gap: 0; }
.sp15-faq-item {
  border-bottom: 1px solid var(--sp15-border);
}
.sp15-faq-item:first-child { border-top: 1px solid var(--sp15-border); }
.sp15-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sp15-text);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
}
.sp15-faq-btn:hover { color: var(--sp15-orange); }
.sp15-faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sp15-surface2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sp15-muted);
  font-size: 16px;
  transition: transform .25s, background .2s;
}
.sp15-faq-item.is-open .sp15-faq-icon { transform: rotate(45deg); background: var(--sp15-orange); color: #fff; }
.sp15-faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--sp15-muted);
  line-height: 1.75;
}
.sp15-faq-item.is-open .sp15-faq-answer { display: block; }

/* ─── CTA Banner ─── */
.sp15-cta-banner {
  background: linear-gradient(135deg, var(--sp15-surface2) 0%, var(--sp15-surface3) 100%);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: var(--sp15-radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.sp15-cta-banner h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.sp15-cta-banner p { font-size: 15px; color: var(--sp15-muted); margin-bottom: 28px; line-height: 1.6; }
.sp15-cta-banner__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── Footer ─── */
.sp15-footer {
  background: var(--sp15-surface);
  border-top: 1px solid var(--sp15-border);
}
.sp15-footer__reviews {
  padding: 36px 0;
  border-bottom: 1px solid var(--sp15-border);
}
.sp15-footer__reviews-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sp15-muted);
  text-align: center;
  margin-bottom: 20px;
}
.sp15-footer__reviews-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.sp15-footer__reviews-row a {
  opacity: .55;
  transition: opacity .2s;
}
.sp15-footer__reviews-row a:hover { opacity: 1; }
.sp15-footer__reviews-row img { height: 28px; width: auto; }

.sp15-footer__main {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.sp15-footer__brand { flex: 0 0 220px; }
.sp15-footer__brand img { height: 36px; margin-bottom: 14px; }
.sp15-footer__tagline { font-size: 13px; color: var(--sp15-muted); line-height: 1.6; }
.sp15-footer__nav { flex: 1 1 auto; display: flex; flex-wrap: wrap; gap: 32px; }
.sp15-footer__nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sp15-muted);
  margin-bottom: 14px;
}
.sp15-footer__nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.sp15-footer__nav-col a { font-size: 13px; color: var(--sp15-muted); transition: color .18s; }
.sp15-footer__nav-col a:hover { color: var(--sp15-orange); }

.sp15-footer__bottom {
  padding: 20px 0;
  border-top: 1px solid var(--sp15-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.sp15-footer__legal {
  font-size: 12px;
  color: var(--sp15-muted);
  line-height: 1.6;
  max-width: 700px;
}
.sp15-footer__age {
  flex-shrink: 0;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sp15-muted);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .sp15-nav { display: none; }
  .sp15-head__actions { display: none; }
  .sp15-burger { display: flex; }
  .sp15-head__mobile-cta { display: flex; margin-left: auto; }

  .sp15-vol-card { flex: 1 1 calc(50% - 8px); }
  .sp15-stage-card { flex: 1 1 100%; }
  .sp15-highlight-box { flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 600px) {
  .sp15-section { padding: 48px 0; }

  /* Hero fix: image too short → set fixed height, cover crop */
  .sp15-hero__link img { height: 440px; object-fit: cover; object-position: center top; }
  .sp15-hero__overlay { padding: 24px 0; }
  .sp15-hero__overlay .sp15-wrap { max-width: 100%; }
  .sp15-hero__sub { display: none; }
  .sp15-hero__title { font-size: 22px; margin-bottom: 20px; }
  .sp15-hero__cta .sp15-btn--outline { display: none; }
  .sp15-hero__cta .sp15-btn--primary { width: 100%; justify-content: center; }

  .sp15-stat { padding: 4px 8px; }
  .sp15-stat__val { font-size: 22px; }
  .sp15-statsbar__inner { justify-content: center; }
  .sp15-vol-card { flex: 1 1 100%; }
  .sp15-highlight-box { flex: 1 1 100%; }
  .sp15-info-row__aside { flex: 1 1 100%; }
  .sp15-cta-banner { padding: 32px 20px; }
  .sp15-footer__brand { flex: 1 1 100%; }
}

/* ─── Providers Slider ─── */
.sp15-providers-slider {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}
.sp15-providers-slider__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.sp15-providers-slider__track::-webkit-scrollbar { display: none; }

.sp15-prov-card {
  flex-shrink: 0;
  width: 140px;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  border-radius: var(--sp15-radius-lg);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  scroll-snap-align: start;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
}
.sp15-prov-card:hover {
  border-color: var(--sp15-orange);
  transform: translateY(-2px);
}
.sp15-prov-card img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  transition: opacity .2s, filter .2s;
}
.sp15-prov-card:hover img {
  filter: brightness(0) invert(1) opacity(1);
}
.sp15-prov-card__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--sp15-muted);
  text-align: center;
  line-height: 1.3;
}

.sp15-providers-slider__nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
}
.sp15-providers-slider__cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sp15-providers-slider__count {
  font-size: 13px;
  color: var(--sp15-muted);
}
.sp15-providers-slider__count strong { color: var(--sp15-orange); }

/* ─── Games Slider ─── */
.sp15-games-slider {
  position: relative;
  margin-top: 40px;
}
.sp15-games-slider__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.sp15-games-slider__track::-webkit-scrollbar { display: none; }

.sp15-game-card {
  flex-shrink: 0;
  width: 168px;
  border-radius: var(--sp15-radius-lg);
  overflow: hidden;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  scroll-snap-align: start;
  transition: border-color .2s, transform .2s;
  display: block;
  text-decoration: none;
}
.sp15-game-card:hover {
  border-color: var(--sp15-orange);
  transform: translateY(-3px);
}
.sp15-game-card__img {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.sp15-game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.sp15-game-card:hover .sp15-game-card__img img { transform: scale(1.05); }
.sp15-game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,9,15,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.sp15-game-card:hover .sp15-game-card__overlay { opacity: 1; }
.sp15-game-card__play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sp15-orange);
  display: flex; align-items: center; justify-content: center;
}
.sp15-game-card__play svg { margin-left: 3px; }
.sp15-game-card__info {
  padding: 10px 12px;
}
.sp15-game-card__name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sp15-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp15-game-card__provider {
  display: block;
  font-size: 11px;
  color: var(--sp15-muted);
}

.sp15-games-slider__nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
}
.sp15-slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sp15-surface2);
  border: 1px solid var(--sp15-border);
  color: var(--sp15-text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, border-color .18s;
  font-size: 18px;
  line-height: 1;
}
.sp15-slider-btn:hover { background: var(--sp15-orange); border-color: var(--sp15-orange); }

.sp15-games-slider__cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sp15-games-slider__count {
  font-size: 13px;
  color: var(--sp15-muted);
}
.sp15-games-slider__count strong { color: var(--sp15-orange); }

/* Bonus widget stats */
.sp15-bonus-stats { list-style: none; margin: 0 0 16px; padding: 0; border: 1px solid var(--sp15-border); border-radius: var(--sp15-radius); overflow: hidden; }
.sp15-bonus-stats li { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; font-size: 12px; border-bottom: 1px solid var(--sp15-border); }
.sp15-bonus-stats li:last-child { border-bottom: none; }
.sp15-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.sp15-bonus-stats li span:first-child { color: var(--sp15-muted); font-weight: 500; }
.sp15-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.sp15-bonus-card__terms { font-size: 11px; color: var(--sp15-muted); margin-bottom: 16px; line-height: 1.5; }
