/* =========================================================
   NorthValeProject — core stylesheet
   Aurora / alpine basecamp visual system
   ========================================================= */

:root {
  --nv-bg: #090b16;
  --nv-bg-soft: #0d1020;
  --nv-panel: #131829;
  --nv-panel-2: #1a2038;
  --nv-line: #2b3152;
  --nv-line-soft: #1e2440;
  --nv-text: #edf0fa;
  --nv-muted: #99a2c2;
  --nv-ice: #6fe3ff;
  --nv-violet: #9b7bff;
  --nv-violet-deep: #6c4ce0;
  --nv-rose: #ff7ec9;
  --nv-amber: #ffb15c;
  --nv-danger: #ff8a8a;

  --nv-grad: linear-gradient(120deg, #6fe3ff 0%, #9b7bff 52%, #ff7ec9 100%);
  --nv-grad-soft: linear-gradient(135deg, rgba(111, 227, 255, .14), rgba(155, 123, 255, .12), rgba(255, 126, 201, .1));
  --nv-grad-text: linear-gradient(120deg, #8fe9ff 0%, #b39bff 55%, #ff9bd7 100%);

  --nv-radius-s: 10px;
  --nv-radius: 16px;
  --nv-radius-l: 24px;

  --nv-shadow: 0 24px 64px rgba(3, 4, 10, .6);
  --nv-shadow-soft: 0 14px 32px rgba(3, 4, 10, .4);
  --nv-glow: 0 0 0 1px rgba(155, 123, 255, .28), 0 18px 48px rgba(111, 227, 255, .14);

  --nv-wrap: 1200px;
  --nv-head: 78px;
  --nv-ease: cubic-bezier(.22, .8, .34, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--nv-bg);
  color: var(--nv-text);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nv_locked { overflow: hidden; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(820px 460px at 10% -8%, rgba(111, 227, 255, .09), transparent 66%),
    radial-gradient(760px 460px at 94% 2%, rgba(255, 126, 201, .09), transparent 64%),
    radial-gradient(960px 640px at 50% 112%, rgba(155, 123, 255, .08), transparent 70%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--nv-ice); text-decoration: none; transition: color .2s var(--nv-ease); }
a:hover { color: #bdf2ff; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  color: #f7f8ff;
}

.nv_h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); font-weight: 700; }
.nv_h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 650; }
.nv_h3 { font-size: clamp(1.1rem, 1.6vw, 1.32rem); font-weight: 600; }
.nv_h4 { font-size: 1.02rem; font-weight: 600; }

.nv_grad_text {
  background: var(--nv-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.nv_container {
  width: 100%;
  max-width: var(--nv-wrap);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.nv_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #cdd6ff;
  background: rgba(155, 123, 255, .1);
  border: 1px solid rgba(155, 123, 255, .32);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.nv_eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--nv-grad);
  box-shadow: 0 0 12px rgba(155, 123, 255, .8);
}

.nv_muted { color: var(--nv-muted); }
.nv_center { text-align: center; }

/* ---------------- Buttons ---------------- */

.nv_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--nv-radius-s);
  border: 1px solid transparent;
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  text-align: center;
  transition: transform .22s var(--nv-ease), box-shadow .22s var(--nv-ease),
              background .22s var(--nv-ease), color .22s var(--nv-ease), border-color .22s var(--nv-ease);
}
.nv_btn:active { transform: translateY(1px) scale(.99); }

.nv_btn_primary {
  background: var(--nv-grad);
  color: #0a0d1c;
  box-shadow: 0 14px 34px rgba(111, 227, 255, .2), 0 14px 34px rgba(255, 126, 201, .14);
}
.nv_btn_primary:hover { color: #0a0d1c; transform: translateY(-3px); box-shadow: 0 20px 46px rgba(155, 123, 255, .32); }

.nv_btn_secondary {
  background: rgba(155, 123, 255, .06);
  border-color: var(--nv-line);
  color: var(--nv-text);
}
.nv_btn_secondary:hover { border-color: rgba(111, 227, 255, .5); color: #fff; transform: translateY(-3px); background: rgba(111, 227, 255, .08); }

.nv_btn_action {
  background: linear-gradient(120deg, #9b7bff, #6c4ce0);
  color: #f8f7ff;
  box-shadow: 0 14px 34px rgba(108, 76, 224, .34);
  width: 100%;
}
.nv_btn_action:hover { transform: translateY(-3px); color: #fff; }
.nv_btn_action:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.nv_btn_auth {
  background: rgba(111, 227, 255, .1);
  border-color: rgba(111, 227, 255, .3);
  color: #a9ecff;
  padding: 10px 18px;
  font-size: .86rem;
}
.nv_btn_auth:hover { background: rgba(111, 227, 255, .18); color: #d8f7ff; }

.nv_btn_ghost {
  background: transparent;
  border-color: var(--nv-line);
  color: var(--nv-muted);
  padding: 11px 20px;
  font-size: .88rem;
}
.nv_btn_ghost:hover { color: var(--nv-text); border-color: rgba(155, 123, 255, .45); }

.nv_full { width: 100%; }

/* ---------------- Header ---------------- */

.nv_header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(9, 11, 22, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nv-line-soft);
}

.nv_header_inner {
  min-height: var(--nv-head);
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
}

.nv_logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--nv-text);
  flex-shrink: 0;
}
.nv_logo:hover { color: #fff; }
.nv_logo img { width: 38px; height: 38px; filter: drop-shadow(0 6px 16px rgba(111, 227, 255, .3)); }

.nv_logo_text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.nv_logo_text span { background: var(--nv-grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nv_nav_list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nv_nav_link {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--nv-muted);
  font-size: .93rem;
  font-weight: 550;
  white-space: nowrap;
}
.nv_nav_link:hover { color: var(--nv-text); background: rgba(155, 123, 255, .08); }
.nv_nav_link.is-active {
  color: #0a0d1c;
  background: var(--nv-grad);
  font-weight: 650;
}

.nv_header_actions { display: flex; align-items: center; gap: 12px; }

.nv_wallet_header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--nv-line);
  background: rgba(26, 32, 56, .8);
  font-size: .85rem;
  font-weight: 650;
}
.nv_wallet_icon {
  font-size: .66rem;
  letter-spacing: .1em;
  color: #cfe0ff;
  background: rgba(111, 227, 255, .14);
  border-radius: 6px;
  padding: 2px 6px;
}
.nv_wallet_balance { color: #fff; font-variant-numeric: tabular-nums; }
.nv_wallet_balance.is-bump { animation: nv-bump .5s var(--nv-ease); }

@keyframes nv-bump {
  0% { transform: scale(1); color: #fff; }
  40% { transform: scale(1.22); color: #bdf2ff; }
  100% { transform: scale(1); color: #fff; }
}

.nv_age_badge {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 138, 138, .5);
  color: #ffb1b1;
  background: rgba(255, 138, 138, .08);
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nv_burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--nv-line);
  background: rgba(26, 32, 56, .8);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nv_burger_line {
  display: block;
  width: 19px; height: 2px;
  margin: 2.6px auto;
  background: var(--nv-text);
  border-radius: 2px;
  transition: transform .28s var(--nv-ease), opacity .2s var(--nv-ease);
}
.nv_burger.is-open .nv_burger_line:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nv_burger.is-open .nv_burger_line:nth-child(2) { opacity: 0; }
.nv_burger.is-open .nv_burger_line:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* ---------------- Age strip + badge rail ---------------- */

.nv_age_strip {
  background: linear-gradient(90deg, rgba(111, 227, 255, .1), rgba(255, 126, 201, .1));
  border-bottom: 1px solid var(--nv-line-soft);
  text-align: center;
}
.nv_age_strip p { margin: 0; padding: 11px 0; font-size: .84rem; color: #c7cdec; letter-spacing: .02em; }

.nv_rail {
  overflow: hidden;
  border-top: 1px solid var(--nv-line-soft);
  border-bottom: 1px solid var(--nv-line-soft);
  background: var(--nv-bg-soft);
  padding: 13px 0;
}
.nv_rail_wrapper { display: flex; width: max-content; animation: nv-marquee 36s linear infinite; }
.nv_rail_content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #a7afd0;
}
.nv_rail_sep { color: var(--nv-rose); }
.nv_rail:hover .nv_rail_wrapper { animation-play-state: paused; }

@keyframes nv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- Hero ---------------- */

.nv_hero { padding: 76px 0 62px; position: relative; overflow: hidden; }
.nv_hero::after {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: linear-gradient(100deg, rgba(111, 227, 255, .1), rgba(155, 123, 255, .12), rgba(255, 126, 201, .1));
  filter: blur(70px);
  background-size: 200% 200%;
  animation: nv-aurora-drift 16s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes nv-aurora-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.nv_hero_container { display: grid; grid-template-columns: 1.02fr 1fr; gap: 54px; align-items: center; }

.nv_hero_sub { font-size: 1.1rem; color: #b3bade; max-width: 52ch; margin-bottom: 30px; }
.nv_hero_actions { display: flex; flex-wrap: wrap; gap: 14px; }

.nv_hero_stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--nv-line-soft);
}
.nv_hero_stat {
  background: rgba(19, 24, 41, .62);
  border: 1px solid var(--nv-line-soft);
  border-radius: var(--nv-radius);
  padding: 14px 16px;
}
.nv_hero_stat strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.28rem; color: #fff; }
.nv_hero_stat span { font-size: .78rem; color: var(--nv-muted); letter-spacing: .04em; }

.nv_hero_frame {
  position: relative;
  border-radius: var(--nv-radius-l);
  padding: 12px;
  background: linear-gradient(160deg, rgba(111, 227, 255, .18), rgba(155, 123, 255, .08) 45%, rgba(13, 16, 32, .3));
  border: 1px solid var(--nv-line);
  box-shadow: var(--nv-shadow);
}
.nv_hero_frame img { border-radius: 18px; }
.nv_hero_tag {
  position: absolute;
  left: 26px;
  bottom: -16px;
  background: var(--nv-panel);
  border: 1px solid rgba(155, 123, 255, .38);
  color: #cdd6ff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--nv-shadow-soft);
}

/* ---------------- Sections ---------------- */

.nv_section { padding: 74px 0; position: relative; }
.nv_section_alt { background: linear-gradient(180deg, rgba(16, 19, 36, 0), rgba(16, 19, 36, .82) 22%, rgba(16, 19, 36, .82) 78%, rgba(16, 19, 36, 0)); }

.nv_section_header { max-width: 720px; margin-bottom: 42px; }
.nv_section_header.nv_center { margin-left: auto; margin-right: auto; }
.nv_section_header p { color: var(--nv-muted); font-size: 1.03rem; margin-bottom: 0; }

/* ---------------- Cards ---------------- */

.nv_grid_two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.nv_grid_three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nv_grid_four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.nv_card {
  position: relative;
  background: linear-gradient(165deg, rgba(26, 32, 56, .92), rgba(13, 16, 32, .95));
  border: 1px solid var(--nv-line-soft);
  border-radius: var(--nv-radius-l);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform .3s var(--nv-ease), border-color .3s var(--nv-ease), box-shadow .3s var(--nv-ease);
}
.nv_card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--nv-grad-soft);
  opacity: 0;
  transition: opacity .3s var(--nv-ease);
  pointer-events: none;
}
.nv_card:hover { transform: translateY(-6px); border-color: rgba(111, 227, 255, .35); box-shadow: var(--nv-glow); }
.nv_card:hover::after { opacity: 1; }
.nv_card > * { position: relative; z-index: 1; }
.nv_card p { color: var(--nv-muted); margin-bottom: 0; }

.nv_card_icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(111, 227, 255, .1);
  border: 1px solid rgba(111, 227, 255, .28);
}
.nv_card_icon svg { width: 26px; height: 26px; }

.nv_card_num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--nv-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------------- Aurora Halo game module ---------------- */

.nv_game_module {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 26px;
  background: linear-gradient(165deg, rgba(26, 32, 56, .9), rgba(11, 13, 26, .96));
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-l);
  padding: 26px;
  box-shadow: var(--nv-shadow);
}

.nv_wheel_board {
  position: relative;
  border-radius: var(--nv-radius);
  background: radial-gradient(120% 90% at 50% 0%, rgba(155, 123, 255, .12), transparent 62%), #0e1224;
  border: 1px solid var(--nv-line-soft);
  padding: 26px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nv_wheel_stage { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1 / 1; }
.nv_wheel_pointer {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 22px solid var(--nv-rose);
  filter: drop-shadow(0 4px 10px rgba(255, 126, 201, .5));
  z-index: 3;
}
.nv_wheel_hub_ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 10px solid #1c2340;
  box-shadow: inset 0 0 0 2px rgba(111, 227, 255, .18), 0 0 40px rgba(111, 227, 255, .1);
  z-index: 1;
  pointer-events: none;
}
.nv_wheel_canvas {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  z-index: 2;
  transform: rotate(0deg);
  will-change: transform;
}
.nv_wheel_hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22%; height: 22%;
  border-radius: 50%;
  background: linear-gradient(160deg, #2a3152, #12162a);
  border: 3px solid #3a4270;
  box-shadow: 0 0 0 6px rgba(9, 11, 22, .9), 0 12px 26px rgba(0, 0, 0, .5);
  z-index: 4;
  display: grid;
  place-items: center;
}
.nv_wheel_hub::after {
  content: '';
  width: 44%; height: 44%;
  border-radius: 50%;
  background: var(--nv-grad);
  opacity: .85;
}

.nv_wheel_legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.nv_legend_chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--nv-muted);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--nv-line-soft);
  background: rgba(19, 24, 41, .7);
}
.nv_legend_dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.nv_legend_dot[data-tier="low"] { background: #4a527a; }
.nv_legend_dot[data-tier="mid"] { background: #6fe3ff; }
.nv_legend_dot[data-tier="high"] { background: #9b7bff; }
.nv_legend_dot[data-tier="peak"] { background: #ff7ec9; }

.nv_game_controls { display: flex; flex-direction: column; gap: 16px; }

.nv_control_block {
  background: rgba(15, 18, 34, .8);
  border: 1px solid var(--nv-line-soft);
  border-radius: var(--nv-radius);
  padding: 16px 18px;
}
.nv_control_label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nv-muted);
  display: block;
  margin-bottom: 10px;
}

.nv_wallet_big {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.nv_wallet_big small { font-size: .82rem; color: #bdf2ff; margin-left: 6px; letter-spacing: .1em; }

.nv_chip_row { display: flex; gap: 8px; flex-wrap: wrap; }
.nv_chip {
  flex: 1 1 60px;
  padding: 10px 6px;
  border-radius: var(--nv-radius-s);
  border: 1px solid var(--nv-line);
  background: rgba(26, 32, 56, .8);
  color: var(--nv-muted);
  font-weight: 650;
  font-size: .86rem;
  cursor: pointer;
  transition: all .2s var(--nv-ease);
}
.nv_chip:hover { color: var(--nv-text); border-color: rgba(111, 227, 255, .45); }
.nv_chip.is-active { background: var(--nv-grad); border-color: transparent; color: #0a0d1c; }

.nv_risk_row { display: flex; gap: 8px; }

.nv_game_status {
  min-height: 46px;
  border-radius: 12px;
  border: 1px dashed var(--nv-line);
  background: rgba(19, 24, 41, .5);
  padding: 11px 14px;
  font-size: .88rem;
  color: var(--nv-muted);
  display: flex;
  align-items: center;
}
.nv_game_status.is-good { color: #bdf2ff; border-color: rgba(111, 227, 255, .4); }
.nv_game_status.is-great { color: #ffc9ea; border-color: rgba(255, 126, 201, .45); }
.nv_game_status.is-flat { color: #9aa3c4; border-color: rgba(154, 163, 196, .35); }

.nv_log { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; max-height: 168px; overflow-y: auto; }
.nv_log li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .82rem;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(26, 32, 56, .7);
  border: 1px solid var(--nv-line-soft);
  color: var(--nv-muted);
}
.nv_log li b { color: var(--nv-text); font-variant-numeric: tabular-nums; }
.nv_log li.is-good b { color: #bdf2ff; }
.nv_log li.is-great b { color: #ffc9ea; }

.nv_stat_row { display: flex; gap: 10px; }
.nv_stat_pill {
  flex: 1;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--nv-line-soft);
  background: rgba(26, 32, 56, .6);
  padding: 9px 6px;
}
.nv_stat_pill strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.05rem; color: #fff; }
.nv_stat_pill span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--nv-muted); }

/* ---------------- Timeline ---------------- */

.nv_timeline { position: relative; display: grid; gap: 18px; }
.nv_timeline::before {
  content: '';
  position: absolute;
  left: 17px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(111, 227, 255, .7), rgba(255, 126, 201, .35), transparent);
}
.nv_timeline_item {
  position: relative;
  padding: 20px 24px 20px 56px;
  border-radius: var(--nv-radius);
  border: 1px solid var(--nv-line-soft);
  background: rgba(19, 24, 41, .62);
  transition: transform .28s var(--nv-ease), border-color .28s var(--nv-ease);
}
.nv_timeline_item:hover { transform: translateX(6px); border-color: rgba(111, 227, 255, .35); }
.nv_timeline_item::before {
  content: '';
  position: absolute;
  left: 10px; top: 27px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--nv-bg);
  border: 3px solid var(--nv-ice);
  box-shadow: 0 0 14px rgba(111, 227, 255, .55);
}
.nv_timeline_item h3 { margin-bottom: .35em; }
.nv_timeline_item p { color: var(--nv-muted); margin: 0; font-size: .95rem; }
.nv_timeline_stamp {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nv-rose);
  display: block;
  margin-bottom: 6px;
}

/* ---------------- Testimonials ---------------- */

.nv_testimonial {
  background: linear-gradient(165deg, rgba(26, 32, 56, .95), rgba(13, 16, 32, .95));
  border: 1px solid var(--nv-line-soft);
  border-left: 3px solid var(--nv-ice);
  border-radius: var(--nv-radius);
  padding: 26px 28px;
  transition: transform .28s var(--nv-ease), box-shadow .28s var(--nv-ease);
}
.nv_testimonial:hover { transform: translateY(-5px); box-shadow: var(--nv-shadow-soft); }
.nv_quote { font-size: 1.02rem; color: #dfe3f6; font-style: italic; }
.nv_author { font-size: .84rem; color: var(--nv-muted); margin: 14px 0 0; letter-spacing: .04em; }

/* ---------------- Comparison table ---------------- */

.nv_table { border: 1px solid var(--nv-line-soft); border-radius: var(--nv-radius-l); overflow: hidden; }
.nv_table_row { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; border-bottom: 1px solid var(--nv-line-soft); }
.nv_table_row:last-child { border-bottom: 0; }
.nv_table_row > div { padding: 18px 22px; font-size: .95rem; color: var(--nv-muted); }
.nv_table_row > div:first-child { border-right: 1px solid var(--nv-line-soft); color: #cdd2ee; }
.nv_table_row:nth-child(odd) { background: rgba(19, 24, 41, .5); }
.nv_table_header { background: var(--nv-grad-soft) !important; }
.nv_table_header > div { font-family: 'Outfit', sans-serif; font-weight: 650; color: #fff !important; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; }

/* ---------------- Accordion ---------------- */

.nv_accordion { display: grid; gap: 12px; }
.nv_accordion_item {
  border: 1px solid var(--nv-line-soft);
  border-radius: var(--nv-radius);
  background: rgba(19, 24, 41, .62);
  overflow: hidden;
  transition: border-color .25s var(--nv-ease);
}
.nv_accordion_item.is-open { border-color: rgba(111, 227, 255, .4); }
.nv_accordion_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 19px 22px;
  background: none;
  border: 0;
  color: #ecefff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 550;
  cursor: pointer;
}
.nv_accordion_trigger::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 2px solid var(--nv-ice);
  border-bottom: 2px solid var(--nv-ice);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .3s var(--nv-ease);
  flex-shrink: 0;
}
.nv_accordion_item.is-open .nv_accordion_trigger::after { transform: rotate(225deg) translateY(-3px); }
.nv_accordion_content { max-height: 0; overflow: hidden; transition: max-height .38s var(--nv-ease); }
.nv_accordion_content p { padding: 0 22px 20px; color: var(--nv-muted); font-size: .95rem; margin: 0; }

/* ---------------- Game catalogue cards ---------------- */

.nv_game_card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(26, 32, 56, .95), rgba(15, 18, 34, .96));
  border: 1px solid var(--nv-line-soft);
  border-radius: var(--nv-radius-l);
  overflow: hidden;
  transition: transform .3s var(--nv-ease), border-color .3s var(--nv-ease), box-shadow .3s var(--nv-ease);
}
.nv_game_card:hover { transform: translateY(-7px); border-color: rgba(111, 227, 255, .4); box-shadow: var(--nv-glow); }
.nv_game_thumb { position: relative; overflow: hidden; }
.nv_game_thumb img { width: 100%; transition: transform .5s var(--nv-ease); }
.nv_game_card:hover .nv_game_thumb img { transform: scale(1.05); }
.nv_game_badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(9, 11, 22, .82);
  border: 1px solid rgba(111, 227, 255, .4);
  color: #bdf2ff;
  backdrop-filter: blur(6px);
}
.nv_game_body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.nv_game_body p { color: var(--nv-muted); font-size: .93rem; margin: 0; }
.nv_game_meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.nv_tag { font-size: .72rem; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--nv-line); color: var(--nv-muted); background: rgba(19, 24, 41, .7); }

/* ---------------- Prose (legal pages) ---------------- */

.nv_page_head {
  padding: 62px 0 34px;
  border-bottom: 1px solid var(--nv-line-soft);
  background: radial-gradient(760px 300px at 20% 0%, rgba(111, 227, 255, .1), transparent 70%);
}
.nv_breadcrumb { font-size: .82rem; color: var(--nv-muted); margin-bottom: 14px; }
.nv_breadcrumb a { color: var(--nv-muted); }
.nv_breadcrumb a:hover { color: var(--nv-ice); }
.nv_page_head p { color: var(--nv-muted); max-width: 66ch; margin-bottom: 0; }

.nv_prose_layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }

.nv_toc {
  position: sticky;
  top: calc(var(--nv-head) + 20px);
  background: rgba(19, 24, 41, .7);
  border: 1px solid var(--nv-line-soft);
  border-radius: var(--nv-radius);
  padding: 20px;
}
.nv_toc h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--nv-muted); margin-bottom: 14px; }
.nv_toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.nv_toc a { color: #b3bade; font-size: .88rem; display: block; padding: 6px 10px; border-radius: 9px; }
.nv_toc a:hover { background: rgba(111, 227, 255, .1); color: var(--nv-ice); }

.nv_prose { max-width: 78ch; }
.nv_prose h2 { margin-top: 44px; padding-top: 8px; }
.nv_prose h2:first-child { margin-top: 0; }
.nv_prose h3 { margin-top: 28px; }
.nv_prose p, .nv_prose li { color: #b3bade; }
.nv_prose ul, .nv_prose ol { padding-left: 22px; margin: 0 0 1.1em; display: grid; gap: 8px; }
.nv_prose li::marker { color: var(--nv-ice); }
.nv_prose strong { color: #edf0fa; }

.nv_note {
  border-radius: var(--nv-radius);
  border: 1px solid rgba(111, 227, 255, .3);
  background: rgba(111, 227, 255, .06);
  padding: 20px 24px;
  margin: 26px 0;
}
.nv_note p { color: #d8ecf7; margin: 0; }
.nv_note_warn { border-color: rgba(255, 138, 138, .35); background: rgba(255, 138, 138, .07); }
.nv_note_warn p { color: #ffd4d4; }

.nv_meta_line { font-size: .84rem; color: var(--nv-muted); letter-spacing: .04em; }

/* ---------------- Forms ---------------- */

.nv_form { display: grid; gap: 16px; }
.nv_form_group { display: grid; gap: 8px; }
.nv_form_group label { font-size: .82rem; color: #cdd2ee; letter-spacing: .04em; }
.nv_form input, .nv_form select, .nv_form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--nv-line);
  background: rgba(15, 18, 34, .85);
  color: var(--nv-text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--nv-ease), box-shadow .2s var(--nv-ease);
}
.nv_form textarea { min-height: 150px; resize: vertical; }
.nv_form input:focus, .nv_form select:focus, .nv_form textarea:focus {
  outline: none;
  border-color: rgba(111, 227, 255, .55);
  box-shadow: 0 0 0 3px rgba(111, 227, 255, .13);
}
.nv_form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nv_check { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--nv-muted); }
.nv_check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: #9b7bff; }

.nv_contact_grid { display: grid; grid-template-columns: 1fr .82fr; gap: 34px; align-items: start; }

.nv_info_list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.nv_info_list li { display: grid; gap: 3px; padding: 16px 18px; border-radius: var(--nv-radius); border: 1px solid var(--nv-line-soft); background: rgba(19, 24, 41, .62); }
.nv_info_list span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--nv-muted); }
.nv_info_list strong { color: #edf0fa; font-weight: 600; font-size: .96rem; }

/* ---------------- Legal drawer trigger ---------------- */

.nv_drawer_trigger { text-align: center; padding: 12px 0 76px; }
.nv_btn_drawer {
  background: rgba(19, 24, 41, .8);
  border: 1px dashed var(--nv-line);
  color: var(--nv-muted);
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .88rem;
  transition: all .25s var(--nv-ease);
}
.nv_btn_drawer:hover { color: #bdf2ff; border-color: rgba(111, 227, 255, .45); }

/* ---------------- Footer ---------------- */

.nv_footer {
  background: linear-gradient(180deg, rgba(13, 16, 32, .6), rgba(9, 11, 22, 1));
  border-top: 1px solid var(--nv-line-soft);
  padding: 64px 0 34px;
  position: relative;
  z-index: 1;
}
.nv_footer_container { display: grid; grid-template-columns: 1.15fr .8fr 1.25fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--nv-line-soft); }
.nv_footer h3 { font-size: 1rem; margin-bottom: 16px; }
.nv_footer p { color: var(--nv-muted); font-size: .9rem; }
.nv_footer_identity address { font-style: normal; color: var(--nv-muted); font-size: .9rem; line-height: 1.8; }
.nv_footer_links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.nv_footer_links a { color: var(--nv-muted); font-size: .92rem; transition: color .2s var(--nv-ease), padding-left .2s var(--nv-ease); }
.nv_footer_links a:hover { color: var(--nv-ice); padding-left: 4px; }

.nv_rg_tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 138, .4);
  color: #ffb1b1;
  font-size: .78rem;
  font-weight: 650;
  margin-bottom: 14px;
}

.nv_footer_bottom { padding-top: 30px; display: grid; gap: 26px; }
.nv_footer_partners { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; }
.nv_partner_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 58px;
  padding: 8px 16px;
  border-radius: var(--nv-radius);
  border: 1px solid var(--nv-line-soft);
  background: rgba(19, 24, 41, .6);
  opacity: .78;
  filter: grayscale(.3);
  transition: opacity .25s var(--nv-ease), transform .25s var(--nv-ease), filter .25s var(--nv-ease), border-color .25s var(--nv-ease);
}
.nv_partner_logo:hover { opacity: 1; transform: translateY(-3px); filter: none; border-color: rgba(111, 227, 255, .35); }
.nv_partner_logo img { width: 100%; height: 100%; object-fit: contain; }

.nv_footer_disclaimer p { font-size: .8rem; color: #7f88ac; text-align: center; max-width: 92ch; margin: 0 auto .8em; line-height: 1.7; }

/* ---------------- Overlays: drawer, modal, age gate, cookies ---------------- */

.nv_overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 5, 12, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--nv-ease), visibility .3s var(--nv-ease);
}
.nv_overlay.is-open { opacity: 1; visibility: visible; }

.nv_modal {
  position: relative;
  width: min(520px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(165deg, #1a2038, #10131f);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-l);
  padding: 34px 32px;
  box-shadow: var(--nv-shadow);
  transform: translateY(22px) scale(.97);
  transition: transform .35s var(--nv-ease);
}
.nv_overlay.is-open .nv_modal { transform: translateY(0) scale(1); }

.nv_modal_close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--nv-line);
  background: rgba(15, 18, 34, .8);
  color: var(--nv-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all .2s var(--nv-ease);
}
.nv_modal_close:hover { color: #fff; border-color: rgba(111, 227, 255, .5); }

.nv_modal_header { margin-bottom: 22px; }
.nv_modal_header p { color: var(--nv-muted); font-size: .92rem; margin: 0; }

.nv_modal_mark {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(111, 227, 255, .1);
  border: 1px solid rgba(111, 227, 255, .3);
}
.nv_modal_mark img { width: 38px; height: 38px; }

.nv_age_actions { display: grid; gap: 12px; margin-top: 24px; }
.nv_age_small { font-size: .78rem; color: #7f88ac; text-align: center; margin-top: 16px; }

/* legal drawer slides from bottom */
.nv_drawer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 115;
  transform: translateY(100%);
  transition: transform .42s var(--nv-ease);
  background: linear-gradient(180deg, #131829, #0a0c17);
  border-top: 1px solid rgba(111, 227, 255, .3);
  box-shadow: 0 -22px 60px rgba(3, 4, 10, .6);
  max-height: 78vh;
  overflow-y: auto;
}
.nv_drawer.is-open { transform: translateY(0); }
.nv_drawer_content { max-width: 900px; margin: 0 auto; padding: 40px 26px 46px; position: relative; }
.nv_drawer_content p { color: var(--nv-muted); font-size: .94rem; }
.nv_drawer_close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--nv-line);
  background: rgba(15, 18, 34, .8);
  color: var(--nv-muted);
  cursor: pointer;
  font-size: 1.15rem;
}
.nv_drawer_close:hover { color: #fff; }

/* cookie banner */
.nv_cookie {
  position: fixed;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 110;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  border-radius: var(--nv-radius-l);
  background: rgba(17, 21, 38, .96);
  border: 1px solid var(--nv-line);
  box-shadow: var(--nv-shadow);
  backdrop-filter: blur(14px);
  transform: translateY(150%);
  transition: transform .5s var(--nv-ease);
}
.nv_cookie.is-open { transform: translateY(0); }
.nv_cookie_text { flex: 1; }
.nv_cookie_text strong { display: block; font-family: 'Outfit', sans-serif; margin-bottom: 5px; color: #fff; }
.nv_cookie_text p { margin: 0; font-size: .87rem; color: var(--nv-muted); }
.nv_cookie_actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* toasts */
.nv_toast_container {
  position: fixed;
  top: calc(var(--nv-head) + 16px);
  right: 22px;
  z-index: 130;
  display: grid;
  gap: 10px;
  width: min(330px, calc(100vw - 44px));
}
.nv_toast {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(19, 24, 41, .96);
  border: 1px solid var(--nv-line);
  border-left: 3px solid var(--nv-ice);
  box-shadow: var(--nv-shadow-soft);
  font-size: .89rem;
  color: #dfe3f6;
  animation: nv-toast-in .35s var(--nv-ease);
}
.nv_toast.is-out { animation: nv-toast-out .35s var(--nv-ease) forwards; }
.nv_toast_warn { border-left-color: var(--nv-amber); }

@keyframes nv-toast-in { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes nv-toast-out { to { opacity: 0; transform: translateX(28px); } }

/* ---------------- Reveal ---------------- */

.nv_reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--nv-ease), transform .7s var(--nv-ease); }
.nv_reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .nv_reveal { opacity: 1; transform: none; }
}

/* ---------------- CTA band ---------------- */

.nv_cta_band {
  border-radius: var(--nv-radius-l);
  border: 1px solid rgba(111, 227, 255, .25);
  background:
    radial-gradient(600px 240px at 15% 0%, rgba(111, 227, 255, .14), transparent 70%),
    radial-gradient(600px 240px at 85% 100%, rgba(255, 126, 201, .14), transparent 70%),
    linear-gradient(165deg, rgba(26, 32, 56, .95), rgba(13, 16, 32, .95));
  padding: 48px 44px;
  text-align: center;
}
.nv_cta_band p { color: var(--nv-muted); max-width: 62ch; margin: 0 auto 26px; }
.nv_cta_center { text-align: center; margin-top: 34px; }

/* ---------------- Responsive ---------------- */

@media (max-width: 1080px) {
  .nv_game_module { grid-template-columns: 1fr; }
  .nv_prose_layout { grid-template-columns: 1fr; }
  .nv_toc { position: static; }
  .nv_grid_four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nv_nav {
    position: fixed;
    inset: var(--nv-head) 0 auto 0;
    background: rgba(9, 11, 22, .98);
    border-bottom: 1px solid var(--nv-line);
    padding: 18px 24px 26px;
    transform: translateY(-140%);
    transition: transform .38s var(--nv-ease);
    z-index: 80;
  }
  .nv_nav.is-open { transform: translateY(0); }
  .nv_nav_list { flex-direction: column; align-items: stretch; gap: 6px; }
  .nv_nav_link { padding: 13px 16px; border-radius: 14px; text-align: left; }
  .nv_burger { display: grid; }
  .nv_wallet_header { display: none; }
  .nv_btn_auth { display: none; }

  .nv_hero_container { grid-template-columns: 1fr; gap: 40px; }
  .nv_hero { padding: 48px 0 44px; }
  .nv_grid_three, .nv_grid_two { grid-template-columns: 1fr; }
  .nv_contact_grid { grid-template-columns: 1fr; }
  .nv_footer_container { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nv_section { padding: 54px 0; }
  .nv_container { padding: 0 18px; }
  .nv_grid_four { grid-template-columns: 1fr; }
  .nv_table_row { grid-template-columns: 1fr; }
  .nv_table_row > div:first-child { border-right: 0; border-bottom: 1px solid var(--nv-line-soft); }
  .nv_table_header { display: none; }
  .nv_form_row { grid-template-columns: 1fr; }
  .nv_cookie { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .nv_cookie_actions .nv_btn { flex: 1; }
  .nv_cta_band { padding: 34px 22px; }
  .nv_modal { padding: 28px 22px; }
  .nv_hero_stats { grid-template-columns: 1fr 1fr; }
  .nv_wheel_stage { max-width: 280px; }
}
