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

/* ── Variables ── */
:root {
  --hns-primary:      #e6b44a;
  --hns-primary-dark: #c8960e;
  --hns-bg:           #090d1a;
  --hns-surface:      #111527;
  --hns-surface-2:    #181d33;
  --hns-text:         #f2f2f2;
  --hns-text-muted:   #8890aa;
  --hns-border:       #232847;
  --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: #0a0d16;
}
.hns-btn--primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,180,74,.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(230,180,74,.08); }

.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(230,180,74,.06); }
.hns-mobile-panel__actions { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--hns-border); }

/* ── Hero Slider ── */
.hns-hero-slider { position: relative; overflow: hidden; }
.hns-hero-track { display: flex; transition: transform .45s ease; }
.hns-hero-slide {
  flex: 0 0 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hns-hero-slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hns-hero-slide__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,13,26,.85) 35%, rgba(9,13,26,.3) 70%, rgba(9,13,26,.15) 100%);
}
@media (max-width: 768px) {
  .hns-hero-slide__bg::after {
    background: linear-gradient(180deg, rgba(9,13,26,.55) 0%, rgba(9,13,26,.75) 55%, rgba(9,13,26,.95) 100%);
  }
}
.hns-hero-slide__char {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  opacity: .85;
  z-index: 1;
  pointer-events: none;
}
.hns-hero-slide__content {
  position: relative; z-index: 2;
  padding: 60px 20px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.hns-hero-slide__tag {
  display: inline-block;
  background: var(--hns-primary);
  color: #0a0d16;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.hns-hero-slide__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
  max-width: 560px;
}
.hns-hero-slide__title span { color: var(--hns-primary); }
.hns-hero-slide__sub {
  color: rgba(242,242,242,.8);
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hns-hero-slide__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hns-hero-slide__badge {
  background: rgba(230,180,74,.15);
  border: 1px solid rgba(230,180,74,.35);
  color: var(--hns-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}
.hns-hero-controls {
  display: flex; align-items: center; gap: 12px;
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 5;
}
.hns-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(242,242,242,.35);
  border: none; cursor: pointer; padding: 0;
  transition: all .2s;
}
.hns-hero-dot.is-active { background: var(--hns-primary); width: 24px; border-radius: 4px; }
.hns-hero-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; font-size: 16px; line-height: 1;
  z-index: 5; backdrop-filter: blur(4px);
  transition: all .2s;
}
.hns-hero-btn:hover { background: rgba(230,180,74,.25); border-color: var(--hns-primary); }
.hns-hero-btn--prev { left: 16px; }
.hns-hero-btn--next { right: 16px; }

/* ── 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(24,29,51,.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: 24px; }
.hns-package {
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: 12px;
  overflow: hidden;
}
.hns-package--featured { border-color: var(--hns-primary); }
.hns-package__head {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hns-border);
  background: rgba(230,180,74,.05);
}
.hns-package__icon { flex-shrink: 0; width: 80px; height: 80px; }
.hns-package__video { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; display: block; }
.hns-package__name { font-size: 18px; font-weight: 700; }
.hns-package__total {
  margin-left: auto;
  font-size: 14px; font-weight: 700;
  color: var(--hns-primary);
  text-align: right;
}
.hns-package__stages { padding: 20px 24px; }
.hns-stage {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--hns-border);
}
.hns-stage:last-child { border-bottom: none; padding-bottom: 0; }
.hns-stage__img {
  width: 72px; height: 72px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.hns-stage__body { flex: 1; min-width: 200px; }
.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: 16px; font-weight: 700; margin-bottom: 4px; color: var(--hns-text); }
.hns-stage__game { font-size: 13px; color: var(--hns-text-muted); margin-bottom: 6px; }
.hns-stage__terms {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.hns-stage__term {
  font-size: 12px; color: var(--hns-text-muted);
  background: rgba(35,40,71,.6);
  border: 1px solid var(--hns-border);
  padding: 2px 8px; border-radius: 4px;
}
.hns-stage__speed {
  background: rgba(230,180,74,.1);
  border: 1px solid rgba(230,180,74,.3);
  border-radius: 6px; padding: 10px 14px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--hns-primary);
  width: 100%;
}
.hns-stage__speed strong { color: var(--hns-primary); }
.hns-package__footer {
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hns-border);
  gap: 16px; flex-wrap: wrap;
}
.hns-package__note { font-size: 13px; color: var(--hns-text-muted); }

/* ── Steps ── */
.hns-steps { display: flex; flex-direction: column; gap: 0; counter-reset: steps; }
.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(230,180,74,.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--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; }

/* ── 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 slider ── */
.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; }
.hns-slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 20px;
}
.hns-slider-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border);
  color: var(--hns-text); cursor: pointer; font-size: 16px;
  transition: all .2s;
}
.hns-slider-btn:hover { border-color: var(--hns-primary); color: var(--hns-primary); }
.hns-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hns-border); border: none; cursor: pointer; padding: 0;
  transition: all .2s;
}
.hns-slider-dot.is-active { background: var(--hns-primary); }
@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(35,40,71,.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__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hns-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,13,26,.88) 30%, rgba(9,13,26,.55) 65%, rgba(9,13,26,.2) 100%);
}
.hns-page-hero__char {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 360px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  user-select: none;
}
.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 {
  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-nav,
.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(230,180,74,.12); 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); }

/* ── Mobile section image ── */
.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; }
.hns-mobile-section__img img { max-height: 360px; margin: 0 auto; border-radius: 16px; }

/* ── Breadcrumb ── */
.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-breadcrumb span { margin: 0 6px; }

/* ── 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; }

/* ── Divider ── */
.hns-divider { border: none; border-top: 1px solid var(--hns-border); margin: 32px 0; }

/* ── Inline text ── */
.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; }

/* ── 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-hero-slide { min-height: 420px; }
  .hns-hero-slide__char {
    height: auto;
    right: 0;
    bottom: 0;
    opacity: .65;
  }
  .hns-hero-btn { display: none; }
  .hns-package__head { flex-wrap: wrap; }
  .hns-package__total { margin-left: 0; }
  .hns-grid--3 > * { flex: 1 1 100%; }
  .hns-stage { flex-direction: column; }
  .hns-stage__img { width: 56px; height: 56px; }
  .hns-footer__top { flex-direction: column; gap: 24px; }
  .hns-page-hero__char {
    height: auto;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .hns-hero-slide { min-height: 460px; }
  .hns-hero-slide__content { padding: 40px 16px; }
  .hns-hero-slide__title { font-size: 24px; }
  .hns-page-hero__char {
  }
  .hns-wager-grid { flex-direction: column; }
  .hns-wager-card { flex: none; }
}

/* ── Text Hero ── */
.hns-hero { position: relative; overflow: hidden; padding: 80px 0 64px; background: linear-gradient(160deg, var(--hns-surface) 0%, var(--hns-bg) 65%); border-bottom: 1px solid var(--hns-border); }
.hns-hero > .hns-wrap { position: relative; z-index: 2; }
.hns-hero__h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.hns-hero__h1 em { font-style: normal; color: var(--hns-primary); }
.hns-hero__sub { font-size: 17px; line-height: 1.55; color: var(--hns-text-muted); max-width: 600px; margin-bottom: 28px; }
/* Layout 3 – Stages Timeline */
.hns-hero-timeline { display: flex; align-items: stretch; margin-bottom: 32px; overflow: hidden; border-radius: var(--hns-radius); border: 1px solid var(--hns-border); }
.hns-tl-step { flex: 1; padding: 16px 12px; text-align: center; background: rgba(255,255,255,.04); border-right: 1px solid var(--hns-border); }
.hns-tl-step:last-child { border-right: none; }
.hns-tl-step__num { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--hns-text-muted); display: block; }
.hns-tl-step__label { font-size: 13px; font-weight: 700; color: var(--hns-primary); margin: 4px 0; display: block; }
.hns-tl-step__val { font-size: 12px; color: var(--hns-text); display: block; }
/* Nav hover override */
.hns-nav a:hover, .hns-nav a.active { color: var(--hns-primary); background: rgba(128,128,128,.1); }
.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-legal-tab.is-active, .hns-legal-tab:hover { background: rgba(128,128,128,.1); border-color: var(--hns-primary); color: var(--hns-primary); }
@media (max-width: 600px) { .hns-hero { padding: 48px 0 40px; } .hns-hero-timeline { flex-direction: column; } .hns-tl-step { border-right: none; border-bottom: 1px solid var(--hns-border); } .hns-tl-step:last-child { border-bottom: none; } }

/* ── Section title / text aliases ── */
.hns-section__title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hns-section__text {
  font-size: 15px;
  color: var(--hns-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── Outline button ── */
.hns-btn--outline {
  background: transparent;
  color: var(--hns-primary);
  border: 1px solid var(--hns-primary);
}
.hns-btn--outline:hover { background: rgba(230,180,74,.1); }

/* ── Hero sub-page variant & eyebrow ── */
.hns-hero--sub { padding: 56px 0 44px; }
.hns-hero__eyebrow {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--hns-primary);
  margin-bottom: 12px;
}

/* ── Package cards (homepage card layout) ── */
.hns-package-card {
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hns-package-card--featured { border-color: var(--hns-primary); }
.hns-package-card__badge {
  background: var(--hns-primary);
  color: #0a0d16;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; text-align: center;
}
.hns-package-card__head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--hns-border);
  background: rgba(230,180,74,.04);
}
.hns-package-card__name { font-size: 18px; font-weight: 700; }
.hns-package-card__total {
  margin-left: auto;
  font-size: 13px; font-weight: 700;
  color: var(--hns-primary); text-align: right;
  white-space: nowrap;
}
.hns-package-card > .hns-stage {
  padding: 14px 20px; border-top: none;
  border-bottom: 1px solid var(--hns-border);
  flex-direction: column; gap: 4px;
  display: flex;
}
.hns-package-card > .hns-stage:last-of-type { border-bottom: none; }
.hns-package-card > .hns-btn { margin: 12px 20px 20px; width: calc(100% - 40px); display: block; }
.hns-stage__num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--hns-text-muted);
}
.hns-stage__val { font-size: 15px; font-weight: 700; }
.hns-stage__detail { font-size: 13px; color: var(--hns-text-muted); }

/* ── Card icon ── */
.hns-card__icon { margin-bottom: 14px; }

/* ── Reviews static grid ── */
.hns-reviews { display: flex; flex-wrap: wrap; gap: 16px; }
.hns-reviews .hns-review-card { flex: 1 1 260px; flex-direction: column; }
.hns-review-card__stars { color: var(--hns-primary); font-size: 16px; margin-bottom: 10px; }
.hns-review-card__text {
  font-size: 14px; color: var(--hns-text-muted);
  line-height: 1.65; margin-bottom: 14px; font-style: italic;
}
.hns-review-card__author strong { display: block; font-size: 14px; font-weight: 700; }
.hns-review-card__author span { font-size: 12px; color: var(--hns-text-muted); }

/* ── CTA section variants ── */
.hns-cta-section {
  background: linear-gradient(135deg, rgba(230,180,74,.06) 0%, transparent 100%);
  border-top: 1px solid var(--hns-border);
}
.hns-cta-wrap { text-align: center; }
.hns-cta__title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 10px; }
.hns-cta__sub { font-size: 15px; color: var(--hns-text-muted); margin-bottom: 24px; }
.hns-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Bonuses page: detailed stage layout ── */
.hns-package-detail {
  display: flex; flex-direction: column;
  margin-bottom: 24px;
  border: 1px solid var(--hns-border);
  border-radius: 10px; overflow: hidden;
}
.hns-stage--detail { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-bottom: 1px solid var(--hns-border); }
.hns-stage--detail:last-child { border-bottom: none; }
.hns-stage--detail > .hns-stage__img { flex-shrink: 0; }
.hns-stage--detail > div { flex: 1; min-width: 0; }
.hns-stage__header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.hns-stage__header .hns-stage__num { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--hns-text-muted); }
.hns-stage__header .hns-stage__val { font-size: 16px; font-weight: 700; }
.hns-stage__list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.hns-stage__list li { font-size: 13px; color: var(--hns-text-muted); padding-left: 14px; position: relative; line-height: 1.55; }
.hns-stage__list li::before { content: '—'; position: absolute; left: 0; color: var(--hns-primary); }
.hns-package-total {
  padding: 14px 20px;
  background: rgba(230,180,74,.07);
  border-top: 1px solid var(--hns-border);
  font-size: 15px;
}
.hns-package-total strong { color: var(--hns-primary); }

/* ── Steps body variant ── */
.hns-step__body { flex: 1; }
.hns-step__body strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hns-step__body p { font-size: 14px; color: var(--hns-text-muted); line-height: 1.6; margin: 0; }

/* ── FAQ: direct <p> without hns-faq__a-inner wrapper ── */
.hns-faq__item.is-open .hns-faq__a > p {
  padding: 16px 20px;
  font-size: 14px; color: var(--hns-text-muted); line-height: 1.7;
  display: block;
}

/* ── App page: phone mockup split hero ── */
.hns-app-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background: linear-gradient(160deg, var(--hns-surface) 0%, var(--hns-bg) 65%);
  border-bottom: 1px solid var(--hns-border);
}
.hns-app-hero > .hns-wrap { position: relative; z-index: 2; }
.hns-app-hero__inner {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.hns-app-hero__text { flex: 1 1 300px; }
.hns-app-hero__visual { flex: 0 0 380px; display: flex; justify-content: center; align-items: flex-end; }
.hns-app-hero__visual svg { max-width: 200px; width: 100%; height: auto; }
.hns-app-hero__visual img { max-width: 380px; width: 100%; height: auto; object-fit: contain; object-position: bottom; display: block; }

/* ── OS badges ── */
.hns-os-badges { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 28px; }
.hns-os-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: 8px; padding: 8px 16px;
  font-size: 13px; font-weight: 600;
}
.hns-os-badge svg { flex-shrink: 0; }

/* ── Spec grid ── */
.hns-spec-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hns-spec-card {
  flex: 1 1 180px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius); padding: 16px 18px;
}
.hns-spec-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--hns-text-muted); margin-bottom: 6px; }
.hns-spec-card__val { font-size: 15px; font-weight: 700; }

@media (max-width: 768px) {
  .hns-app-hero__visual { order: -1; flex: 0 0 100%; justify-content: center; }
  .hns-app-hero__visual svg { max-width: 160px; }
  .hns-app-hero__visual img { max-width: 280px; }
  .hns-os-badge { flex: 1 1 140px; justify-content: center; }
}

/* ── Providers marquee slider ── */
.hns-providers-marquee {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.hns-providers-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: hnsProviderScroll 40s linear infinite;
}
.hns-providers-track:hover { animation-play-state: paused; }
@keyframes hnsProviderScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hns-provider-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 68px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--hns-border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: background .25s, border-color .25s;
}
.hns-provider-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(40%) brightness(0.85);
  transition: filter .3s;
}
.hns-provider-logo:hover {
  background: rgba(230,180,74,.1);
  border-color: var(--hns-primary);
}
.hns-provider-logo:hover img { filter: none; }

/* ── Game category rows ── */
.hns-games-cat { margin-bottom: 40px; }
.hns-games-cat:last-of-type { margin-bottom: 0; }

.hns-games-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--hns-primary);
}
.hns-games-cat-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 700; letter-spacing: .01em;
}
.hns-games-cat-title svg { flex-shrink: 0; }
.hns-games-cat-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: rgba(230,180,74,.12); color: var(--hns-primary);
  border: 1px solid rgba(230,180,74,.25); border-radius: 20px; padding: 2px 8px;
}
.hns-games-cat-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--hns-primary); font-weight: 600;
  opacity: .85; transition: opacity .2s, gap .2s;
}
.hns-games-cat-link:hover { opacity: 1; gap: 8px; }

.hns-games-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  padding: 4px 4px 14px;
  scrollbar-width: thin; scrollbar-color: rgba(230,180,74,.35) transparent;
  -webkit-overflow-scrolling: touch;
}
.hns-games-scroll::-webkit-scrollbar { height: 3px; }
.hns-games-scroll::-webkit-scrollbar-thumb { background: rgba(230,180,74,.4); border-radius: 2px; }

/* Card */
.hns-game-card {
  flex-shrink: 0; width: 212px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--hns-border);
  background: var(--hns-surface);
  transition: transform .32s cubic-bezier(.2,.8,.4,1), box-shadow .32s, border-color .32s;
  cursor: pointer;
}
.hns-game-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(230,180,74,.45);
  border-color: rgba(230,180,74,.45);
}

/* Thumbnail */
.hns-game-card__thumb {
  position: relative; overflow: hidden;
}
.hns-game-card__img {
  width: 100%; display: block;
object-fit: cover;
  transition: transform .4s cubic-bezier(.2,.8,.4,1);
}
.hns-game-card:hover .hns-game-card__img { transform: scale(1.08); }

/* Play overlay */
.hns-game-card__overlay {
  position: absolute; inset: 0;
  background: rgba(5,8,20,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.hns-game-card:hover .hns-game-card__overlay { opacity: 1; }
.hns-game-card__play {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--hns-primary);
  background: rgba(230,180,74,.16);
  display: flex; align-items: center; justify-content: center;
  transform: scale(.72); transition: transform .28s .04s;
}
.hns-game-card:hover .hns-game-card__play { transform: scale(1); }

/* Badge */
.hns-game-card__badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  padding: 3px 8px; border-radius: 20px; line-height: 1.4;
  pointer-events: none;
}
.hns-game-card__badge--hot { background: #d63030; color: #fff; }
.hns-game-card__badge--new { background: var(--hns-success); color: #061a0a; }

/* Caption inside thumb (gradient overlay at bottom) */
.hns-game-card__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 10px 10px;
  background: linear-gradient(to top, rgba(4,6,18,.97) 0%, rgba(4,6,18,.6) 50%, transparent 100%);
}
.hns-game-card__name {
  font-size: 12px; font-weight: 700; line-height: 1.3; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.hns-game-card__provider {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--hns-primary); font-weight: 600;
}
.hns-game-card__plogo {
  width: 14px; height: 14px; object-fit: contain;
  border-radius: 2px; background: rgba(255,255,255,.1); padding: 1px; flex-shrink: 0;
}

@media (max-width: 768px) {
  .hns-game-card { width: 164px; }
  .hns-games-cat-title { font-size: 14px; }
  .hns-games-cat-head { padding-left: 10px; }
}
