/* ===== VARIABLES ===== */
:root {
  --bg:      #0A0F16;
  --bg-2:    #0F1720;
  --bg-card: #141E29;
  --ember:    #E8622F;
  --ember-2:  #FF8A4C;
  --ember-dk: #9C3E17;
  --frost:    #5FD6C4;
  --frost-dk: #1F6B60;
  --text:    #EDF2F4;
  --muted:   #8598A3;
  --border:  rgba(232,98,47,0.2);
  --border-frost: rgba(95,214,196,0.22);
  --radius:  8px;
  --cut-sm:  7px;
  --cut-md:  14px;
  --cut-lg:  20px;
  --max-w:   1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--ember-2); text-decoration: none; transition: opacity .15s; }
a:hover { text-decoration: underline; opacity: .85; }
ul,ol { padding-left: 1.5rem; }
li    { margin-bottom: .4rem; }
strong { color: var(--text); }

table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th,td { padding: 10px 14px; border: 1px solid rgba(255,255,255,.07); text-align: left; vertical-align: top; }
th { background: rgba(232,98,47,.12); color: var(--ember-2); font-weight: 700; }
tr:nth-child(even) td { background: rgba(255,255,255,.02); }

/* ===== LAYOUT ===== */
.hns-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.hns-section { padding: 64px 0; position: relative; }
.hns-section--alt { background: var(--bg-2); }

.hns-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ember-2);
  font-weight: 700;
  margin-bottom: 10px;
}
.hns-section__eyebrow::before {
  content: '';
  width: 14px; height: 2px;
  background: linear-gradient(90deg, var(--ember) 0%, var(--frost) 100%);
  display: inline-block;
}
.hns-section__title  { margin-bottom: 12px; }
.hns-section__sub    { color: var(--muted); max-width: 660px; margin-bottom: 40px; }

/* ===== BUTTONS ===== */
.hns-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s;
  cursor: pointer; border: none; white-space: nowrap;
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
}
.hns-btn--gold {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-2) 100%);
  color: #100701;
}
.hns-btn--gold:hover  { box-shadow: 0 0 24px rgba(232,98,47,.5); transform: translateY(-2px); text-decoration: none; opacity: 1; }
.hns-btn--ghost       { background: rgba(255,255,255,.02); border: 1.5px solid rgba(232,98,47,.55); color: var(--ember-2); }
.hns-btn--ghost:hover { background: rgba(232,98,47,.1); text-decoration: none; opacity: 1; }
.hns-btn--lg { padding: 14px 36px; font-size: 1.05rem; }
.hns-btn--sm { padding: 7px 18px; font-size: .83rem; }
.hns-btn--block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.hns-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,22,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.hns-header::after {
  content: '';
  display: block; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ember) 35%, var(--frost) 65%, transparent 100%);
  opacity: .7;
}
.hns-header__bar {
  max-width: var(--max-w); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 16px;
}
.hns-head__left  { display: flex; align-items: center; gap: 14px; }
.hns-logo img    { height: 38px; width: auto; display: block; }
.hns-head__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hns-head__right .hns-btn--ghost { display: none; }

/* Desktop nav */
.hns-nav { display: none; flex: 1; }
.hns-nav ul { list-style: none; display: flex; justify-content: center; gap: 2px; }
.hns-nav li  { margin: 0; }
.hns-nav a {
  display: block; padding: 7px 13px; border-radius: 6px;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  border-bottom: 2px solid transparent;
}
.hns-nav a:hover, .hns-nav a.active { color: var(--text); border-bottom-color: var(--ember); text-decoration: none; opacity: 1; }

/* Burger */
.hns-burger { background: none; border: none; cursor: pointer; padding: 6px; display: flex; flex-direction: column; gap: 5px; }
.hns-burger span { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* Mobile overlay */
.hns-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 200; }
.hns-overlay.is-open { display: block; }

/* Mobile panel */
.hns-mobile-panel {
  position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
  background: var(--bg-2); z-index: 201; transition: left .3s;
  padding: 20px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto;
  border-right: 1px solid var(--border);
}
.hns-mobile-panel.is-open { left: 0; }
.hns-mp-head { display: flex; align-items: center; justify-content: space-between; }
.hns-mp-head img { height: 32px; }
.hns-mp-close {
  background: none; border: none; color: var(--text); cursor: pointer;
  font-size: 1.5rem; line-height: 1; padding: 4px;
}
.hns-mp-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.hns-mp-nav li { margin: 0; }
.hns-mp-nav a { display: block; padding: 11px 14px; color: var(--text); border-radius: 8px; font-size: .95rem; }
.hns-mp-nav a:hover { background: rgba(232,98,47,.1); text-decoration: none; opacity: 1; }
.hns-mp-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }

/* ===== TOP BANNER ===== */
.hns-topbanner { padding: 18px 0 0; background: var(--bg); }
.hns-topbanner__link { display: block; }
.hns-topbanner picture, .hns-topbanner img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ===== HERO ===== */
.hns-hero {
  padding: 90px 0 56px; position: relative; overflow: hidden;
  background: var(--bg);
}
.hns-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(232,98,47,.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 85%, rgba(95,214,196,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hns-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--ember) 40%, var(--frost) 65%, transparent 100%);
}
.hns-hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.hns-hero__inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hns-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,98,47,.1); border: 1px solid var(--border);
  padding: 5px 18px; font-size: .75rem;
  color: var(--ember-2); font-weight: 700; letter-spacing: .06em; margin-bottom: 26px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.hns-hero__badge-dot { width: 6px; height: 6px; background: var(--frost); flex-shrink: 0; }
.hns-hero__title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: -.025em; margin-bottom: 18px; }
.hns-hero__title em { font-style: normal; background: linear-gradient(120deg, var(--ember-2) 0%, var(--frost) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hns-hero__sub { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 0 auto 36px; }
.hns-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hns-hero__stats {
  display: flex; gap: 0; justify-content: center; margin-top: 56px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  overflow: hidden; flex-wrap: wrap;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.hns-hero__stat { flex: 1; min-width: 100px; padding: 20px 16px; text-align: center; border-right: 1px solid var(--border); }
.hns-hero__stat:last-child { border-right: none; }
.hns-hero__stat-num   { font-size: 1.7rem; font-weight: 900; color: var(--ember-2); line-height: 1; }
.hns-hero__stat:nth-child(even) .hns-hero__stat-num { color: var(--frost); }
.hns-hero__stat-label { font-size: .72rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* ===== TRUST BAR ===== */
.hns-trust { padding: 30px 0; border-bottom: 1px solid var(--border); }
.hns-trust__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hns-trust__item {
  flex: 1 1 220px; max-width: 280px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06);
  padding: 14px 16px;
}
.hns-trust__icon { flex-shrink: 0; color: var(--frost); }
.hns-trust__label { font-size: .84rem; font-weight: 700; color: var(--text); }
.hns-trust__sub { font-size: .74rem; color: var(--muted); margin-top: 1px; }

/* ===== QUICK COMPARE ===== */
.hns-qc { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.hns-qc__item {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--ember);
  padding: 14px 18px;
}
.hns-qc__item--frost { border-left-color: var(--frost); }
.hns-qc__name { font-weight: 900; font-size: 1.05rem; min-width: 100px; }
.hns-qc__tag { font-size: .74rem; color: var(--muted); background: rgba(255,255,255,.05); padding: 3px 10px; }
.hns-qc__val { margin-left: auto; font-weight: 700; color: var(--ember-2); font-size: .95rem; }
.hns-qc__item--frost .hns-qc__val { color: var(--frost); }
.hns-qc__link { font-size: .8rem; font-weight: 700; color: var(--muted); border: 1px solid rgba(255,255,255,.12); padding: 5px 12px; flex-shrink: 0; }
.hns-qc__link:hover { color: var(--text); border-color: var(--ember); text-decoration: none; opacity: 1; }

/* ===== PACKAGES (homepage summary) ===== */
.hns-pkg-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.hns-pkg-card {
  flex: 1 1 100%;
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-md)), calc(100% - var(--cut-md)) 100%, 0 100%, 0 var(--cut-md));
}
.hns-pkg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.hns-pkg-card--star { border-color: var(--ember); box-shadow: 0 0 28px rgba(232,98,47,.14); }
.hns-pkg-card__head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hns-pkg-card__video { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; }
.hns-pkg-card__name { font-size: 1.35rem; font-weight: 900; color: var(--ember-2); }
.hns-pkg-card__tag  { font-size: .78rem; color: var(--muted); margin-top: 3px; }
.hns-pkg-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.hns-pkg-card__total { font-size: 1rem; font-weight: 700; }
.hns-pkg-card__total strong { display: block; font-size: 1.2rem; color: var(--ember-2); margin-top: 2px; }
.hns-pkg-card__footer { padding: 0 18px 18px; }

/* ===== BONUS STAGES (bonuses page) ===== */
.hns-bonus-pkg { background: var(--bg-card); border: 1px solid var(--border); margin-bottom: 28px; overflow: hidden; clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-md)), calc(100% - var(--cut-md)) 100%, 0 100%, 0 var(--cut-md)); }
.hns-bonus-pkg__head { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
.hns-bonus-pkg__video { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.hns-bonus-pkg__name  { font-size: 1.6rem; font-weight: 900; color: var(--ember-2); }
.hns-bonus-pkg__total { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.hns-bonus-pkg__total strong { color: var(--text); }
.hns-bonus-pkg__body  { padding: 24px; display: flex; flex-direction: column; gap: 14px; }

.hns-stage { display: flex; gap: 14px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-left: 2px solid var(--border-frost); padding: 14px; }
.hns-stage__img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; }
.hns-stage__body { flex: 1; min-width: 0; }
.hns-stage__label  { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.hns-stage__offer  { font-size: 1rem; font-weight: 700; }
.hns-stage__game   { font-size: .82rem; color: var(--ember-2); margin-top: 3px; }
.hns-stage__terms  { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.hns-stage__term   { background: rgba(255,255,255,.06); padding: 2px 8px; font-size: .72rem; color: var(--muted); }
.hns-stage__speed  {
  margin-top: 10px; font-size: .83rem; color: var(--ember-2);
  background: rgba(232,98,47,.08); border: 1px solid rgba(232,98,47,.22);
  padding: 8px 12px;
}

/* ===== AFF BONUS CARDS ===== */
.hns-aff-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.aff-bonus {
  flex: 1 1 100%;
  display: flex; gap: 16px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 16px;
  text-decoration: none; transition: all .2s;
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
}
.aff-bonus:hover { border-color: var(--ember); box-shadow: 0 8px 24px rgba(0,0,0,.35); transform: translateY(-2px); text-decoration: none; opacity: 1; }
.aff-bonus__img    { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.aff-bonus__body   { flex: 1; }
.aff-bonus__offer  { display: block; font-size: 1.15rem; font-weight: 900; color: var(--ember-2); }
.aff-bonus__game   { display: block; font-size: .82rem; color: var(--muted); margin-top: 2px; }
.aff-bonus__cta    { display: inline-block; margin-top: 10px; background: var(--ember); color: #100701; padding: 7px 18px; font-size: .83rem; font-weight: 700; }

/* ===== GAMES GRID ===== */
.games-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.game-card { flex: 0 0 calc(50% - 5px); text-decoration: none; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); transition: transform .2s, border-color .2s; }
.game-card:hover { transform: translateY(-4px); border-color: var(--ember); opacity: 1; text-decoration: none; }
.game-card__img  { width: 100%; object-fit: cover; display: block; }
.game-card__name { display: block; font-size: 11px; padding: 5px 8px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== PROVIDERS ===== */
.providers-grid { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.provider-card {
  flex: 0 0 calc(33.333% - 7px); display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); padding: 12px;
  border: 1px solid rgba(255,255,255,.06); transition: border-color .2s;
}
.provider-card:hover { border-color: rgba(232,98,47,.35); }
.provider-card__logo { width: 100%; max-width: 80px; height: 36px; object-fit: contain; filter: grayscale(25%) brightness(.9); transition: filter .2s; }
.provider-card:hover .provider-card__logo { filter: grayscale(0%) brightness(1); }

/* ===== PAYMENTS ===== */
.payment-grid { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-card { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); padding: 8px 14px; border: 1px solid rgba(255,255,255,.07); }
.payment-card img { height: 26px; width: auto; display: block; }

/* ===== FAQ ===== */
.hns-faq { display: flex; flex-direction: column; gap: 8px; }
.hns-faq details { background: var(--bg-card); border: 1px solid var(--border); border-left: 2px solid var(--frost-dk); overflow: hidden; }
.hns-faq details[open] { border-left-color: var(--frost); }
.hns-faq details summary { padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: .95rem; display: flex; justify-content: space-between; align-items: center; list-style: none; gap: 12px; }
.hns-faq details summary::-webkit-details-marker { display: none; }
.hns-faq details summary::after { content: '+'; color: var(--ember-2); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform .2s; }
.hns-faq details[open] summary::after { transform: rotate(45deg); }
.hns-faq .faq-body { padding: 4px 20px 18px; color: var(--muted); font-size: .93rem; }

/* ===== FOOTER TESTIMONIALS ===== */
.hns-testimonials { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-bottom: 40px; }
.hns-testimonials img { height: 26px; width: auto; filter: grayscale(100%) brightness(1.8); opacity: .55; transition: opacity .2s; }
.hns-testimonials img:hover { opacity: 1; }

/* ===== FOOTER ===== */
.hns-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 28px; position: relative; }
.hns-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ember) 35%, var(--frost) 65%, transparent 100%);
  opacity: .6;
}
.hns-footer__grid { display: flex; flex-direction: column; gap: 36px; margin-bottom: 40px; }
.hns-footer__brand {}
.hns-footer__logo { display: block; margin-bottom: 14px; }
.hns-footer__logo img { height: 34px; }
.hns-footer__desc { font-size: .83rem; color: var(--muted); line-height: 1.7; max-width: 340px; }
.hns-footer__col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ember-2); margin-bottom: 14px; font-weight: 700; }
.hns-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hns-footer__col li { margin: 0; }
.hns-footer__col a { color: var(--muted); font-size: .87rem; transition: color .2s; }
.hns-footer__col a:hover { color: var(--text); text-decoration: none; opacity: 1; }
.hns-footer__sep { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 0 0 28px; }
.hns-footer__bottom { display: flex; flex-direction: column; gap: 14px; }
.hns-footer__disc { font-size: .74rem; color: var(--muted); line-height: 1.65; }
.hns-footer__legal { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hns-footer__copy { font-size: .8rem; color: var(--muted); }
.hns-footer__legal a { font-size: .8rem; color: var(--muted); }
.hns-footer__legal a:hover { color: var(--text); text-decoration: none; opacity: 1; }

/* ===== CONTENT PAGES (terms / privacy / responsible) ===== */
.hns-page-hero { padding: 60px 0 48px; border-bottom: 1px solid var(--border); }
.hns-page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 10px; }
.hns-page-hero p  { color: var(--muted); }
.hns-content { padding: 56px 0; }
.hns-content > .hns-wrap > * + * { margin-top: 1.2rem; }
.hns-content h2 { font-size: 1.35rem; margin-top: 40px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.hns-content h3 { font-size: 1rem; color: var(--ember-2); margin-top: 24px; }
.hns-content table { margin: 16px 0; }
.hns-content ul, .hns-content ol { margin: 8px 0; }

/* Tool cards (responsible page) */
.hns-tools-grid { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hns-tool-card { flex: 1 1 100%; background: var(--bg-card); border: 1px solid var(--border); padding: 22px; clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm)); }
.hns-tool-card h3 { color: var(--ember-2); margin-bottom: 8px; margin-top: 0; font-size: 1rem; }
.hns-tool-card p  { color: var(--muted); font-size: .9rem; margin: 0; }
.hns-tool-icon { margin-bottom: 14px; }

/* Steps */
.hns-steps { counter-reset: steps; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.hns-step { display: flex; gap: 16px; counter-increment: steps; }
.hns-step::before {
  content: counter(steps);
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-2) 100%);
  color: #100701; font-weight: 900; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.hns-step p { flex: 1; color: var(--text); }

/* Wager table */
.hns-wager-wrap { background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; margin: 24px 0; }

/* Info callout */
.hns-callout {
  background: rgba(232,98,47,.07); border: 1px solid rgba(232,98,47,.22); border-left: 3px solid var(--ember);
  padding: 16px 18px; font-size: .88rem; color: var(--muted);
  margin: 20px 0;
}
.hns-callout strong { color: var(--ember-2); }

/* Speed bonus highlight */
.hns-speed-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,98,47,.12); border: 1px solid rgba(232,98,47,.28);
  padding: 6px 12px; font-size: .82rem; color: var(--ember-2); font-weight: 700;
  margin: 12px 0 4px;
}

/* App feature cards */
.hns-feat-grid { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hns-feat-card { flex: 1 1 100%; background: var(--bg-card); border: 1px solid var(--border); padding: 20px; clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm)); }
.hns-feat-card h3 { color: var(--ember-2); margin-bottom: 8px; }
.hns-feat-card p  { color: var(--muted); font-size: .9rem; margin: 0; }

/* ===== DESKTOP (768px+) ===== */
@media (min-width: 768px) {
  .hns-nav    { display: block; }
  .hns-burger { display: none; }
  .hns-head__right .hns-btn--ghost { display: inline-flex; }

  .hns-pkg-card { flex: 1 1 calc(25% - 12px); }
  .aff-bonus    { flex: 1 1 calc(50% - 7px); }

  .game-card { flex: 0 0 calc(20% - 8px); }

  .provider-card { flex: 0 0 calc(16.666% - 9px); }

  .hns-footer__grid {
    flex-direction: row; justify-content: space-between; align-items: flex-start;
  }
  .hns-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .hns-tool-card, .hns-feat-card { flex: 1 1 calc(50% - 7px); }

  .hns-bonus-pkg__body { padding: 28px; }

  .hns-qc__item { flex-wrap: nowrap; }
}
