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

/* ── Variables ── */
:root {
  --hns-gold:         #f0bc4a;
  --hns-gold-dark:    #c99a20;
  --hns-gold-glow:    rgba(240,188,74,.18);
  --hns-bg:           #060a18;
  --hns-bg-2:         #0b1026;
  --hns-surface:      #0f1530;
  --hns-surface-2:    #151c3a;
  --hns-surface-3:    #1c2448;
  --hns-text:         #eef0f8;
  --hns-text-muted:   #7e8aaa;
  --hns-text-dim:     #4a5374;
  --hns-border:       #1e2748;
  --hns-border-2:     #2b3560;
  --hns-success:      #2ec471;
  --hns-radius-sm:    6px;
  --hns-radius:       10px;
  --hns-radius-lg:    16px;
  --hns-wrap:         1180px;
}

/* ── 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, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Buttons ── */
.hns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border-radius: var(--hns-radius-sm);
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .02em;
}
.hns-btn--gold {
  background: linear-gradient(135deg, #f0bc4a 0%, #d9960e 100%);
  color: #07090f;
  box-shadow: 0 4px 16px rgba(240,188,74,.25);
}
.hns-btn--gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,188,74,.38);
}
.hns-btn--outline {
  background: transparent;
  color: var(--hns-gold);
  border: 1.5px solid var(--hns-gold);
}
.hns-btn--outline:hover {
  background: var(--hns-gold-glow);
  box-shadow: 0 0 0 3px rgba(240,188,74,.12);
}
.hns-btn--ghost {
  background: rgba(255,255,255,.05);
  color: var(--hns-text);
  border: 1px solid var(--hns-border-2);
}
.hns-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--hns-border-2); }
.hns-btn--lg { padding: 15px 34px; font-size: 16px; border-radius: var(--hns-radius-sm); }
.hns-btn--full { width: 100%; }

/* ── Header ── */
.hns-header {
  position: sticky;
  top: 0; z-index: 200;
  background: rgba(6,10,24,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hns-border);
}
.hns-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: var(--hns-wrap);
  margin: 0 auto;
}
.hns-head__left { display: flex; align-items: center; gap: 20px; }
.hns-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hns-logo img { height: 40px; width: auto; }
.hns-nav ul { display: flex; gap: 2px; align-items: center; }
.hns-nav a {
  display: block;
  color: var(--hns-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--hns-radius-sm);
  transition: all .2s;
}
.hns-nav a:hover, .hns-nav a.is-active {
  color: var(--hns-gold);
  background: var(--hns-gold-glow);
}
.hns-head__right { display: flex; gap: 10px; align-items: center; }

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

/* Mobile panel */
.hns-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 300;
  opacity: 0;
  transition: opacity .3s;
}
.hns-overlay.is-open { display: block; opacity: 1; }
.hns-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 cubic-bezier(.4,0,.2,1);
  z-index: 400;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.hns-panel.is-open { transform: translateX(0); }
.hns-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hns-border);
}
.hns-panel__close {
  background: transparent; border: 1px solid var(--hns-border-2);
  color: var(--hns-text); width: 32px; height: 32px;
  border-radius: var(--hns-radius-sm); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.hns-panel__nav { flex: 1; padding: 12px 0; }
.hns-panel__nav li a {
  display: block; padding: 13px 20px;
  color: var(--hns-text-muted); font-size: 15px; font-weight: 500;
  transition: all .2s;
  border-left: 2px solid transparent;
}
.hns-panel__nav li a:hover,
.hns-panel__nav li a.is-active {
  color: var(--hns-gold);
  background: var(--hns-gold-glow);
  border-left-color: var(--hns-gold);
}
.hns-panel__foot { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--hns-border); }

/* ── Hero ── */
.hns-hero {
  background: var(--hns-bg-2);
  overflow: hidden;
}
.hns-hero picture { display: block; line-height: 0; }
.hns-hero__img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Text block sits below the banner image */
.hns-hero__overlay {
  background: var(--hns-surface);
  border-bottom: 1px solid var(--hns-border);
  padding: 40px 0 48px;
}
.hns-hero__body {
  max-width: 740px;
}
.hns-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hns-gold);
  color: #07090f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.hns-hero__h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.hns-hero__h1 em {
  color: var(--hns-gold);
  font-style: normal;
}
.hns-hero__sub {
  color: var(--hns-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}
.hns-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hns-hero__badge {
  background: rgba(240,188,74,.1);
  border: 1px solid rgba(240,188,74,.28);
  color: var(--hns-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
}
.hns-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 767px) {
  .hns-hero__overlay { padding: 28px 0 36px; }
  .hns-hero__body { max-width: 100%; }
}

/* ── Trust Bar ── */
.hns-trust {
  background: var(--hns-surface);
  border-bottom: 1px solid var(--hns-border);
  padding: 20px 0;
}
.hns-trust__grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hns-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
}
.hns-trust__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--hns-gold-glow);
  border: 1px solid rgba(240,188,74,.25);
  border-radius: var(--hns-radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.hns-trust__label { font-size: 13px; font-weight: 600; color: var(--hns-text); line-height: 1.3; }
.hns-trust__sub { font-size: 11px; color: var(--hns-text-muted); margin-top: 1px; }

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

.hns-section__head { margin-bottom: 40px; }
.hns-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hns-gold);
  margin-bottom: 10px;
}
.hns-section__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hns-text);
  margin-bottom: 12px;
}
.hns-section__lead {
  color: var(--hns-text-muted);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.75;
}
.hns-section__more { margin-top: 36px; text-align: center; }

/* ── Intro Table ── */
.hns-table-wrap { overflow-x: auto; border-radius: var(--hns-radius); border: 1px solid var(--hns-border); }
.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: 11px;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 11px 18px; text-align: left;
  border-bottom: 1px solid var(--hns-border);
}
.hns-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--hns-border);
  vertical-align: top;
  color: var(--hns-text);
  font-size: 14px;
}
.hns-table tr:last-child td { border-bottom: none; }
.hns-table tr:nth-child(even) td { background: rgba(255,255,255,.018); }
.hns-table td:first-child { color: var(--hns-text-muted); font-weight: 500; width: 38%; }

/* ── Package Cards ── */
.hns-packages-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hns-pkg {
  flex: 1;
  min-width: 240px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.hns-pkg:hover { border-color: var(--hns-border-2); transform: translateY(-4px); }
.hns-pkg--featured {
  border-color: var(--hns-gold);
  box-shadow: 0 0 0 1px rgba(240,188,74,.15), 0 20px 48px rgba(6,10,24,.5);
}
.hns-pkg__video-wrap {
  position: relative;
  height: 100px;
  background: var(--hns-surface-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hns-pkg__video {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--hns-radius);
}
.hns-pkg__badge-featured {
  position: absolute; top: 10px; right: 10px;
  background: var(--hns-gold);
  color: #07090f;
  font-size: 10px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.hns-pkg__body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.hns-pkg__name {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--hns-text-muted);
  margin-bottom: 6px;
}
.hns-pkg__headline {
  font-family: 'Cinzel', serif;
  font-size: 18px; font-weight: 700;
  color: var(--hns-gold);
  line-height: 1.25;
  margin-bottom: 8px;
}
.hns-pkg__sub { font-size: 13px; color: var(--hns-text-muted); margin-bottom: 16px; line-height: 1.6; }
.hns-pkg__stages { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.hns-pkg__stage {
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hns-pkg__stage-img {
  width: 44px; height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.hns-pkg__stage-body { flex: 1; min-width: 0; }
.hns-pkg__stage-label { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--hns-text-dim); }
.hns-pkg__stage-offer { font-size: 13px; font-weight: 700; color: var(--hns-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hns-pkg__terms { font-size: 11px; color: var(--hns-text-dim); margin-bottom: 16px; line-height: 1.6; }
.hns-pkg__cta { margin-top: auto; }

/* Speed bonus callout */
.hns-pkg__speed {
  background: rgba(240,188,74,.08);
  border: 1px solid rgba(240,188,74,.22);
  border-radius: var(--hns-radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--hns-gold);
  line-height: 1.55;
}
.hns-pkg__speed strong { font-weight: 700; }

/* ── Live Casino ── */
.hns-live-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hns-live-card {
  flex: 1;
  min-width: 200px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.hns-live-card:hover { border-color: var(--hns-border-2); transform: translateY(-3px); }
.hns-live-card__img {
  width: 100%;
  object-fit: cover;
}
.hns-live-card__body { padding: 14px 16px; }
.hns-live-card__name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.hns-live-card__meta { font-size: 12px; color: var(--hns-text-muted); }

/* ── Games Grid ── */
.hns-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hns-game-card {
  flex: 1;
  min-width: 160px;
  max-width: calc(16.666% - 12px);
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.hns-game-card:hover { border-color: rgba(240,188,74,.4); transform: translateY(-3px); }
.hns-game-card__img {
  width: 100%;
  object-fit: cover;
}
.hns-game-card__name {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hns-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Reviews ── */
.hns-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hns-review {
  flex: 1;
  min-width: 280px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  padding: 24px;
}
.hns-review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.hns-review__stars svg { width: 16px; height: 16px; }
.hns-review__text {
  font-size: 14px;
  color: var(--hns-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.hns-review__author { display: flex; align-items: center; gap: 12px; }
.hns-review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hns-surface-3);
  border: 1px solid var(--hns-border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  color: var(--hns-gold);
  font-family: 'Cinzel', serif;
  flex-shrink: 0;
}
.hns-review__name { font-size: 14px; font-weight: 600; }
.hns-review__loc { font-size: 12px; color: var(--hns-text-muted); }

/* ── FAQ ── */
.hns-faq { display: flex; flex-direction: column; gap: 8px; }
.hns-faq__item {
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  overflow: hidden;
}
.hns-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--hns-text);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.hns-faq__q:hover { background: rgba(255,255,255,.03); }
.hns-faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
}
.hns-faq__item.is-open .hns-faq__icon {
  background: var(--hns-gold);
  border-color: var(--hns-gold);
  transform: rotate(45deg);
}
.hns-faq__item.is-open .hns-faq__icon svg { color: #07090f; }
.hns-faq__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--hns-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--hns-border);
}
.hns-faq__item.is-open .hns-faq__a {
  display: block;
  padding-top: 16px;
}

/* ── Content text ── */
.hns-prose h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--hns-text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hns-border);
}
.hns-prose h2:first-child { margin-top: 0; }
.hns-prose h3 {
  font-size: 17px; font-weight: 700;
  margin: 28px 0 10px;
  color: var(--hns-text);
}
.hns-prose p { font-size: 15px; color: var(--hns-text-muted); margin-bottom: 16px; line-height: 1.75; }
.hns-prose strong { color: var(--hns-text); }
.hns-prose ul, .hns-prose ol { margin: 0 0 16px 0; padding-left: 20px; list-style: disc; }
.hns-prose ol { list-style: decimal; }
.hns-prose li { font-size: 14px; color: var(--hns-text-muted); margin-bottom: 6px; line-height: 1.65; }

/* Comparison table on bonuses page */
.hns-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hns-compare-table thead th {
  background: var(--hns-surface-2);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--hns-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--hns-border);
}
.hns-compare-table thead th:first-child { color: var(--hns-gold); font-size: 12px; }
.hns-compare-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--hns-border);
  color: var(--hns-text);
  vertical-align: top;
}
.hns-compare-table tbody tr:last-child td { border-bottom: none; }
.hns-compare-table tbody td:first-child { font-weight: 700; color: var(--hns-text); }
.hns-compare-table tbody tr:hover td { background: rgba(255,255,255,.02); }

/* Wagering steps */
.hns-steps { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.hns-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius);
  padding: 16px 20px;
}
.hns-step__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hns-gold);
  color: #07090f;
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hns-step__text { font-size: 14px; color: var(--hns-text-muted); line-height: 1.65; padding-top: 4px; }
.hns-step__text strong { color: var(--hns-text); display: block; font-size: 15px; margin-bottom: 3px; }

/* Callout box */
.hns-callout {
  background: rgba(240,188,74,.06);
  border: 1px solid rgba(240,188,74,.22);
  border-left: 3px solid var(--hns-gold);
  border-radius: var(--hns-radius-sm);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--hns-text-muted);
  line-height: 1.7;
}
.hns-callout strong { color: var(--hns-gold); }

/* Info list (app page) */
.hns-info-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.hns-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius-sm);
  padding: 14px 18px;
}
.hns-info-item__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--hns-radius-sm);
  background: var(--hns-gold-glow);
  border: 1px solid rgba(240,188,74,.2);
  display: flex; align-items: center; justify-content: center;
}
.hns-info-item__body { flex: 1; }
.hns-info-item__title { font-size: 14px; font-weight: 600; color: var(--hns-text); margin-bottom: 3px; }
.hns-info-item__desc { font-size: 13px; color: var(--hns-text-muted); line-height: 1.6; }

/* Responsive two-col layout */
.hns-two-col {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.hns-two-col__main { flex: 1; min-width: 0; }
.hns-two-col__side { width: 340px; flex-shrink: 0; }

/* Legal sections */
.hns-legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hns-border);
}
.hns-legal-section:last-child { border-bottom: none; }
.hns-rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.hns-rights-item {
  flex: 1;
  min-width: 220px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius-sm);
  padding: 16px 18px;
}
.hns-rights-item__title { font-size: 14px; font-weight: 700; color: var(--hns-text); margin-bottom: 6px; }
.hns-rights-item__text { font-size: 13px; color: var(--hns-text-muted); line-height: 1.6; }

/* ── Footer Testimonials ── */
.hns-testimonials {
  background: var(--hns-surface);
  padding: 28px 0;
  border-bottom: 1px solid var(--hns-border);
}
.hns-testimonials__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hns-text-dim);
  text-align: center;
  margin-bottom: 18px;
}
.hns-testimonials__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hns-testimonials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 44px;
  background: var(--hns-surface-2);
  border: 1px solid var(--hns-border);
  border-radius: var(--hns-radius-sm);
  padding: 8px;
  opacity: .6;
  transition: opacity .2s, border-color .2s;
}
.hns-testimonials__link:hover { opacity: 1; border-color: var(--hns-border-2); }
.hns-testimonials__link img { width: 100%; height: 100%; object-fit: contain; }

/* ── Footer ── */
.hns-footer {
  background: var(--hns-bg-2);
  padding: 48px 0 32px;
  border-top: 1px solid var(--hns-border);
}
.hns-footer__grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hns-footer__brand { flex: 2; min-width: 220px; }
.hns-footer__logo { margin-bottom: 16px; }
.hns-footer__logo img { height: 38px; }
.hns-footer__desc { font-size: 13px; color: var(--hns-text-muted); line-height: 1.7; max-width: 320px; }
.hns-footer__col { flex: 1; min-width: 140px; }
.hns-footer__col-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--hns-text-dim);
  margin-bottom: 14px;
}
.hns-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.hns-footer__col a {
  font-size: 13px; color: var(--hns-text-muted);
  transition: color .2s;
}
.hns-footer__col a:hover { color: var(--hns-gold); }
.hns-footer__bottom {
  border-top: 1px solid var(--hns-border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hns-footer__legal { font-size: 12px; color: var(--hns-text-dim); line-height: 1.7; max-width: 680px; }
.hns-footer__18 {
  width: 36px; height: 36px;
  border: 1.5px solid var(--hns-text-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--hns-text-dim);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .hns-game-card { max-width: calc(25% - 12px); }
  .hns-two-col { flex-direction: column; }
  .hns-two-col__side { width: 100%; }
}
@media (max-width: 767px) {
  .hns-nav { display: none; }
  .hns-head__right .hns-btn--ghost { display: none; }
  .hns-burger { display: flex; }
  .hns-section { padding: 48px 0; }
  .hns-hero__body { max-width: 100%; }
  .hns-pkg { min-width: 100%; }
  .hns-game-card { max-width: calc(50% - 12px); }
  .hns-trust__item { min-width: calc(50% - 8px); }
  .hns-live-card { min-width: calc(50% - 8px); }
  .hns-reviews-grid .hns-review { min-width: 100%; }
  .hns-footer__grid { gap: 28px; }
  .hns-footer__bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .hns-game-card { max-width: calc(50% - 6px); }
  .hns-trust__item { min-width: 100%; }
  .hns-section__title { font-size: 22px; }
}
