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

/* ── Variables: Italian palette (navy + gold + red) ── */
:root {
  --hni-primary:      #CF2B2B;
  --hni-primary-dark: #a31f1f;
  --hni-gold:         #C69A28;
  --hni-gold-light:   rgba(198,154,40,.15);
  --hni-bg:           #0b0c17;
  --hni-surface:      #12141f;
  --hni-surface-2:    #1c1f30;
  --hni-text:         #eef0f8;
  --hni-text-muted:   #7d83a0;
  --hni-border:       #22253a;
  --hni-success:      #2ecc71;
  --hni-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(--hni-text);
  background: var(--hni-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Headings: Playfair Display (Italian editorial feel) ── */
h1, h2, h3, .hni-serif { font-family: 'Playfair Display', Georgia, serif; }

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

/* ── Gold accent line (section decorator) ── */
.hni-gold-line {
  display: inline-block;
  width: 48px; height: 3px;
  background: var(--hni-gold);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.hni-btn {
  display: inline-block;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border-radius: var(--hni-radius);
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
  text-decoration: none;
  letter-spacing: .02em;
}
.hni-btn--primary {
  background: linear-gradient(135deg, var(--hni-primary), var(--hni-primary-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(207,43,43,.25);
}
.hni-btn--primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(207,43,43,.38);
}
.hni-btn--gold {
  background: linear-gradient(135deg, var(--hni-gold), #9e7515);
  color: #fff;
  box-shadow: 0 4px 14px rgba(198,154,40,.25);
}
.hni-btn--gold:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(198,154,40,.38);
}
.hni-btn--ghost {
  background: transparent;
  color: var(--hni-text);
  border: 1px solid var(--hni-border);
}
.hni-btn--ghost:hover { border-color: var(--hni-gold); color: var(--hni-gold); }
.hni-btn--lg { padding: 15px 36px; font-size: 16px; }
.hni-btn--full { width: 100%; }

/* ── Header ── */
.hni-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18,20,31,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hni-border);
}
.hni-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.hni-head__left { display: flex; align-items: center; gap: 20px; }

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

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

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

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

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

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

.hni-section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.hni-section-lead {
  color: var(--hni-text-muted);
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hni-text { font-size: 14px; color: var(--hni-text-muted); line-height: 1.8; margin-bottom: 16px; }
.hni-text strong { color: var(--hni-text); }
.hni-text a { color: var(--hni-primary); }
.hni-highlight { color: var(--hni-gold); font-weight: 700; }

/* ── Overview Table ── */
.hni-table-wrap { overflow-x: auto; border-radius: var(--hni-radius); border: 1px solid var(--hni-border); }
.hni-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.hni-table th {
  background: var(--hni-surface-2);
  color: var(--hni-text-muted);
  font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 12px 18px; text-align: left;
  border-bottom: 1px solid var(--hni-border);
}
.hni-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--hni-border);
  color: var(--hni-text);
  vertical-align: top;
}
.hni-table tr:last-child td { border-bottom: none; }
.hni-table tr:nth-child(odd) td { background: rgba(28,31,48,.5); }
.hni-table td:first-child { color: var(--hni-text-muted); font-weight: 500; }

/* ── Cards grid ── */
.hni-grid {
  display: flex; flex-wrap: wrap; gap: 18px;
}
.hni-grid--3 > * { flex: 1 1 calc(33.33% - 12px); min-width: 220px; }
.hni-grid--2 > * { flex: 1 1 calc(50% - 9px); min-width: 260px; }
.hni-card {
  background: var(--hni-surface-2);
  border: 1px solid var(--hni-border);
  border-radius: var(--hni-radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.hni-card:hover { border-color: rgba(198,154,40,.4); transform: translateY(-2px); }
.hni-card--gold-top { border-top: 3px solid var(--hni-gold); }
.hni-card__icon { margin-bottom: 16px; }
.hni-card__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.hni-card__text { font-size: 14px; color: var(--hni-text-muted); line-height: 1.65; }

/* ── Packages (2x2 grid) ── */
.hni-packages {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.hni-package {
  flex: 1 1 calc(50% - 10px); min-width: 300px;
  background: var(--hni-surface-2);
  border: 1px solid var(--hni-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.hni-package:hover { border-color: rgba(198,154,40,.35); }
.hni-package--featured {
  border-color: var(--hni-gold);
  box-shadow: 0 0 0 1px rgba(198,154,40,.15), 0 8px 32px rgba(0,0,0,.35);
}
.hni-package--featured::before {
  content: 'Raccomandato';
  display: block;
  background: var(--hni-gold);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
}
.hni-package__head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--hni-border);
}
.hni-package__name { font-size: 17px; font-weight: 700; font-family: 'Playfair Display', serif; }
.hni-package__total {
  margin-left: auto;
  font-size: 13px; font-weight: 700;
  color: var(--hni-gold);
  text-align: right; line-height: 1.4;
}
.hni-package__stages { padding: 14px 22px; }
.hni-stage {
  padding: 12px 0;
  border-bottom: 1px solid var(--hni-border);
}
.hni-stage:last-child { border-bottom: none; padding-bottom: 0; }
.hni-stage__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--hni-text-muted);
  margin-bottom: 3px;
}
.hni-stage__offer { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--hni-text); }
.hni-stage__game { font-size: 13px; color: var(--hni-text-muted); margin-bottom: 5px; }
.hni-stage__terms { display: flex; flex-wrap: wrap; gap: 5px; }
.hni-stage__term {
  font-size: 11px; color: var(--hni-text-muted);
  background: rgba(34,37,58,.8);
  border: 1px solid var(--hni-border);
  padding: 2px 8px; border-radius: 4px;
}
.hni-stage__speed {
  background: rgba(207,43,43,.08);
  border: 1px solid rgba(207,43,43,.25);
  border-radius: 6px; padding: 10px 14px;
  margin-top: 10px;
  font-size: 12px;
  color: #f06b6b;
  width: 100%;
}
.hni-stage__speed strong { color: var(--hni-primary); }
.hni-package__footer {
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hni-border);
  gap: 12px; flex-wrap: wrap;
}
.hni-package__note { font-size: 12px; color: var(--hni-text-muted); line-height: 1.5; }

/* ── Package video icon (webm) ── */
.hni-package__video {
  width: 80px; height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Stage game image ── */
.hni-stage__img {
  width: 72px; height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.hni-stage--with-img {
  display: flex; gap: 14px; align-items: flex-start;
}

/* ── Wagering info boxes ── */
.hni-wager-grid {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px;
}
.hni-wager-card {
  flex: 1 1 160px;
  background: var(--hni-surface-2);
  border: 1px solid var(--hni-border);
  border-top: 3px solid var(--hni-gold);
  border-radius: var(--hni-radius);
  padding: 18px 20px;
  text-align: center;
}
.hni-wager-card__val {
  font-size: 30px; font-weight: 800;
  color: var(--hni-gold); line-height: 1.1;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.hni-wager-card__label { font-size: 12px; color: var(--hni-text-muted); }

/* ── Steps ── */
.hni-steps { display: flex; flex-direction: column; gap: 0; }
.hni-step {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hni-border);
}
.hni-step:last-child { border-bottom: none; }
.hni-step__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hni-gold-light);
  border: 2px solid var(--hni-gold);
  color: var(--hni-gold);
  font-weight: 700; font-size: 16px;
  font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center;
}
.hni-step__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hni-step__text { font-size: 14px; color: var(--hni-text-muted); line-height: 1.65; }

/* ── Game cards ── */
.hni-games-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.hni-game-card {
  flex: 0 0 220px;
  background: var(--hni-surface-2);
  border: 1px solid var(--hni-border);
  border-radius: var(--hni-radius);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.hni-game-card:hover { border-color: var(--hni-gold); transform: translateY(-3px); }
.hni-game-card__img {
  width: 100%; object-fit: cover;
  display: block;
}
.hni-game-card__label {
  padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--hni-text-muted);
}

/* ── Games slider ── */
.hni-games-tabs {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.hni-games-tab {
  padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
  background: var(--hni-surface-2); border: 1px solid var(--hni-border);
  color: var(--hni-text-muted); cursor: pointer; transition: all .2s;
}
.hni-games-tab.is-active { background: var(--hni-gold); border-color: var(--hni-gold); color: #0c0e1a; }
.hni-games-tab:hover:not(.is-active) { border-color: var(--hni-gold); color: var(--hni-text); }
.hni-games-panel[hidden] { display: none; }
.hni-games-slider-wrap { overflow: hidden; margin-bottom: 20px; }
.hni-games-track {
  display: flex; gap: 16px; transition: transform .4s ease; will-change: transform;
}
@media (max-width: 599px) {
  .hni-game-card { flex: 0 0 calc(50vw - 28px); }
}
@media (min-width: 600px) and (max-width: 899px) {
  .hni-game-card { flex: 0 0 calc(33.333vw - 28px); }
}
@media (min-width: 900px) {
  .hni-game-card { flex: 0 0 220px; }
}

/* ── Providers marquee slider ── */
.hni-providers-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}
.hni-providers-marquee::before,
.hni-providers-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2; width: 80px;
  pointer-events: none;
}
.hni-providers-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--hni-surface), transparent);
}
.hni-providers-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--hni-surface), transparent);
}
.hni-providers-track {
  display: flex; align-items: center; gap: 14px;
  width: max-content;
  animation: hni-marquee 36s linear infinite;
}
.hni-providers-marquee:hover .hni-providers-track {
  animation-play-state: paused;
}
@keyframes hni-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hni-provider-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 18px;
  background: rgba(28,31,48,.85);
  border: 1px solid var(--hni-border);
  border-radius: 10px;
  opacity: .6;
  transition: opacity .25s, border-color .25s, transform .25s;
  flex-shrink: 0;
  cursor: default;
}
.hni-providers-marquee:hover .hni-provider-logo:hover {
  opacity: 1;
  border-color: var(--hni-gold);
  transform: translateY(-2px);
}
.hni-provider-logo img {
  height: 30px; width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* SVG logos inherit colour, webp/png keep colour but desaturate */
.hni-provider-logo img[src$=".svg"] {
  filter: brightness(0) invert(1);
  opacity: .85;
}
.hni-provider-logo img[src$=".webp"],
.hni-provider-logo img[src$=".png"] {
  filter: grayscale(1) brightness(1.6);
}
.hni-providers-marquee:hover .hni-provider-logo:hover img {
  filter: none !important;
}

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

/* ── Reviews slider ── */
[data-reviews-slider] { position: relative; overflow: hidden; }
.hni-reviews-track { display: flex; gap: 20px; transition: transform .4s ease; }
.hni-review-card {
  flex: 0 0 340px;
  background: var(--hni-surface-2);
  border: 1px solid var(--hni-border);
  border-radius: var(--hni-radius);
  padding: 26px 24px 22px;
  position: relative;
}
.hni-review-card::before {
  content: '"';
  position: absolute; top: 14px; left: 20px;
  font-size: 64px; line-height: .8;
  font-family: 'Playfair Display', serif;
  color: var(--hni-gold);
  opacity: .25;
}
.hni-review-card__header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 4px; padding-left: 0;
}
.hni-review-card__header h4 { font-size: 15px; font-weight: 700; }
.hni-review-card__stars { color: var(--hni-gold); font-size: 13px; letter-spacing: 2px; }
.hni-review-card__meta { font-size: 12px; color: var(--hni-text-muted); margin-bottom: 14px; }
.hni-review-card p { font-size: 14px; color: var(--hni-text-muted); line-height: 1.7; font-style: italic; position: relative; z-index: 1; }
.hni-slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 22px;
}
.hni-slider-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--hni-surface-2); border: 1px solid var(--hni-border);
  color: var(--hni-text); cursor: pointer; font-size: 16px;
  transition: all .2s;
}
.hni-slider-btn:hover { border-color: var(--hni-gold); color: var(--hni-gold); }
.hni-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hni-border); border: none; cursor: pointer; padding: 0;
  transition: all .2s;
}
.hni-slider-dot.is-active { background: var(--hni-gold); width: 24px; border-radius: 4px; }
@media (max-width: 767px) {
  .hni-review-card { flex: 0 0 calc(100vw - 48px); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hni-review-card { flex: 0 0 calc(50% - 10px); }
}

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

/* ── Footer testimonials ── */
.hni-testimonials {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--hni-border);
  border-bottom: 1px solid var(--hni-border);
  margin-bottom: 44px;
}
.hni-testimonials a {
  display: flex; align-items: center; justify-content: center;
  opacity: .45; transition: opacity .2s;
  height: 28px;
}
.hni-testimonials a:hover { opacity: 1; }
.hni-testimonials img { height: 22px; width: auto; }

/* ── Footer ── */
.hni-footer { background: var(--hni-surface); padding: 52px 0 24px; }
.hni-footer__top {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-bottom: 44px;
}
.hni-footer__col { flex: 1 1 180px; }
.hni-footer__col--wide { flex: 1 1 280px; }
.hni-footer__logo { height: 36px; margin-bottom: 16px; }
.hni-footer__desc { font-size: 13px; color: var(--hni-text-muted); line-height: 1.7; }
.hni-footer__heading {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--hni-gold);
  margin-bottom: 14px;
}
.hni-footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.hni-footer__links a { font-size: 14px; color: var(--hni-text-muted); transition: color .2s; }
.hni-footer__links a:hover { color: var(--hni-text); }
.hni-footer__bottom {
  border-top: 1px solid var(--hni-border);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between; align-items: flex-start;
}
.hni-footer__copy { font-size: 13px; color: var(--hni-text-muted); }
.hni-footer__disclaimer {
  font-size: 12px; color: rgba(125,131,160,.7);
  line-height: 1.65; width: 100%; margin-top: 10px;
}
.hni-footer__disclaimer a { color: var(--hni-primary); }

/* ── Page hero (inner pages) ── */
.hni-page-hero {
  position: relative; overflow: hidden;
  min-height: 260px;
  display: flex; align-items: center;
  background: var(--hni-surface);
  border-bottom: 1px solid var(--hni-border);
}
.hni-page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 400px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, var(--hni-gold-light) 100%);
  pointer-events: none;
}
.hni-page-hero > .hni-wrap {
  position: relative; z-index: 1;
  padding-top: 52px; padding-bottom: 52px;
  width: 100%;
}
.hni-page-hero__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--hni-gold);
  margin-bottom: 10px;
}
.hni-page-hero__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 12px;
  max-width: 640px;
}
.hni-page-hero__sub {
  font-size: 16px; color: var(--hni-text-muted);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 24px;
}

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

/* ── CTA section ── */
.hni-cta-section {
  text-align: center; padding: 72px 20px;
  position: relative;
}
.hni-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(198,154,40,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hni-cta-section__title {
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 700;
  margin-bottom: 14px;
}
.hni-cta-section__sub { font-size: 16px; color: var(--hni-text-muted); margin-bottom: 32px; }
.hni-cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Breadcrumb ── */
.hni-breadcrumb { font-size: 13px; color: var(--hni-text-muted); margin-bottom: 10px; }
.hni-breadcrumb a { color: var(--hni-text-muted); }
.hni-breadcrumb a:hover { color: var(--hni-gold); }
.hni-breadcrumb span { margin: 0 6px; opacity: .5; }

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

/* ── Stat bar (hero) ── */
.hni-stat-bar {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--hni-border);
  border-radius: var(--hni-radius);
  overflow: hidden;
  margin-bottom: 36px;
}
.hni-stat-bar__item {
  flex: 1 1 140px;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--hni-border);
  background: rgba(28,31,48,.6);
}
.hni-stat-bar__item:last-child { border-right: none; }
.hni-stat-bar__val {
  font-size: 22px; font-weight: 800;
  color: var(--hni-gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.1; margin-bottom: 4px;
}
.hni-stat-bar__label { font-size: 11px; color: var(--hni-text-muted); text-transform: uppercase; letter-spacing: .07em; }

/* ── Hero ── */
/* ── Hero banner bg + character ── */
.hni-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  pointer-events: none; z-index: 0;
  opacity: 0.28;
}
.hni-hero__char {
  position: absolute; right: max(20px, calc((100% - 1160px) / 2));
  bottom: 0; height: 88%; width: auto;
  pointer-events: none; z-index: 0;
  mix-blend-mode: screen;
}
.hni-hero > .hni-wrap { position: relative; z-index: 1; }
.hni-page-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none; z-index: 0;
  opacity: 0.22;
}
.hni-page-hero__char {
  position: absolute; right: max(20px, calc((100% - 1160px) / 2));
  bottom: 0; height: 100%; width: auto;
  pointer-events: none; z-index: 0;
  mix-blend-mode: screen;
}
@media (max-width: 768px) {
  .hni-hero__char, .hni-page-hero__char { display: none; }
  .hni-hero__bg, .hni-page-hero__bg { opacity: 0.18; }
}

.hni-hero {
  padding: 88px 0 72px;
  background: linear-gradient(145deg, var(--hni-surface) 0%, var(--hni-bg) 60%);
  border-bottom: 1px solid var(--hni-border);
  position: relative;
  overflow: hidden;
}
.hni-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,154,40,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hni-hero__h1 {
  font-size: clamp(30px, 4.8vw, 56px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px;
  max-width: 720px;
}
.hni-hero__h1 em { font-style: normal; color: var(--hni-gold); }
.hni-hero__sub {
  font-size: 17px; line-height: 1.6;
  color: var(--hni-text-muted); max-width: 580px;
  margin-bottom: 36px;
}
.hni-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* ── Mobile section ── */
.hni-mobile-section {
  display: flex; flex-wrap: wrap; gap: 40px; align-items: center;
}
.hni-mobile-section__text { flex: 1 1 300px; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hni-nav { display: none; }
  .hni-burger { display: flex; }
  .hni-head__actions .hni-btn--ghost { display: none; }
}
@media (max-width: 768px) {
  .hni-section { padding: 48px 0; }
  .hni-hero { padding: 56px 0 48px; }
  .hni-grid--3 > *, .hni-grid--2 > * { flex: 1 1 100%; }
  .hni-package { flex: 1 1 100%; }
  .hni-package__head { flex-wrap: wrap; }
  .hni-package__total { margin-left: 0; }
  .hni-footer__top { flex-direction: column; gap: 24px; }
  .hni-stat-bar { flex-direction: column; }
  .hni-stat-bar__item { border-right: none; border-bottom: 1px solid var(--hni-border); }
  .hni-stat-bar__item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .hni-wager-grid { flex-direction: column; }
  .hni-wager-card { flex: none; }
}
