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

/* ── Variables ── */
:root {
  --hns-primary:      #00c49a;
  --hns-primary-dark: #009e7c;
  --hns-bg:           #060d0b;
  --hns-surface:      #091512;
  --hns-surface-2:    #0e1d19;
  --hns-text:         #e8f5f2;
  --hns-text-muted:   #7eada3;
  --hns-border:       #1a3028;
  --hns-success:      #2ec471;
  --hns-gold:         #d4a017;
  --hns-radius:       10px;
}

/* ── 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 24px;
  font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  border-radius: 8px; 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: #031a10;
}
.hns-btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,196,154,.32);
}
.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 36px; 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: 6px;
}
.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(0,196,154,.08); }
.hns-head__actions { display: flex; gap: 10px; align-items: center; }

/* ── Mobile panel ── */
.hns-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.8); 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: 6px; 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(0,196,154,.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 .5s cubic-bezier(.4,0,.2,1); }
.hns-hero-slide {
  flex: 0 0 100%; min-height: 500px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hns-hero-slide__bg { position: absolute; inset: 0; overflow: hidden; }
.hns-hero-slide__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hns-hero-slide__bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,13,11,.88) 30%, rgba(6,13,11,.5) 62%, rgba(6,13,11,.15) 100%);
}
@media (max-width: 768px) {
  .hns-hero-slide__bg::after {
    background: linear-gradient(180deg, rgba(6,13,11,.55) 0%, rgba(6,13,11,.80) 55%, rgba(6,13,11,.97) 100%);
  }
}

.hns-hero-slide__char {
  position: absolute; right: 0; bottom: 0;
  height: 100%; width: auto;
  object-fit: contain; object-position: bottom right;
  opacity: .8; z-index: 1; pointer-events: none;
}
.hns-hero-slide__content {
  position: relative; z-index: 2;
  padding: 64px 20px;
  max-width: 1160px; margin: 0 auto; width: 100%;
}
.hns-hero-slide__tag {
  display: inline-block;
  background: var(--hns-primary); color: #031a10;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 100px; margin-bottom: 16px;
}
.hns-hero-slide__tag--sport  { background: #e84040; color: #fff; }
.hns-hero-slide__tag--gold   { background: var(--hns-gold); color: #1a0d00; }
.hns-hero-slide__title {
  font-size: clamp(28px, 5vw, 50px); font-weight: 700;
  line-height: 1.12; margin-bottom: 14px; color: #fff; max-width: 540px;
}
.hns-hero-slide__title span { color: var(--hns-primary); }
.hns-hero-slide__sub {
  color: rgba(232,245,242,.75); font-size: 15px;
  max-width: 460px; margin-bottom: 22px; line-height: 1.65;
}
.hns-hero-slide__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hns-hero-slide__badge {
  background: rgba(0,196,154,.1); border: 1px solid rgba(0,196,154,.28);
  color: var(--hns-primary); font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
}
.hns-hero-controls {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5;
}
.hns-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(232,245,242,.3);
  border: none; cursor: pointer; padding: 0; transition: all .25s;
}
.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(0,196,154,.1); border: 1px solid rgba(0,196,154,.25);
  color: #fff; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; font-size: 17px; line-height: 1;
  z-index: 5; backdrop-filter: blur(4px); transition: all .2s;
}
.hns-hero-btn:hover { background: rgba(0,196,154,.28); 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-section-cta {
  margin-top: 40px; display: flex; justify-content: center;
}
.hns-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--hns-primary); margin-bottom: 8px;
}

/* ── 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: 12px 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(14,29,25,.45); }
.hns-table td:first-child { color: var(--hns-text-muted); font-weight: 600; white-space: nowrap; }

/* ── About feature cards ── */
.hns-about-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.hns-about-card {
  flex: 1 1 calc(50% - 8px); min-width: 240px;
  padding: 24px 22px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border);
  border-left: 3px solid var(--hns-primary); border-radius: var(--hns-radius);
  transition: box-shadow .25s;
}
.hns-about-card:hover { box-shadow: 0 4px 24px rgba(0,196,154,.08); }
.hns-about-card__icon { margin-bottom: 14px; }
.hns-about-card__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.hns-about-card__text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.6; }

/* ── Steps (horizontal) ── */
.hns-steps-h { display: flex; flex-wrap: wrap; gap: 20px; position: relative; }
.hns-step-h {
  flex: 1 1 calc(25% - 15px); min-width: 180px;
  text-align: center; padding: 28px 18px 24px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius); position: relative; transition: border-color .25s;
}
.hns-step-h:hover { border-color: var(--hns-primary); }
.hns-step-h::after {
  content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  color: var(--hns-primary); font-size: 20px; z-index: 1;
}
.hns-step-h:last-child::after { display: none; }
.hns-step-h__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,196,154,.1); border: 2px solid var(--hns-primary);
  color: var(--hns-primary); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.hns-step-h__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.hns-step-h__text { font-size: 13px; color: var(--hns-text-muted); line-height: 1.6; }

/* ── Speed Bonus Table ── */
.hns-speed-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.hns-speed-card {
  flex: 1 1 220px; border-radius: var(--hns-radius);
  overflow: hidden; border: 1px solid var(--hns-border); background: var(--hns-surface-2);
}
.hns-speed-card__head {
  padding: 14px 18px; background: rgba(0,196,154,.06);
  font-weight: 700; font-size: 15px;
  border-bottom: 2px solid var(--hns-primary);
  display: flex; align-items: center; gap: 10px;
}
.hns-speed-card__row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 18px; border-bottom: 1px solid var(--hns-border);
  font-size: 13px; gap: 12px;
}
.hns-speed-card__row:last-child { border-bottom: none; }
.hns-speed-card__label { color: var(--hns-text-muted); white-space: nowrap; }
.hns-speed-card__val { font-weight: 600; text-align: right; }
.hns-speed-card__val--better { color: var(--hns-primary); font-weight: 700; }
.hns-speed-note {
  margin-top: 20px; padding: 14px 18px;
  background: rgba(0,196,154,.07); border: 1px solid rgba(0,196,154,.2);
  border-radius: var(--hns-radius); font-size: 13px; color: var(--hns-text-muted); line-height: 1.6;
}
.hns-speed-note strong { color: var(--hns-primary); }

/* ── Package Cards ── */
.hns-packages { display: flex; flex-direction: column; gap: 24px; }
.hns-package {
  display: flex; flex-direction: row;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border);
  border-radius: 12px; overflow: hidden;
}
.hns-package--featured {
  border-color: var(--hns-primary);
  box-shadow: 0 0 0 1px rgba(0,196,154,.1), 0 8px 32px rgba(0,196,154,.05);
}
.hns-package__left {
  width: 220px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 28px 20px; text-align: center;
  background: linear-gradient(160deg, rgba(0,196,154,.1) 0%, rgba(6,13,11,.95) 100%);
  border-right: 1px solid var(--hns-border);
}
.hns-package__left video { width: 160px; height: 160px; object-fit: cover; border-radius: 12px; display: block; }
.hns-package__name { font-size: 16px; font-weight: 700; line-height: 1.3; }
.hns-package__tagline { font-size: 13px; color: var(--hns-text-muted); }
.hns-package__total { font-size: 15px; font-weight: 700; color: var(--hns-primary); }
.hns-package__right { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.hns-package__stages { padding: 20px 24px; flex: 1; }
.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__img-wrap {
  width: 72px; height: 72px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,29,25,.7);
}
.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; }
.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(26,48,40,.6); border: 1px solid var(--hns-border);
  padding: 2px 8px; border-radius: 4px;
}
.hns-stage__speed {
  background: rgba(0,196,154,.08); border: 1px solid rgba(0,196,154,.22);
  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); }

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

/* ── Cards ── */
.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;
  border-top: 2px solid var(--hns-primary);
}
.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; }

/* ── Game Catalog ── */
.hns-catalog-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--hns-border); border-radius: 10px; overflow: hidden; margin-bottom: 28px;
}
.hns-catalog-stat {
  flex: 1 1 0; padding: 14px 20px; text-align: center;
  border-right: 1px solid var(--hns-border);
}
.hns-catalog-stat:last-child { border-right: none; }
.hns-catalog-stat__val { font-size: 22px; font-weight: 800; color: var(--hns-primary); }
.hns-catalog-stat__lbl { font-size: 12px; color: var(--hns-text-muted); margin-top: 2px; }

.hns-cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.hns-cat-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--hns-border);
  background: var(--hns-surface-2); color: var(--hns-text-muted);
}
.hns-cat-tab--active { background: rgba(0,196,154,.1); border-color: var(--hns-primary); color: var(--hns-primary); }

.hns-cat-divider { display: flex; align-items: center; gap: 10px; margin: 20px 0 14px; }
.hns-cat-divider__label { font-size: 13px; font-weight: 700; white-space: nowrap; }
.hns-cat-divider__badge {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 2px 10px; border-radius: 100px;
}
.hns-cat-divider__badge--live { background: var(--hns-primary); color: #031a10; }
.hns-cat-divider__badge--hot  { background: #e84040; color: #fff; }
.hns-cat-divider__line { flex: 1; height: 1px; background: var(--hns-border); }

.hns-games-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 6px; }
.hns-game-poster {
  position: relative; flex: 1 1 calc(25% - 8px); min-width: 140px;
  border-radius: 10px; overflow: hidden; cursor: pointer;
}
.hns-game-poster img { width: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.hns-game-poster:hover img { transform: scale(1.06); }
.hns-game-poster__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 12px 10px;
  background: linear-gradient(to top, rgba(6,13,11,.92) 0%, transparent 100%);
}
.hns-game-poster__name { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 2px; }
.hns-game-poster__prov { font-size: 11px; color: rgba(255,255,255,.5); }
.hns-game-poster__badge {
  position: absolute; top: 8px; right: 8px;
  padding: 2px 8px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.hns-game-poster__badge--hot  { background: #e84040; color: #fff; }
.hns-game-poster__badge--live { background: var(--hns-primary); color: #031a10; }
.hns-game-poster__badge--new  { background: #2dcc70; color: #fff; }

/* ── Provider marquee ── */
.hns-marquee-outer {
  overflow: hidden; margin-top: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hns-marquee-track {
  display: flex; gap: 12px; width: max-content;
  animation: hns-scroll 32s linear infinite;
}
.hns-marquee-outer:hover .hns-marquee-track { animation-play-state: paused; }
@keyframes hns-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hns-marquee-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; flex-shrink: 0; width: 130px; padding: 14px 16px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border); border-radius: 10px;
  transition: border-color .2s;
}
.hns-marquee-item:hover { border-color: var(--hns-primary); }
.hns-marquee-item img {
  width: 56px; height: 28px; object-fit: contain; display: block;
  filter: brightness(0) invert(1); opacity: .5; transition: opacity .2s;
}
.hns-marquee-item:hover img { opacity: 1; }
.hns-marquee-item__name { font-size: 11px; color: var(--hns-text-muted); text-align: center; }

/* ── Payments ── */
.hns-pay-methods { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.hns-pay-method {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 1 1 calc(16.66% - 10px); min-width: 110px;
  padding: 18px 12px 14px;
  background: var(--hns-surface-2); border: 1px solid var(--hns-border); border-radius: 10px;
  border-top: 3px solid var(--pm-accent, var(--hns-primary));
  transition: box-shadow .2s;
}
.hns-pay-method:hover { box-shadow: 0 4px 20px rgba(0,0,0,.35); }
.hns-pay-method__logo { display: flex; align-items: center; justify-content: center; }
.hns-pay-method__name { font-size: 13px; font-weight: 700; }
.hns-pay-method__speeds { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.hns-pay-speed {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 100px;
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.hns-pay-speed--instant { background: rgba(46,196,113,.15); color: #2ec471; }
.hns-pay-speed--fast    { background: rgba(0,196,154,.15); color: var(--hns-primary); }
.hns-pay-speed--slow    { background: rgba(136,144,170,.12); color: var(--hns-text-muted); }
.hns-pay-legend {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin-bottom: 28px; font-size: 12px; color: var(--hns-text-muted);
}
.hns-pay-legend__item { display: flex; align-items: center; gap: 6px; }
.hns-pay-legend__sep { opacity: .4; }
.hns-pay-cats { display: flex; gap: 14px; flex-wrap: wrap; }
.hns-pay-cat {
  flex: 1 1 0; min-width: 200px;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 20px; background: var(--hns-surface-2);
  border: 1px solid var(--hns-border); border-radius: 12px; transition: border-color .2s;
}
.hns-pay-cat:hover { border-color: var(--hns-primary); }
.hns-pay-cat__icon { flex-shrink: 0; margin-top: 2px; }
.hns-pay-cat__body { flex: 1; min-width: 0; }
.hns-pay-cat__title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.hns-pay-cat__methods { font-size: 12px; color: var(--hns-primary); font-weight: 600; margin-bottom: 12px; }
.hns-pay-cat__rows { display: flex; flex-direction: column; border: 1px solid var(--hns-border); border-radius: 6px; overflow: hidden; }
.hns-pay-cat__row { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; font-size: 12px; border-bottom: 1px solid var(--hns-border); }
.hns-pay-cat__row:last-child { border-bottom: none; }
.hns-pay-cat__row span:first-child { color: var(--hns-text-muted); }
.hns-pay-cat__val { font-weight: 700; font-size: 12px; }
.hns-pay-cat__val--green { color: #2ec471; }

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

/* ── 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(26,48,40,.9); }
.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; background: var(--hns-surface); }
.hns-faq__item.is-open .hns-faq__a { max-height: 600px; }
.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 ── */
.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: .5; transition: opacity .2s; height: 28px; }
.hns-testimonials a:hover { opacity: 1; }
.hns-testimonials img { height: 24px; width: auto; }
.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; }
.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__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(126,173,163,.65); line-height: 1.6; width: 100%; margin-top: 8px; }
.hns-footer__disclaimer a { color: var(--hns-primary); }

/* ── CTA ── */
.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-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-divider { border: none; border-top: 1px solid var(--hns-border); margin: 32px 0; }

/* ── Page hero (inner pages) ── */
.hns-page-hero {
  position: relative; overflow: hidden; min-height: 300px;
  display: flex; align-items: center;
  background: var(--hns-bg);
  border-bottom: 1px solid var(--hns-border);
}
.hns-page-hero__bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hns-page-hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.hns-page-hero__bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,13,11,.92) 35%, rgba(6,13,11,.6) 65%, rgba(6,13,11,.2) 100%);
}
@media (max-width: 768px) {
  .hns-page-hero__bg::after {
    background: linear-gradient(180deg, rgba(6,13,11,.6) 0%, rgba(6,13,11,.85) 60%, rgba(6,13,11,.98) 100%);
  }
}
.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 ── */
.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(0,196,154,.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; 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 table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 16px; }
.hns-legal-doc th { background: var(--hns-surface-2); padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--hns-border); color: var(--hns-text-muted); }
.hns-legal-doc td { padding: 8px 12px; border-bottom: 1px solid var(--hns-border); color: var(--hns-text-muted); }
.hns-legal-doc strong { color: var(--hns-text); }

/* ── Payments (new layout) ── */
.hns-pay-stats {
  display: flex; gap: 1px; background: var(--hns-border);
  border: 1px solid var(--hns-border); border-radius: var(--hns-radius);
  overflow: hidden; margin-bottom: 28px;
}
.hns-pay-stat {
  flex: 1; background: var(--hns-surface);
  padding: 18px 16px; text-align: center;
}
.hns-pay-stat__val {
  font-size: 18px; font-weight: 700; color: var(--hns-primary);
  margin-bottom: 4px;
}
.hns-pay-stat__label {
  font-size: 12px; color: var(--hns-text-muted); line-height: 1.4;
}

.hns-pay-table {
  border: 1px solid var(--hns-border); border-radius: var(--hns-radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.hns-pay-table__head {
  display: grid; grid-template-columns: 64px 1fr 110px 110px 80px;
  gap: 0; background: var(--hns-surface-2);
  border-bottom: 1px solid var(--hns-border);
  padding: 8px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--hns-text-muted);
}
.hns-pay-table__head div:nth-child(3),
.hns-pay-table__head div:nth-child(4),
.hns-pay-table__head div:nth-child(5) { text-align: center; }

.hns-pay-group { display: flex; flex-direction: column; }
.hns-pay-group + .hns-pay-group { border-top: 2px solid var(--hns-border); }
.hns-pay-group__label {
  padding: 8px 16px; font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--hns-text-muted); background: var(--hns-surface-2);
  border-bottom: 1px solid var(--hns-border);
}
.hns-pay-row {
  display: grid; grid-template-columns: 64px 1fr 110px 110px 80px;
  align-items: center; gap: 0;
  padding: 12px 16px;
  background: var(--hns-surface);
  border-bottom: 1px solid var(--hns-border);
  transition: background .15s;
}
.hns-pay-row:last-child { border-bottom: none; }
.hns-pay-row:hover { background: var(--hns-surface-2); }
.hns-pay-row__logo { display: flex; align-items: center; }
.hns-pay-row__name { font-size: 14px; font-weight: 600; padding-left: 4px; }
.hns-pay-row__dep,
.hns-pay-row__wit { text-align: center; }
.hns-pay-row__min { text-align: center; font-size: 13px; font-weight: 700; color: var(--hns-text-muted); }
.hns-pay-row__badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
}
.hns-pay-row__badge--green  { background: rgba(46,196,113,.12); color: #2ec471; }
.hns-pay-row__badge--teal   { background: rgba(0,196,154,.12);  color: var(--hns-primary); }
.hns-pay-row__badge--muted  { background: rgba(255,255,255,.05); color: var(--hns-text-muted); }

/* ── Subpage: Package hero cards ── */
.hns-package { background: var(--hns-surface); border: 1px solid var(--hns-border); border-radius: var(--hns-radius); overflow: hidden; margin-bottom: 8px; }
.hns-package__head {
  position: relative; overflow: hidden; min-height: 240px;
  display: flex; align-items: center;
  padding: 40px 36px;
  background: var(--hns-surface-2);
  border-bottom: 1px solid var(--hns-border);
}
.hns-package__head--thor    { background: linear-gradient(120deg, #030d09 0%, #0a2016 100%); }
.hns-package__head--lagertha{ background: linear-gradient(120deg, #05080f 0%, #0a1526 100%); }
.hns-package__head--freya   { background: linear-gradient(120deg, #050e07 0%, #0a1e0c 100%); }
.hns-package__head--ragnar  { background: linear-gradient(120deg, #100505 0%, #250a08 100%); }
.hns-package__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block; border-radius: 0;
  opacity: 0.45; pointer-events: none;
}
.hns-package__head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,13,11,.85) 0%, rgba(6,13,11,.5) 60%, rgba(6,13,11,.1) 100%);
  z-index: 1;
}
.hns-package__head-content { position: relative; z-index: 2; max-width: 65%; }
.hns-package__title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 6px; }
.hns-package__summary { font-size: 14px; color: var(--hns-text-muted); }
.hns-package__body { padding: 28px; }
.hns-package__total {
  font-size: 15px; font-weight: 700; color: var(--hns-primary);
  margin: 20px 0 16px; padding: 12px 16px;
  background: rgba(0,196,154,.07); border-radius: 8px;
  border-left: 3px solid var(--hns-primary);
}

/* ── Subpage: Stages container ── */
.hns-stages { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }

/* ── Subpage: Games grid ── */
.hns-games-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.hns-game-card {
  flex: 1 1 calc(33.33% - 12px);
  min-width: 220px;
  background: var(--hns-surface); border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius); overflow: hidden;
  transition: border-color .2s;
}
.hns-game-card:hover { border-color: var(--hns-primary); }
.hns-game-card__img {
  width: 100%; object-fit: cover; display: block;
}
.hns-game-card__body { padding: 12px 14px; }
.hns-game-card__name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.hns-game-card__meta { font-size: 12px; color: var(--hns-text-muted); margin-bottom: 4px; }
.hns-game-card__note { font-size: 11px; color: var(--hns-primary); font-weight: 500; }

/* ── Subpage: Providers grid ── */
.hns-providers-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hns-provider-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 20px;
  background: var(--hns-surface); border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius); flex: 1 1 140px;
  transition: border-color .2s;
}
.hns-provider-card:hover { border-color: var(--hns-primary); }
.hns-provider-card__logo {
  width: 48px; height: 48px; object-fit: contain;
  background: rgba(255,255,255,0.06); padding: 6px; border-radius: 8px;
}
.hns-provider-card__name { font-size: 12px; font-weight: 600; text-align: center; color: var(--hns-text-muted); }

/* ── Subpage: Legal content ── */
.hns-legal-content { }
.hns-legal-h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; color: var(--hns-text); padding-bottom: 6px; border-bottom: 1px solid var(--hns-border); }
.hns-legal-list { padding-left: 20px; margin-bottom: 14px; }
.hns-legal-list li { font-size: 14px; color: var(--hns-text-muted); line-height: 1.75; margin-bottom: 6px; }
.hns-legal-list li strong { color: var(--hns-text); }

/* ── 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-pay-stats { flex-wrap: wrap; }
  .hns-pay-stat { flex: 1 1 calc(50% - 1px); }
  .hns-pay-table__head { display: none; }
  .hns-pay-row { grid-template-columns: 52px 1fr auto auto; grid-template-rows: auto auto; gap: 4px 8px; }
  .hns-pay-row__logo { grid-row: 1 / 3; }
  .hns-pay-row__name { grid-column: 2 / 5; font-size: 13px; }
  .hns-pay-row__dep { text-align: left; }
  .hns-pay-row__wit { text-align: left; }
  .hns-pay-row__min { display: none; }
  .hns-game-card { flex: 1 1 calc(50% - 8px); }
  .hns-provider-card { flex: 1 1 calc(50% - 6px); }
  .hns-package__head { min-height: 180px; padding: 28px 20px; }
  .hns-package__head-content { max-width: 80%; }
  .hns-package__video { opacity: 0.35; }
  .hns-section { padding: 44px 0; }
  .hns-hero-slide { min-height: 460px; }
  .hns-hero-slide__char { height: auto; opacity: .45; }
  .hns-hero-btn { display: none; }
  .hns-game-poster { flex: 1 1 calc(50% - 5px); }
  .hns-catalog-stat { border-right: none; border-bottom: 1px solid var(--hns-border); }
  .hns-catalog-stat:last-child { border-bottom: none; }
  .hns-package { flex-direction: column; }
  .hns-package__left { width: 100%; border-right: none; border-bottom: 1px solid var(--hns-border); flex-direction: row; justify-content: flex-start; gap: 16px; padding: 20px; }
  .hns-package__left video { width: 100px; height: 100px; flex-shrink: 0; }
  .hns-grid--3 > * { flex: 1 1 100%; }
  .hns-stage { flex-direction: column; }
  .hns-stage__img, .hns-stage__img-wrap { width: 56px; height: 56px; }
  .hns-footer__top { flex-direction: column; gap: 24px; }
  .hns-about-card { flex: 1 1 100%; }
  .hns-pay-method { flex: 1 1 calc(33.33% - 10px); }
  .hns-pay-cats { flex-direction: column; }
  .hns-speed-grid { flex-direction: column; }
  .hns-step-h { flex: 1 1 calc(50% - 10px); }
  .hns-step-h::after { display: none; }
}
@media (max-width: 600px) {
  .hns-pay-method { flex: 1 1 calc(50% - 8px); min-width: 0; }
}
@media (max-width: 500px) {
  .hns-step-h { flex: 1 1 100%; }
  .hns-hero-slide__content { padding: 44px 16px; }
}
@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); } }
