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

/* ── Variables ── */
:root {
  --hns-primary:#d4273f;
  --hns-primary-dark:#a81e30;
  --hns-bg:#0d0a0b;
  --hns-surface:#1a1015;
  --hns-surface-2:#241520;
  --hns-text:#f2f2f2;
  --hns-text-muted:#9090aa;
  --hns-border:#3a1e26;
  --hns-success:#2ec471;
  --hns-radius:8px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--hns-text);
  background: var(--hns-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Wrap ── */
.hns-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.hns-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
  text-decoration: none;
}
.hns-btn--primary {
  background: linear-gradient(135deg, var(--hns-primary), var(--hns-primary-dark));
  color: #fff;
}
.hns-btn--primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,39,63,.3);
}
.hns-btn--ghost {
  background: transparent;
  color: var(--hns-text);
  border: 1px solid var(--hns-border);
}
.hns-btn--ghost:hover { border-color: var(--hns-primary); color: var(--hns-primary); }
.hns-btn--lg { padding: 14px 32px; font-size: 16px; }
.hns-btn--full { width: 100%; }

/* ── Header ── */
.hns-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--hns-surface);
  border-bottom: 1px solid var(--hns-border);
}
.hns-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.hns-head__left { display: flex; align-items: center; gap: 20px; }

.hns-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--hns-border);
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
}
.hns-burger span { display: block; width: 22px; height: 2px; background: var(--hns-text); transition: all .3s; }

.hns-logo { display: flex; align-items: center; }
.hns-logo img { height: 38px; }

.hns-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
.hns-nav a {
  color: var(--hns-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.hns-nav a:hover, .hns-nav a.active { color: var(--hns-primary); background: rgba(128,128,128,.1); }

.hns-head__actions { display: flex; gap: 10px; align-items: center; }

/* Mobile overlay + panel */
.hns-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  opacity: 0;
  transition: opacity .3s;
  z-index: 200;
}
.hns-mobile-panel {
  position: fixed; top: 0; left: 0;
  width: min(300px, 88vw); height: 100%;
  background: var(--hns-surface);
  border-right: 1px solid var(--hns-border);
  transform: translateX(-100%);
  transition: transform .3s;
  z-index: 300;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.hns-mobile-panel.is-open { transform: translateX(0); }
.hns-mobile-overlay.is-open { display: block; opacity: 1; }
.hns-mobile-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hns-border);
}
.hns-mobile-panel__close {
  background: transparent; border: 1px solid var(--hns-border);
  color: var(--hns-text); width: 32px; height: 32px;
  border-radius: 4px; cursor: pointer; font-size: 18px; line-height: 1;
}
.hns-mobile-panel__nav { list-style: none; padding: 16px 0; flex: 1; }
.hns-mobile-panel__nav li a {
  display: block; padding: 12px 20px;
  color: var(--hns-text-muted); font-size: 15px; font-weight: 500;
  transition: all .2s;
}
.hns-mobile-panel__nav li a:hover,
.hns-mobile-panel__nav li a.active { color: var(--hns-primary); background: rgba(128,128,128,.08); }
.hns-mobile-panel__actions { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--hns-border); }

/* ── Sections ── */
.hns-section { padding: 64px 0; }
.hns-section--alt { background: var(--hns-surface); }

.hns-section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hns-section-lead {
  color: var(--hns-text-muted);
  font-size: 15px;
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hns-h3 { font-size: 18px; font-weight: 700; margin: 32px 0 14px; }

/* ── Overview Table ── */
.hns-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.hns-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hns-table th {
  background: var(--hns-surface-2);
  color: var(--hns-text-muted);
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--hns-border);
}
.hns-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--hns-border);
  color: var(--hns-text);
  vertical-align: top;
}
.hns-table tr:last-child td { border-bottom: none; }
.hns-table tr:nth-child(odd) td { background: rgba(22,37,56,.45); }
.hns-table td:first-child { color: var(--hns-text-muted); font-weight: 500; white-space: nowrap; }

/* ── Feature cards ── */
.hns-features { display: flex; flex-direction: column; gap: 16px; }
.hns-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--hns-surface-2);
  border: 1px solid var(--hns-border); border-radius: var(--hns-radius);
}
.hns-feature__icon { flex-shrink: 0; }
.hns-feature__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hns-feature__text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.55; }

/* ── Package Cards ── */
.hns-packages { display: flex; flex-direction: column; gap: 16px; }
.hns-package {
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-top: 4px solid var(--hns-border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.hns-package:hover { box-shadow: 0 8px 32px rgba(0,0,0,.28); }
.hns-package--featured {
  border-color: var(--hns-primary);
  border-top-color: var(--hns-primary);
  box-shadow: 0 4px 28px rgba(212,39,63,.14);
}
.hns-package--featured:hover { box-shadow: 0 10px 44px rgba(212,39,63,.24); }

/* Character sidebar + content column */
.hns-package__layout { display: flex; align-items: stretch; }
.hns-package__char {
  width: 154px; flex-shrink: 0;
  background: linear-gradient(180deg, rgba(212,39,63,.07) 0%, rgba(0,0,0,.08) 100%);
  border-right: 1px solid var(--hns-border);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 14px;
}
.hns-package__char-video {
  width: 126px; height: auto; max-height: 280px;
  object-fit: cover; border-radius: 10px; display: block;
}
.hns-package__right-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.hns-package__head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hns-border);
  background: rgba(255,255,255,.018);
}
.hns-package__meta { flex: 1; min-width: 0; }
.hns-package__name { font-size: 15px; font-weight: 700; margin-bottom: 2px; line-height: 1.2; }
.hns-package__video { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; display: block; }
.hns-package__subtitle { font-size: 13px; color: var(--hns-text-muted); }
.hns-package__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.hns-package__badge {
  display: inline-flex; align-items: center;
  background: var(--hns-primary); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: .04em; white-space: nowrap;
}
.hns-package__total {
  font-size: 14px; font-weight: 700;
  color: var(--hns-primary);
  white-space: nowrap; text-align: right;
}

/* Stats summary bar */
.hns-pkg-stats {
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid var(--hns-border);
  background: rgba(0,0,0,.12);
}
.hns-pkg-stat {
  flex: 1; min-width: 100px;
  padding: 11px 16px; text-align: center;
  border-right: 1px solid var(--hns-border);
}
.hns-pkg-stat:last-child { border-right: none; }
.hns-pkg-stat__val { font-size: 17px; font-weight: 700; color: var(--hns-primary); line-height: 1.1; }
.hns-pkg-stat__key { font-size: 10px; color: var(--hns-text-muted); text-transform: uppercase; letter-spacing: .07em; margin-top: 3px; }

/* Stage redesign */
.hns-package__stages { padding: 4px 18px 10px; }
.hns-stage {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--hns-border);
}
.hns-stage:last-child { border-bottom: none; padding-bottom: 0; }
.hns-stage__num {
  flex-shrink: 0; margin-top: 3px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(212,39,63,.12);
  border: 1.5px solid rgba(212,39,63,.35);
  color: var(--hns-primary);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hns-stage__img {
  width: 56px; height: 56px; border-radius: 6px; object-fit: cover;
  flex-shrink: 0; border: 1px solid var(--hns-border);
}
.hns-stage__body { flex: 1; min-width: 0; }
.hns-stage__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--hns-text-muted);
  margin-bottom: 4px;
}
.hns-stage__offer { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--hns-text); line-height: 1.2; }
.hns-stage__game { font-size: 13px; color: var(--hns-text-muted); margin-bottom: 8px; }
.hns-stage__terms { display: flex; flex-wrap: wrap; gap: 6px; }
.hns-stage__term {
  font-size: 12px; color: var(--hns-text-muted);
  background: rgba(30,49,73,.55);
  border: 1px solid var(--hns-border);
  padding: 3px 9px; border-radius: 4px;
}
.hns-stage__speed {
  background: rgba(212,39,63,.09);
  border: 1px solid rgba(212,39,63,.28);
  border-left: 3px solid var(--hns-primary);
  border-radius: 6px; padding: 10px 14px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--hns-text);
  width: 100%;
}
.hns-stage__speed strong { color: var(--hns-primary); }

.hns-package__footer {
  padding: 10px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hns-border);
  background: rgba(255,255,255,.01);
  gap: 12px; flex-wrap: wrap;
}
.hns-package__note { font-size: 13px; color: var(--hns-text-muted); }

/* ── Steps ── */
.hns-steps { display: flex; flex-direction: column; gap: 0; }
.hns-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hns-border);
}
.hns-step:last-child { border-bottom: none; }
.hns-step__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212,39,63,.15);
  border: 2px solid var(--hns-primary);
  color: var(--hns-primary);
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.hns-step__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hns-step__text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.6; }

/* ── Cards grid ── */
.hns-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.hns-grid--4 > * { flex: 1 1 calc(25% - 12px); min-width: 160px; }
.hns-grid--3 > * { flex: 1 1 calc(33.33% - 11px); min-width: 200px; }
.hns-grid--2 > * { flex: 1 1 calc(50% - 8px); min-width: 260px; }
.hns-card {
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  padding: 20px;
}
.hns-card__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.hns-card__text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.6; }
.hns-card--center { text-align: center; }

/* ── List ── */
.hns-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hns-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--hns-text-muted);
  padding-bottom: 8px; border-bottom: 1px solid var(--hns-border);
}
.hns-list li:last-child { border-bottom: none; }
.hns-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hns-primary);
  margin-top: 8px;
}
.hns-list li strong { color: var(--hns-text); }

/* ── Wagering info ── */
.hns-wager-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.hns-wager-card {
  flex: 1 1 180px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  padding: 18px 20px;
  text-align: center;
}
.hns-wager-card__val { font-size: 28px; font-weight: 700; color: var(--hns-primary); line-height: 1.1; margin-bottom: 6px; }
.hns-wager-card__label { font-size: 13px; color: var(--hns-text-muted); }

/* ── Reviews ── */
.hns-reviews-slider, [data-reviews-slider] { position: relative; overflow: hidden; }
.hns-reviews-track { display: flex; gap: 20px; transition: transform .4s ease; }
.hns-review-card {
  flex: 0 0 300px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  padding: 22px;
}
.hns-review-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.hns-review-card__header h4 { font-size: 15px; font-weight: 700; }
.hns-review-card__stars { color: var(--hns-primary); font-size: 13px; letter-spacing: 2px; }
.hns-review-card__meta { font-size: 12px; color: var(--hns-text-muted); margin-bottom: 12px; }
.hns-review-card p { font-size: 14px; color: var(--hns-text-muted); line-height: 1.6; font-style: italic; }
@media (max-width: 767px) { .hns-review-card { flex: 0 0 calc(100vw - 48px); } }
@media (min-width: 768px) and (max-width: 1023px) { .hns-review-card { flex: 0 0 calc(50% - 10px); } }

/* ── FAQ ── */
.hns-faq { display: flex; flex-direction: column; gap: 2px; }
.hns-faq__item { border: 1px solid var(--hns-border); border-radius: var(--hns-radius); overflow: hidden; }
.hns-faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; gap: 16px;
  background: var(--hns-surface-2);
  border: none; cursor: pointer;
  color: var(--hns-text); font-size: 15px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: background .2s;
}
.hns-faq__q:hover { background: rgba(30,49,73,.8); }
.hns-faq__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid var(--hns-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--hns-primary);
  transition: transform .25s;
}
.hns-faq__item.is-open .hns-faq__icon { transform: rotate(45deg); }
.hns-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--hns-surface);
}
.hns-faq__item.is-open .hns-faq__a { max-height: 400px; }
.hns-faq__a-inner { padding: 0 20px; font-size: 14px; color: var(--hns-text-muted); line-height: 1.7; }
.hns-faq__item.is-open .hns-faq__a-inner { padding: 16px 20px; }

/* ── Footer testimonials ── */
.hns-testimonials {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--hns-border);
  border-bottom: 1px solid var(--hns-border);
  margin-bottom: 40px;
}
.hns-testimonials a { display: flex; align-items: center; justify-content: center; opacity: .55; transition: opacity .2s; height: 28px; }
.hns-testimonials a:hover { opacity: 1; }
.hns-testimonials img { height: 24px; width: auto; }

/* ── Footer ── */
.hns-footer { background: var(--hns-surface); padding: 48px 0 24px; }
.hns-footer__top { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.hns-footer__col { flex: 1 1 180px; }
.hns-footer__col--wide { flex: 1 1 260px; }
.hns-footer__logo { height: 36px; margin-bottom: 14px; }
.hns-footer__desc { font-size: 13px; color: var(--hns-text-muted); line-height: 1.65; margin-bottom: 0; }
.hns-footer__heading { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--hns-text-muted); margin-bottom: 14px; }
.hns-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hns-footer__links a { font-size: 14px; color: var(--hns-text-muted); transition: color .2s; }
.hns-footer__links a:hover { color: var(--hns-primary); }
.hns-footer__legal { font-size: 13px; color: var(--hns-text-muted); line-height: 1.65; }
.hns-footer__bottom { border-top: 1px solid var(--hns-border); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: flex-start; }
.hns-footer__copy { font-size: 13px; color: var(--hns-text-muted); }
.hns-footer__disclaimer { font-size: 12px; color: rgba(136,144,170,.7); line-height: 1.6; width: 100%; margin-top: 8px; }
.hns-footer__disclaimer a { color: var(--hns-primary); }

/* ── Page hero (inner pages) ── */
.hns-page-hero {
  position: relative; overflow: hidden; min-height: 340px;
  display: flex; align-items: center;
  background: var(--hns-surface);
  border-bottom: 1px solid var(--hns-border);
}
.hns-page-hero > .hns-wrap { position: relative; z-index: 1; padding-top: 48px; padding-bottom: 48px; width: 100%; }
.hns-page-hero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hns-primary); margin-bottom: 10px; }
.hns-page-hero__title,
.hns-page-hero__h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 12px; max-width: 640px; }
.hns-page-hero__sub { font-size: 16px; color: var(--hns-text-muted); max-width: 560px; line-height: 1.65; margin-bottom: 24px; }

/* ── Legal styles ── */
.hns-legal-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.hns-legal-tab { padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; background: var(--hns-surface-2); border: 1px solid var(--hns-border); color: var(--hns-text-muted); transition: all .2s; }
.hns-legal-tab.is-active,.hns-legal-tab:hover { background: rgba(128,128,128,.1); border-color: var(--hns-primary); color: var(--hns-primary); }
.hns-legal-doc { display: none; }
.hns-legal-doc.is-active { display: block; }
.hns-legal-doc h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--hns-text); padding-bottom: 8px; border-bottom: 1px solid var(--hns-border); }
.hns-legal-doc h2:first-child { margin-top: 0; }
.hns-legal-doc h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.hns-legal-doc p { font-size: 14px; color: var(--hns-text-muted); line-height: 1.75; margin-bottom: 12px; }
.hns-legal-doc ul { padding-left: 20px; margin-bottom: 12px; }
.hns-legal-doc li { font-size: 14px; color: var(--hns-text-muted); line-height: 1.75; margin-bottom: 6px; }
.hns-legal-doc strong { color: var(--hns-text); }

/* ── Games marquee slider ── */
.hns-games-marquee { overflow: hidden; width: 100%; margin-top: 28px; position: relative; }
.hns-games-marquee::before,
.hns-games-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.hns-games-marquee::before { left: 0; background: linear-gradient(to right, var(--hns-bg), transparent); }
.hns-games-marquee::after  { right: 0; background: linear-gradient(to left,  var(--hns-bg), transparent); }
.hns-games-marquee--alt::before { background: linear-gradient(to right, var(--hns-surface), transparent); }
.hns-games-marquee--alt::after  { background: linear-gradient(to left,  var(--hns-surface), transparent); }

.hns-games-track {
  display: flex; gap: 12px;
  animation: hns-marquee 44s linear infinite;
  width: max-content;
}
.hns-games-track:hover { animation-play-state: paused; }
.hns-games-set { display: flex; gap: 12px; flex-shrink: 0; }

.hns-game-card {
  width: 210px; flex-shrink: 0;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: 10px; overflow: hidden;
  transition: border-color .2s, transform .2s;
  cursor: default;
}
.hns-game-card:hover { border-color: rgba(212,39,63,.4); transform: translateY(-3px); }
.hns-game-card__img { width: 210px; height: 130px; object-fit: cover; display: block; }
.hns-game-card__name {
  padding: 8px 12px;
  font-size: 12px; font-weight: 600; color: var(--hns-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: var(--hns-surface-2);
}
.hns-game-card__provider { padding: 0 12px 8px; font-size: 11px; color: var(--hns-text-muted); }

/* ── Providers marquee slider ── */
.hns-providers-marquee { overflow: hidden; width: 100%; margin-top: 28px; position: relative; }
.hns-providers-marquee::before,
.hns-providers-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.hns-providers-marquee::before { left: 0; background: linear-gradient(to right, var(--hns-bg), transparent); }
.hns-providers-marquee::after  { right: 0; background: linear-gradient(to left, var(--hns-bg), transparent); }
.hns-providers-marquee--alt::before { background: linear-gradient(to right, var(--hns-surface), transparent); }
.hns-providers-marquee--alt::after  { background: linear-gradient(to left, var(--hns-surface), transparent); }

.hns-providers-track {
  display: flex; gap: 12px;
  animation: hns-marquee 32s linear infinite;
  width: max-content;
}
.hns-providers-track:hover { animation-play-state: paused; }

.hns-providers-set { display: flex; gap: 12px; flex-shrink: 0; }

.hns-provider-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px;
  width: 118px; height: 76px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.hns-provider-chip:hover {
  border-color: rgba(212,39,63,.4);
  background: rgba(212,39,63,.04);
}
.hns-provider-chip img {
  height: 30px; width: auto; max-width: 86px;
  object-fit: contain;
  filter: brightness(0) invert(.65);
  transition: filter .2s;
}
.hns-provider-chip:hover img { filter: brightness(0) invert(1); }
.hns-provider-chip__name { font-size: 10px; color: var(--hns-text-muted); text-align: center; line-height: 1.2; }

@keyframes hns-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Legacy grid (casino page) */
.hns-providers { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hns-provider-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 12px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  min-width: 100px; flex: 1 1 100px;
}
.hns-provider-card__logo {
  width: 48px; height: 48px; object-fit: contain;
  background: rgba(255,255,255,.06); padding: 6px; border-radius: 8px;
}
.hns-provider-card__name { font-size: 12px; color: var(--hns-text-muted); text-align: center; }

/* ── CTA section ── */
.hns-cta-section { text-align: center; padding: 56px 20px; }
.hns-cta-section__title { font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; margin-bottom: 12px; }
.hns-cta-section__sub { font-size: 15px; color: var(--hns-text-muted); margin-bottom: 28px; }
.hns-cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Misc ── */
.hns-divider { border: none; border-top: 1px solid var(--hns-border); margin: 32px 0; }
.hns-text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.75; margin-bottom: 16px; }
.hns-text strong { color: var(--hns-text); }
.hns-text a { color: var(--hns-primary); }
.hns-highlight { color: var(--hns-primary); font-weight: 700; }
.hns-breadcrumb { font-size: 13px; color: var(--hns-text-muted); margin-bottom: 8px; }
.hns-breadcrumb a { color: var(--hns-text-muted); }
.hns-breadcrumb a:hover { color: var(--hns-primary); }
.hns-mobile-section { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.hns-mobile-section__text { flex: 1 1 300px; }
.hns-mobile-section__img { flex: 1 1 260px; text-align: center; }

/* ── Speedbonus callout ── */
.hns-speed-box {
  background: rgba(212,39,63,.08);
  border: 1.5px solid rgba(212,39,63,.35);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 24px;
}
.hns-speed-box__icon { flex-shrink: 0; }
.hns-speed-box__title { font-size: 17px; font-weight: 700; color: var(--hns-primary); margin-bottom: 8px; }
.hns-speed-box__text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.7; }
.hns-speed-box__text strong { color: var(--hns-text); }

/* ── Package contrast row ── */
.hns-pkg-compare { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hns-pkg-compare-card {
  flex: 1 1 200px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border); border-radius: 10px;
  padding: 16px 18px;
}
.hns-pkg-compare-card__name { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.hns-pkg-compare-card__std { font-size: 13px; color: var(--hns-text-muted); margin-bottom: 4px; }
.hns-pkg-compare-card__speed { font-size: 12px; color: var(--hns-primary); font-weight: 600; }

/* ── Wagering table ── */
.hns-wager-table { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hns-wager-tile {
  flex: 1 1 160px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border); border-radius: 10px;
  padding: 20px 16px; text-align: center;
}
.hns-wager-tile__val { font-size: 30px; font-weight: 700; color: var(--hns-primary); line-height: 1; margin-bottom: 8px; }
.hns-wager-tile__label { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.hns-wager-tile__note { font-size: 12px; color: var(--hns-text-muted); line-height: 1.4; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hns-nav { display: none; }
  .hns-burger { display: flex; }
  .hns-head__actions .hns-btn--ghost { display: none; }
}
@media (max-width: 768px) {
  .hns-section { padding: 44px 0; }
  .hns-package__char { width: 96px; }
  .hns-package__char-video { width: 78px; }
  .hns-package__head { flex-wrap: wrap; }
  .hns-package__right { flex-direction: row; align-items: center; gap: 10px; margin-top: 4px; flex: 0 0 100%; }
  .hns-pkg-stat { min-width: 70px; }
  .hns-pkg-stat__val { font-size: 14px; }
  .hns-grid--3 > * { flex: 1 1 100%; }
  .hns-stage { flex-wrap: wrap; }
  .hns-stage__img { width: 64px; height: 64px; }
  .hns-footer__top { flex-direction: column; gap: 24px; }
}
@media (max-width: 480px) {
  .hns-package__char { display: none; }
}
@media (max-width: 480px) {
  .hns-wager-grid { flex-direction: column; }
  .hns-wager-card { flex: none; }
}

/* ── Viking Red Hero ── */
.hns-hero {
  padding: 72px 0 56px;
  background: linear-gradient(160deg, var(--hns-surface) 0%, var(--hns-bg) 70%);
  border-bottom: 1px solid var(--hns-border);
  position: relative;
  overflow: hidden;
}
.hns-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,39,63,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hns-hero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hns-primary); margin-bottom: 12px; }
.hns-hero__h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 14px; max-width: 720px; }
.hns-hero__h1 em { font-style: normal; color: var(--hns-primary); }
.hns-hero__sub { font-size: 16px; line-height: 1.6; color: var(--hns-text-muted); max-width: 580px; margin-bottom: 32px; }

/* Package teaser strip in hero */
.hns-pkg-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hns-pkg-chip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hns-border);
  border-radius: 10px;
  padding: 10px 14px;
  flex: 1 1 180px;
  transition: border-color .2s, background .2s;
}
.hns-pkg-chip:hover { border-color: var(--hns-primary); background: rgba(212,39,63,.06); }
.hns-pkg-chip__video { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.hns-pkg-chip__body { flex: 1; min-width: 0; }
.hns-pkg-chip__name { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.hns-pkg-chip__val { font-size: 12px; color: var(--hns-text-muted); }
.hns-pkg-chip__btn {
  flex-shrink: 0;
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 5px;
  background: var(--hns-primary); color: #fff;
  text-decoration: none; white-space: nowrap;
  transition: filter .2s;
}
.hns-pkg-chip__btn:hover { filter: brightness(1.12); }

@media (max-width: 600px) {
  .hns-hero { padding: 48px 0 36px; }
  .hns-pkg-chip { flex: 1 1 calc(50% - 5px); }
  .hns-pkg-chip__btn { display: none; }
}
@media (max-width: 380px) {
  .hns-pkg-chip { flex: 1 1 100%; }
}

/* ── Hero background & character images ── */
.hns-hero__bg-img,
.hns-page-hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hns-hero__bg-img img,
.hns-page-hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
}

.hns-hero__gradient,
.hns-page-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hns-hero__char,
.hns-page-hero__char {
  position: absolute;
  right: max(0px, calc(50% - 720px));
  bottom: 0;
  height: 115%;
  z-index: 2;
  pointer-events: none;
}
.hns-hero__char img,
.hns-page-hero__char img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

.hns-page-hero__phone {
  position: absolute;
  right: max(20px, calc(50% - 700px));
  bottom: 0;
  height: 92%;
  z-index: 2;
  pointer-events: none;
}
.hns-page-hero__phone img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

.hns-hero > .hns-wrap { position: relative; z-index: 3; }
.hns-page-hero > .hns-wrap { z-index: 3; }

@media (max-width: 900px) {
  .hns-hero__char,
  .hns-page-hero__char { height: 85%; opacity: 0.55; }
  .hns-page-hero__phone { height: 80%; opacity: 0.55; }
}
@media (max-width: 600px) {
  .hns-hero__char,
  .hns-page-hero__char,
  .hns-page-hero__phone { display: none; }
}
