@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');
:root {
  --bg-main: #0A0A0A;
  --bg-card: #151515;
  --bg-alt: #111111;
  --accent: #E00B5B;
  --accent-2: #FFD700;
  --text-main: #F3F3F3;
  --text-muted: #999999;
  --border: rgba(224,11,91,0.25);
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-pill: 50px;
  --maxw: 1200px;
  --glow-gold: 0 0 20px rgba(255,215,0,0.55);
  --glow-pink: 0 0 22px rgba(224,11,91,0.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--accent-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
img { max-width: 100%; }
ul, ol { padding-left: 1.3rem; }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.nvc-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.2rem);
}

section { padding-block: clamp(2.8rem, 7vw, 5rem); }
section.nvc-tight { padding-block: clamp(1.6rem, 4vw, 2.6rem); }

.nvc-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.nvc-section-head { max-width: 720px; margin-bottom: 2.4rem; }
.nvc-section-head p { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.nvc-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .2s;
  line-height: 1;
}
.nvc-btn--primary {
  background: var(--accent-2);
  color: #0A0A0A;
}
.nvc-btn--primary:hover {
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}
.nvc-btn--pink {
  background: var(--accent);
  color: #fff;
}
.nvc-btn--pink:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--glow-pink); }
.nvc-btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
}
.nvc-btn--ghost:hover { color: var(--text-main); border-color: var(--accent); }
.nvc-btn--lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }

/* ---------- Icons ---------- */
.nvc-icon {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.nvc-icon--lg { width: 2.4em; height: 2.4em; }

/* ---------- Header ---------- */
.nvc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nvc-header__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 70px;
}
.nvc-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nvc-logo__img { height: 40px; width: auto; display: block; }
.nvc-logo__mark {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-main);
}
.nvc-logo__mark b { color: var(--accent); }

.nvc-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.nvc-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-main);
  padding: .5rem .85rem;
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.nvc-nav a:hover, .nvc-nav a[aria-current="page"] {
  background: var(--accent);
  color: #fff;
}
.nvc-header__cta { margin-left: .4rem; }

.nvc-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nvc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text-main);
  transition: transform .25s, opacity .25s;
}
.nvc-header.is-open .nvc-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nvc-header.is-open .nvc-burger span:nth-child(2) { opacity: 0; }
.nvc-header.is-open .nvc-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.nvc-hero {
  background: linear-gradient(120deg, #1a0030 0%, #0A0A0A 70%);
  position: relative;
  overflow: hidden;
}
.nvc-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(224,11,91,0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.nvc-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.nvc-hero__grid > * { min-width: 0; }
.nvc-hero h1 { text-align: left; }
.nvc-hero h1 span { color: var(--accent-2); }
.nvc-hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.nvc-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.nvc-hero__visual {
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a0040, #120020);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 60px rgba(224,11,91,0.3), var(--glow-pink);
}
.nvc-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--glow-pink);
}

/* ---------- TOC / pill nav ---------- */
.nvc-toc { display: flex; flex-wrap: wrap; gap: .6rem; }
.nvc-toc a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--text-main);
  background: #222;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.nvc-toc a:hover { background: var(--accent); color: #fff; }

/* ---------- Categories bar ---------- */
.nvc-categories { display: flex; flex-wrap: wrap; gap: .55rem; }
.nvc-categories span,
.nvc-categories a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: .4rem .95rem;
  border-radius: var(--radius-pill);
}

/* ---------- Stats bar ---------- */
.nvc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 1rem;
}
.nvc-stat {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.nvc-stat__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--accent-2);
  line-height: 1;
}
.nvc-stat__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .5rem;
}

/* ---------- Overview ---------- */
.nvc-overview { max-width: 820px; }
.nvc-overview p { color: #d8d8d8; }

/* ---------- Feature / cards grids ---------- */
.nvc-feature-cards,
.nvc-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.2rem;
}
.nvc-card {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .2s, border-color .2s, box-shadow .25s;
}
.nvc-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--glow-pink);
}
.nvc-card__icon {
  color: var(--accent);
  margin-bottom: .9rem;
  display: inline-flex;
}
.nvc-card h3 { margin-bottom: .4rem; }
.nvc-card p { color: var(--text-muted); margin: 0; font-size: .96rem; }

/* ---------- Tables ---------- */
.nvc-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.nvc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 520px;
}
.nvc-table thead th {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: left;
  padding: .9rem 1rem;
  white-space: nowrap;
}
.nvc-table td {
  padding: .85rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow-wrap: anywhere;
}
.nvc-table tbody tr:nth-child(odd) { background: #111111; }
.nvc-table tbody tr:nth-child(even) { background: #1A1A1A; }

/* ---------- Two cols ---------- */
.nvc-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.nvc-two-cols > * { min-width: 0; }
.nvc-two-cols__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a0040, #120020);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 40px rgba(224,11,91,0.25);
}

/* ---------- Numbered list ---------- */
.nvc-numbered { list-style: none; counter-reset: nvc-step; padding: 0; }
.nvc-numbered li {
  counter-increment: nvc-step;
  position: relative;
  padding: 0 0 1.4rem 3.4rem;
  min-height: 2.4rem;
}
.nvc-numbered li::before {
  content: counter(nvc-step);
  position: absolute;
  left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 900;
  color: #0A0A0A;
  background: var(--accent-2);
  border-radius: var(--radius);
  box-shadow: var(--glow-gold);
}
.nvc-numbered li strong { color: var(--text-main); }

/* ---------- FAQ ---------- */
.nvc-faq { max-width: 820px; }
.nvc-faq details { border-bottom: 1px solid var(--border); }
.nvc-faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: baseline;
}
.nvc-faq summary::-webkit-details-marker { display: none; }
.nvc-faq summary::before {
  content: '+';
  margin-right: .7rem;
  color: var(--accent);
  font-weight: 800;
  transition: transform .2s;
}
.nvc-faq details[open] summary::before { content: '−'; }
.nvc-faq details > :not(summary) { padding: .25rem 0 1.1rem 1.4rem; color: var(--text-muted); }

/* ---------- CTA block ---------- */
.nvc-cta-block {
  background: linear-gradient(120deg, #1a0030, #0A0A0A);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nvc-cta-block::before {
  content: "";
  position: absolute;
  inset: -50% 30% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,215,0,0.18), transparent 65%);
  filter: blur(40px);
}
.nvc-cta-block > * { position: relative; z-index: 1; }
.nvc-cta-block p { color: var(--text-muted); max-width: 56ch; margin-inline: auto; }

/* ---------- Page header / breadcrumb ---------- */
.nvc-page-header {
  background: linear-gradient(120deg, #160026, #0A0A0A);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
}
.nvc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
  list-style: none;
  padding: 0;
}
.nvc-breadcrumb li { display: flex; gap: .4rem; align-items: center; }
.nvc-breadcrumb li:not(:last-child)::after { content: '/'; color: var(--accent); }
.nvc-breadcrumb a { color: var(--text-muted); }
.nvc-breadcrumb a:hover { color: var(--accent-2); }

/* ---------- Legal body ---------- */
.nvc-legal { max-width: 820px; counter-reset: nvc-legal; }
.nvc-legal h2 {
  counter-increment: nvc-legal;
  font-size: 1.35rem;
  margin-top: 2.2rem;
  display: flex;
  gap: .6rem;
}
.nvc-legal h2::before {
  content: counter(nvc-legal) '.';
  color: var(--accent);
}
.nvc-legal p, .nvc-legal li { color: var(--text-muted); }

/* ---------- RTP grid (slot tiles) ---------- */
.nvc-rtp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 1rem;
}
.nvc-rtp-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a0040, #120020);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 30px rgba(224,11,91,0.3);
  display: grid;
  place-items: center;
  text-align: center;
  padding: .6rem;
  overflow: hidden;
}
.nvc-rtp-item__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .92rem;
}
.nvc-rtp-tooltip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(224,11,91,0.92);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem;
  opacity: 0;
  transition: opacity .2s;
}
.nvc-rtp-item:hover .nvc-rtp-tooltip,
.nvc-rtp-item:focus-within .nvc-rtp-tooltip { opacity: 1; }

/* ---------- Payments table ---------- */
.nvc-payments td:first-child { white-space: nowrap; }
.nvc-payments .nvc-pay__name { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.nvc-payments .nvc-icon { color: var(--accent-2); }

/* ---------- Sticky bottom nav (mobile) ---------- */
.nvc-sticky-nav { display: none; }

/* ---------- Chat widget ---------- */
.nvc-chat-btn {
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--glow-pink);
}

/* ---------- Footer ---------- */
.nvc-footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding-block: 3rem 1.5rem;
  font-size: .92rem;
}
.nvc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
.nvc-footer__grid > * { min-width: 0; }
.nvc-footer__brand .nvc-logo__img { margin-bottom: 1rem; }
.nvc-footer__brand p { color: var(--text-muted); font-size: .88rem; }
.nvc-footer h3 {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.nvc-footer ul { list-style: none; padding: 0; margin: 0; }
.nvc-footer li { margin-bottom: .55rem; }
.nvc-footer__col a { color: var(--text-muted); font-weight: 500; }
.nvc-footer__col a:hover { color: var(--accent-2); }
.nvc-footer__disclaimer {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.6;
}
.nvc-footer__age {
  display: inline-grid;
  place-items: center;
  width: 2.1rem; height: 2.1rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .8rem;
  margin-right: .6rem;
  vertical-align: middle;
}
.nvc-footer__copy {
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-size: .8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nvc-hero__grid { grid-template-columns: 1fr; }
  .nvc-hero__visual, .nvc-hero__img { order: -1; }
  .nvc-two-cols { grid-template-columns: 1fr; }
  .nvc-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nvc-burger { display: flex; }
  .nvc-header__cta { display: none; }
  .nvc-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: .8rem clamp(1rem, 4vw, 2.2rem) 1.2rem;
  }
  .nvc-header.is-open { position: relative; }
  .nvc-header.is-open .nvc-nav { display: flex; }
  .nvc-nav a { width: 100%; border-radius: var(--radius); padding: .85rem 1rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nvc-footer__grid { grid-template-columns: 1fr; }
}
/* sa-responsive-net */
table th{white-space:nowrap}
