@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/* NV Casino – Neon Dark v1.0 */

:root {
  --bg-deep:        #0B0B1A;
  --bg-mid:         #120F2E;
  --bg-light:       #1A1445;
  --cta-start:      #FF2D7A;
  --cta-end:        #FF6A9F;
  --purple:         #6C3BFF;
  --purple-light:   #7B61FF;
  --neon-start:     #00CFFF;
  --gold:           #FFC107;
  --gold-light:     #FFD54F;
  --white:          #FFFFFF;
  --text-secondary: #B0B3C7;
  --text-muted:     #8A8FA3;
  --card-bg:        #1C1F3A;
  --card-bg-alt:    #23264A;
  --card-hover:     #2E3270;
  --border:         rgba(255,255,255,0.08);
  --header-h:       70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: 'Poppins', Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(108,59,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 60%, rgba(255,45,122,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 45% 30% at 50% 85%, rgba(0,207,255,0.10) 0%, transparent 70%);
}

/* ── Skip link ─────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  top: 8px; left: 8px;
  width: auto; height: auto;
  padding: 8px 16px;
  background: var(--cta-start);
  color: #fff;
  border-radius: 8px;
  z-index: 9999;
  clip: auto;
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.is-pinned {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { width: 42px; height: 42px; display: block; }
.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--neon-start), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-register,
.btn-login,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-register,
.btn-cta {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 18px rgba(255,45,122,0.35);
}
.btn-register:hover,
.btn-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,45,122,0.5);
}
.btn-login {
  background: transparent;
  color: var(--purple-light);
  border: 1.5px solid var(--purple-light);
}
.btn-login:hover {
  background: rgba(123,97,255,0.12);
  color: var(--white);
}

/* ── Breadcrumbs ────────────────────────────────────── */
.breadcrumbs {
  max-width: 1200px;
  margin: 0.75rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--neon-start); }
.breadcrumbs .current { color: var(--cta-start); }
.breadcrumbs span { margin: 0 0.35rem; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,45,122,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 1.75rem;
}
.btn-cta {
  font-size: 1rem;
  padding: 0.75rem 2.2rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(255,45,122,0.45);
}

/* ── Container ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

/* ── Content card ───────────────────────────────────── */
.content-card {
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--card-bg-alt) 100%);
  border-radius: 18px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta-start), var(--purple), var(--neon-start));
}

/* ── Prose typography ───────────────────────────────── */
.prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--cta-start), var(--neon-start)) 1;
  line-height: 1.3;
}
.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neon-start);
  margin: 1.5rem 0 0.5rem;
}
.prose p {
  margin-bottom: 0.9rem;
  color: var(--text-secondary);
}
.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
}
.prose li {
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}
.prose a {
  color: var(--neon-start);
  text-decoration: none;
}
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--white); font-weight: 600; }

/* ── Bonus app banner ───────────────────────────────── */
.app-bonus {
  background: linear-gradient(135deg, rgba(255,193,7,0.08) 0%, rgba(255,45,122,0.06) 100%);
  border: 1.5px solid rgba(255,193,7,0.35);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.app-bonus .bonus-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.app-bonus strong { color: var(--gold); }

/* ── Feature grid ───────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  align-items: start;
  grid-auto-rows: min-content;
}
.feature-card {
  background: linear-gradient(135deg, rgba(108,59,255,0.12) 0%, rgba(0,207,255,0.05) 100%);
  border: 1px solid rgba(0,207,255,0.18);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
  align-self: start;
  height: auto;
  min-height: 0;
}
.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(0,207,255,0.22);
}
.feature-card .fc-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.35rem;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Widget panels ──────────────────────────────────── */
.widget-panel {
  background: linear-gradient(135deg, rgba(28,31,58,0.95) 0%, rgba(35,38,74,0.95) 100%);
  border: 1.5px solid rgba(108,59,255,0.4);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.widget-panel h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1.25rem;
  padding-left: 0;
  border-left: none;
  border-image: none;
}

/* Bonus calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.calc-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.calc-val {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--neon-start);
  margin-left: 0.5rem;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(108,59,255,0.25);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-start), var(--purple));
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255,45,122,0.5);
}
.calc-result {
  background: rgba(0,207,255,0.06);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--white);
}
.calc-result strong { color: var(--gold); font-size: 1.2rem; }
.calc-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Slots lobby */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.slot-card {
  background: rgba(11,11,26,0.7);
  border: 1px solid rgba(108,59,255,0.25);
  border-radius: 12px;
  padding: 1.1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.slot-card:hover {
  border-color: var(--neon-start);
  transform: translateY(-2px);
}
.slot-card .slot-emoji { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.slot-card .slot-name { font-size: 0.78rem; font-weight: 600; color: var(--white); display: block; margin-bottom: 0.2rem; }
.slot-card .slot-provider { font-size: 0.7rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.slot-card .slot-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--neon-start));
  color: white;
  padding: 2px 7px;
  border-radius: 6px;
  display: inline-block;
}
.lobby-cta {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.88rem;
}
.lobby-cta a { color: var(--neon-start); }
.widget-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 0.7rem;
}

/* Quiz */
.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(11,11,26,0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.quiz-option:hover { border-color: var(--purple-light); background: rgba(108,59,255,0.08); }
.quiz-option input[type="radio"] { accent-color: var(--purple-light); flex-shrink: 0; }
.btn-quiz {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-quiz:hover { opacity: 0.85; }
#qo3 { margin-top: 0.75rem; font-size: 0.9rem; color: var(--neon-start); min-height: 1.4em; }

/* Demo roulette */
.roulette-wrap { text-align: center; padding: 1rem 0; }
.roulette-display {
  width: 110px; height: 110px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 3px solid var(--purple);
  background: radial-gradient(circle, rgba(108,59,255,0.2) 0%, rgba(11,11,26,0.9) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 0 20px rgba(108,59,255,0.35);
  transition: transform 0.1s;
}
.btn-spin {
  background: linear-gradient(135deg, var(--purple), var(--neon-start));
  color: white;
  border: none;
  padding: 0.65rem 2rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-spin:hover { opacity: 0.85; }

/* Tables */
.table-wrapper {
  border: 1px solid rgba(108,59,255,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin: 1.25rem 0;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table thead tr {
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.data-table thead th {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  padding: 0.85rem 1rem;
  text-align: left;
}
.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--card-hover); }
.data-table td {
  padding: 0.8rem 1rem;
  color: var(--text-secondary);
  vertical-align: middle;
}
.data-table td b { color: var(--gold); }

/* ── CTA block ──────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, rgba(255,45,122,0.12) 0%, rgba(108,59,255,0.10) 100%);
  border: 1.5px solid rgba(255,45,122,0.3);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-block h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-block p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.cta-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pay-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.pay-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--neon-start); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 120px; }
  body { font-size: 0.875rem; line-height: 1.55; }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .logo { width: 100%; justify-content: center; }
  .header-buttons { width: 100%; gap: 0.5rem; }
  .btn-register, .btn-login {
    flex: 1;
    min-height: 42px;
    font-size: 0.88rem;
    padding: 0.5rem 0.75rem;
  }

  .hero { padding: 2rem 1rem 1.75rem; }
  .hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .hero-lead { font-size: 0.875rem; }

  .content-card { padding: 1.5rem 1.1rem; border-radius: 14px; }

  .prose h2 {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    padding-left: 0.75rem;
    margin-top: 1.5rem;
  }
  .prose h3 { font-size: 0.95rem; }
  .prose p, .prose li { font-size: 0.875rem; }

  .feature-grid { grid-template-columns: 1fr 1fr; }

  .calc-grid { grid-template-columns: 1fr; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); }

  .widget-panel { padding: 1.25rem 1rem; }

  /* Table → card layout */
  .data-table thead { display: none; }
  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table td { display: block; width: 100%; }
  .data-table tr {
    background: rgba(11,11,26,0.5);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  .data-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
  }
  .data-table td:last-child { border-bottom: none; }
  .data-table td::before {
    content: attr(data-label);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin-right: 0.5rem;
  }
  .table-wrapper { border-radius: 0; border: none; box-shadow: none; overflow: visible; }

  .cta-block { padding: 1.75rem 1.1rem; }
  .breadcrumbs { margin-top: 0.5rem; }
}

@media (max-width: 380px) {
  body { font-size: 0.8125rem; }
  .prose h2 { font-size: clamp(0.95rem, 4vw, 1.1rem); }
}
