@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Inter:wght@400;500;600&display=swap');
:root {
  --bg-main: #0A0A0A;
  --bg-card: #151515;
  --accent: #E00B5B;
  --accent-2: #FFD700;
  --text-main: #F3F3F3;
  --text-muted: #999999;
  --border: rgba(224,11,91,0.25);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-pill: 50px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { overflow-wrap: anywhere; }

/* ── Container ── */
.nvc-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Buttons ── */
.nvc-btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}

.nvc-btn-primary {
  background: var(--accent-2);
  color: #000;
}
.nvc-btn-primary:hover {
  box-shadow: 0 0 22px #FFD700, 0 0 6px #FFD700;
  transform: translateY(-2px);
  text-decoration: none;
}

.nvc-btn-accent {
  background: var(--accent);
  color: #fff;
}
.nvc-btn-accent:hover {
  box-shadow: 0 0 22px var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.nvc-btn-outline {
  background: transparent;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
}
.nvc-btn-outline:hover {
  background: var(--accent-2);
  color: #000;
  text-decoration: none;
}

/* ── Header ── */
.nvc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nvc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}

.nvc-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
  letter-spacing: -.5px;
  text-decoration: none;
  flex-shrink: 0;
}
.nvc-logo span { color: var(--accent); }

.nvc-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}

.nvc-nav a {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nvc-nav a:hover,
.nvc-nav a[aria-current="page"] {
  color: var(--text-main);
  background: rgba(224,11,91,.15);
}

.nvc-header-cta { flex-shrink: 0; }

.nvc-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nvc-burger span {
  display: block;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nvc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nvc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nvc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ── */
.nvc-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 57px;
  background: rgba(10,10,10,.98);
  z-index: 999;
  padding: 2rem 1.25rem;
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
}
.nvc-mobile-nav.is-open { display: flex; }
.nvc-mobile-nav a {
  color: var(--text-main);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.nvc-mobile-nav a:hover { background: rgba(224,11,91,.2); border-color: var(--accent); }
.nvc-mobile-nav .nvc-btn { width: 100%; text-align: center; margin-top: .5rem; }

/* ── Footer ── */
.nvc-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.nvc-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3rem;
}

.nvc-footer-brand .nvc-logo { font-size: 1.3rem; margin-bottom: .75rem; }
.nvc-footer-brand p { color: var(--text-muted); font-size: .875rem; line-height: 1.6; max-width: 280px; }

.nvc-footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.nvc-footer-col ul { list-style: none; }
.nvc-footer-col ul li { margin-bottom: .5rem; }
.nvc-footer-col ul li a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color .2s;
  text-decoration: none;
}
.nvc-footer-col ul li a:hover { color: var(--text-main); }

.nvc-footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.nvc-footer-disclaimer p {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.5;
  max-width: 900px;
}
.nvc-footer-disclaimer .nvc-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .75rem;
  color: var(--accent);
  flex-shrink: 0;
}
.nvc-footer-disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.nvc-footer-copy {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nvc-footer-copy p { color: var(--text-muted); font-size: .8rem; }
.nvc-footer-copy a { color: var(--text-muted); font-size: .8rem; }
.nvc-footer-copy a:hover { color: var(--accent-2); }

/* ── Hero ── */
.nvc-hero {
  background: linear-gradient(135deg, #1a0030 0%, #0A0A0A 60%);
  padding-block: 5rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nvc-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-width: 0;
}
.nvc-hero-text { flex: 1 1 55%; min-width: 0; }
.nvc-hero-text h1 { margin-bottom: 1rem; }
.nvc-hero-text h1 em { font-style: normal; color: var(--accent-2); }
.nvc-hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.nvc-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.nvc-hero-visual {
  flex: 0 0 340px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a0030 0%, #2d003f 40%, #0d001a 100%);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(224,11,91,.2), inset 0 0 60px rgba(224,11,91,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: rgba(255,255,255,.15);
  text-align: center;
}

/* ── TOC / Pill Nav ── */
.nvc-toc { padding-block: 2rem; border-bottom: 1px solid var(--border); }
.nvc-toc-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.nvc-toc-label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-right: .5rem;
}
.nvc-toc a {
  display: inline-block;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: #222;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.nvc-toc a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(224,11,91,.4);
}

/* ── Stats Bar ── */
.nvc-stats-bar { padding-block: 2.5rem; border-bottom: 1px solid var(--border); }
.nvc-stats-bar-inner {
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
  flex-wrap: wrap;
  min-width: 0;
}
.nvc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .25rem;
  flex: 1 1 150px;
  min-width: 0;
}
.nvc-stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent-2);
  line-height: 1;
}
.nvc-stat-label {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── Overview ── */
.nvc-overview { padding-block: 3.5rem; }
.nvc-overview-inner { max-width: 720px; margin-inline: auto; }
.nvc-overview-inner h2 { margin-bottom: 1rem; }
.nvc-overview-inner p { color: var(--text-muted); margin-bottom: 1rem; }
.nvc-overview-inner p:last-child { margin-bottom: 0; }

/* ── Feature Cards ── */
.nvc-feature-cards { padding-block: 3.5rem; }
.nvc-feature-cards h2 { text-align: center; margin-bottom: 2rem; }
.nvc-feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  min-width: 0;
}
.nvc-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
  min-width: 0;
}
.nvc-feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(224,11,91,.15);
}
.nvc-feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #8b0037);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.nvc-feature-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.nvc-feature-card p { color: var(--text-muted); font-size: .875rem; }

/* ── Cards Grid ── */
.nvc-cards-grid { padding-block: 3.5rem; }
.nvc-cards-grid h2 { text-align: center; margin-bottom: 2rem; }
.nvc-cards-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  min-width: 0;
}
.nvc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-width: 0;
}
.nvc-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.nvc-card p { color: var(--text-muted); font-size: .875rem; }
.nvc-card-stars { color: var(--accent-2); font-size: 1rem; margin-bottom: .5rem; }
.nvc-card-author { font-size: .8rem; color: var(--text-muted); margin-top: .75rem; }

/* ── Data Table ── */
.nvc-data-table { padding-block: 3.5rem; }
.nvc-data-table h2 { margin-bottom: 1.5rem; }
.nvc-table-wrap { overflow-x: auto; max-width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.nvc-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.nvc-table-wrap thead { background: var(--accent); }
.nvc-table-wrap thead th {
  padding: .85rem 1rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  white-space: nowrap;
}
.nvc-table-wrap tbody tr:nth-child(odd) { background: #111; }
.nvc-table-wrap tbody tr:nth-child(even) { background: #1a1a1a; }
.nvc-table-wrap tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); }
.nvc-table-wrap tbody td {
  padding: .75rem 1rem;
  font-size: .875rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}
.nvc-table-wrap tbody td strong { color: var(--text-main); }
.nvc-table-wrap tbody td .nvc-badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
  background: rgba(224,11,91,.15);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
}

/* ── RTP Grid (Slot Cards) ── */
.nvc-rtp-grid { padding-block: 3.5rem; }
.nvc-rtp-grid h2 { margin-bottom: 1.5rem; }
.nvc-rtp-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  min-width: 0;
}
.nvc-rtp-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a0030 0%, #0d0d20 100%);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 30px rgba(224,11,91,.08);
  overflow: hidden;
  cursor: pointer;
  min-width: 0;
}
.nvc-rtp-item:hover { border-color: var(--accent); box-shadow: 0 0 18px rgba(224,11,91,.3); }
.nvc-rtp-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .5rem .75rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  color: var(--text-main);
}
.nvc-rtp-tooltip {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .25rem;
  opacity: 0;
  transition: opacity .2s;
  padding: .75rem;
  text-align: center;
}
.nvc-rtp-item:hover .nvc-rtp-tooltip { opacity: 1; }
.nvc-rtp-tooltip strong { color: var(--accent-2); font-size: .9rem; font-family: var(--font-head); }
.nvc-rtp-tooltip span { color: var(--text-muted); font-size: .75rem; }

/* ── Payments Table (alias of data-table with extra) ── */
.nvc-payments-table { padding-block: 3.5rem; }
.nvc-payments-table h2 { margin-bottom: 1.5rem; }
.nvc-payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #222;
  font-size: 1rem;
  vertical-align: middle;
  margin-right: .4rem;
}

/* ── Two Cols ── */
.nvc-two-cols { padding-block: 3.5rem; }
.nvc-two-cols h2 { margin-bottom: 1.5rem; }
.nvc-two-cols-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  min-width: 0;
}
.nvc-two-cols-inner > * { min-width: 0; }
.nvc-two-cols-text h3 { margin-bottom: .75rem; }
.nvc-two-cols-text p { color: var(--text-muted); margin-bottom: .75rem; }
.nvc-two-cols-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a0030 0%, #151515 100%);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 40px rgba(224,11,91,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.1);
  font-family: var(--font-head);
  font-size: .9rem;
}

/* ── Numbered List ── */
.nvc-numbered-list { padding-block: 3.5rem; }
.nvc-numbered-list h2 { margin-bottom: 1.5rem; }
.nvc-numbered-list ol {
  list-style: none;
  counter-reset: nvc-steps;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nvc-numbered-list ol li {
  counter-increment: nvc-steps;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-width: 0;
}
.nvc-numbered-list ol li::before {
  content: counter(nvc-steps);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nvc-numbered-list ol li > div { min-width: 0; }
.nvc-numbered-list ol li h4 { font-size: 1rem; margin-bottom: .3rem; }
.nvc-numbered-list ol li p { color: var(--text-muted); font-size: .875rem; }

/* ── Categories Bar ── */
.nvc-categories-bar { padding-block: 2rem; }
.nvc-categories-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  min-width: 0;
}
.nvc-category-pill {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  background: #1a1a1a;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.nvc-category-pill:hover, .nvc-category-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Page Header (inner pages) ── */
.nvc-page-header {
  padding-block: 3rem 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0f0f0f 0%, var(--bg-main) 100%);
}
.nvc-page-header h1 { margin-bottom: .75rem; }
.nvc-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
.nvc-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.nvc-breadcrumb a:hover { color: var(--accent-2); }
.nvc-breadcrumb-sep { color: var(--border); }
.nvc-breadcrumb-current { color: var(--text-muted); }

/* ── Legal Body ── */
.nvc-legal-body { padding-block: 3rem; }
.nvc-legal-body-inner {
  max-width: 780px;
  margin-inline: auto;
  counter-reset: nvc-legal;
}
.nvc-legal-section { margin-bottom: 2.5rem; counter-increment: nvc-legal; }
.nvc-legal-section h3::before {
  content: counter(nvc-legal) ". ";
  color: var(--accent);
}
.nvc-legal-section h3 {
  margin-bottom: .85rem;
  font-size: 1.2rem;
  color: var(--text-main);
}
.nvc-legal-section p { color: var(--text-muted); margin-bottom: .75rem; }
.nvc-legal-section p:last-child { margin-bottom: 0; }
.nvc-legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.nvc-legal-section ul li { color: var(--text-muted); padding-left: 1.25rem; position: relative; font-size: .9rem; }
.nvc-legal-section ul li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

/* ── FAQ ── */
.nvc-faq { padding-block: 3.5rem; }
.nvc-faq h2 { margin-bottom: 1.5rem; }
.nvc-faq-inner { max-width: 780px; }
.nvc-faq details { border-bottom: 1px solid var(--border); }
.nvc-faq details:first-of-type { border-top: 1px solid var(--border); }
.nvc-faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-main);
  user-select: none;
}
.nvc-faq summary::-webkit-details-marker { display: none; }
.nvc-faq summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(224,11,91,.2);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.nvc-faq details[open] summary::before {
  content: '−';
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}
.nvc-faq details > :not(summary) {
  padding: .5rem 0 1.25rem 2rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── CTA Block ── */
.nvc-cta-block {
  padding-block: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #0f0020 0%, #0A0A0A 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-block: 2rem;
}
.nvc-cta-block h2 { margin-bottom: .75rem; }
.nvc-cta-block p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.nvc-cta-block .nvc-cta-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Sticky Mobile Nav ── */
.nvc-sticky-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: rgba(15,15,15,.97);
  border-top: 1px solid var(--border);
  padding: .5rem;
}
@media (max-width: 767px) {
  .nvc-sticky-nav { display: flex; justify-content: space-around; align-items: center; }
}
.nvc-sticky-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 600;
  text-decoration: none;
  padding: .35rem .5rem;
  transition: color .2s;
}
.nvc-sticky-nav a:hover, .nvc-sticky-nav a.is-active { color: var(--accent); }
.nvc-sticky-nav-icon { font-size: 1.3rem; }

/* ── Chat Widget ── */
.nvc-chat-widget-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 980;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(224,11,91,.5);
  transition: transform .2s, box-shadow .2s;
}
.nvc-chat-widget-btn:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(224,11,91,.7); }
.nvc-chat-widget-overlay {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 981;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 40px rgba(0,0,0,.6);
  display: none;
}
.nvc-chat-widget-overlay.is-open { display: block; }
.nvc-chat-widget-overlay h4 { margin-bottom: .5rem; }
.nvc-chat-widget-overlay p { color: var(--text-muted); font-size: .875rem; margin-bottom: 1rem; }

/* ── Back to Top ── */
.nvc-back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 970;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(224,11,91,.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 0 12px rgba(224,11,91,.4);
}
.nvc-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.nvc-back-top:hover { transform: translateY(-3px); }

/* ── Section separators ── */
.nvc-section-sep {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Utility ── */
.nvc-text-accent { color: var(--accent); }
.nvc-text-gold { color: var(--accent-2); }
.nvc-text-muted { color: var(--text-muted); }
.nvc-mt-1 { margin-top: 1rem; }
.nvc-mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .nvc-feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .nvc-cards-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .nvc-rtp-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .nvc-footer-top { grid-template-columns: 1fr 1fr; }
  .nvc-hero-visual { flex: 0 0 280px; }
}

@media (max-width: 768px) {
  .nvc-nav, .nvc-header-cta { display: none; }
  .nvc-burger { display: flex; }
  .nvc-two-cols-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nvc-hero-inner { flex-direction: column; }
  .nvc-hero-visual { flex: 0 0 auto; width: 100%; max-width: 400px; }
  .nvc-stats-bar-inner { gap: 1rem; }
}

@media (max-width: 620px) {
  .nvc-feature-cards-grid { grid-template-columns: 1fr; }
  .nvc-cards-grid-inner { grid-template-columns: 1fr; }
  .nvc-rtp-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .nvc-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .nvc-footer-brand p { max-width: 100%; }
  .nvc-cta-block h2 { font-size: 1.5rem; }
}

@media (max-width: 360px) {
  .nvc-rtp-grid-inner { grid-template-columns: 1fr; }
  .nvc-stat-value { font-size: 1.4rem; }
  .nvc-hero-text h1 { font-size: 1.6rem; }
}