/* =============================================================
   NotOut — Redesign (High-Energy Cricket × Neon Sportsbook)
   Single-file design system + components.  Class prefix: .nx-
   ============================================================= */

/* ========== 1. TOKENS ========== */
:root {
  /* Brand */
  --nx-bg:           #06080F;
  --nx-bg-2:         #0B0F1B;
  --nx-surface:      #0E1320;
  --nx-surface-2:    #161D2E;
  --nx-line:         rgba(255,255,255,.08);
  --nx-line-strong:  rgba(255,255,255,.16);

  --nx-text:         #F2F4F8;
  --nx-text-2:       #B7BECF;
  --nx-text-mute:    #7A8294;

  --nx-green:        #00E27A;   /* primary — cricket grass */
  --nx-green-2:      #06FF8B;
  --nx-magenta:      #FF2D7A;   /* neon accent */
  --nx-cyan:         #3DFFEA;   /* electric blue */
  --nx-gold:         #FFB400;   /* winning gold */
  --nx-red:          #FF3D5A;   /* match-ball red */

  --nx-grad-cta:     linear-gradient(135deg, var(--nx-green) 0%, var(--nx-cyan) 100%);
  --nx-grad-promo:   linear-gradient(135deg, var(--nx-magenta) 0%, var(--nx-gold) 100%);

  /* Button-specific gradients — vertical, dimensional, no washy cyan end */
  --nx-btn-primary-bg:       linear-gradient(180deg, #1FF394 0%, #00E27A 52%, #00B564 100%);
  --nx-btn-primary-bg-hover: linear-gradient(180deg, #36FFA4 0%, #06FF8B 52%, #00C66E 100%);
  --nx-btn-accent-bg:        linear-gradient(180deg, #FF4D8E 0%, #FF2D7A 52%, #D81E62 100%);
  --nx-btn-accent-bg-hover:  linear-gradient(180deg, #FF66A0 0%, #FF4087 52%, #E22468 100%);
  --nx-btn-text-dark:        #001A0E;
  --nx-grad-hero:    radial-gradient(1200px 800px at 12% 0%, rgba(0,226,122,.18), transparent 60%),
                     radial-gradient(900px 700px at 90% 20%, rgba(255,45,122,.18), transparent 60%),
                     radial-gradient(900px 600px at 50% 100%, rgba(61,255,234,.10), transparent 60%),
                     #06080F;

  /* Type */
  --nx-font-display: 'Sora', 'Space Grotesk', system-ui, sans-serif;
  --nx-font-body:    'Inter', system-ui, sans-serif;
  --nx-font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --nx-r-sm: 8px;
  --nx-r-md: 14px;
  --nx-r-lg: 22px;
  --nx-r-xl: 32px;

  /* Motion */
  --nx-ease-out:  cubic-bezier(.22,1,.36,1);
  --nx-ease-in:   cubic-bezier(.7,0,.84,0);
  --nx-fast:      .18s;
  --nx-mid:       .42s;
  --nx-slow:      .9s;

  /* Layout */
  --nx-container:   1280px;
  --nx-container-w: 1440px;

  /* Multi-layer shadow tokens (refinement pass) */
  --nx-shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 4px rgba(0,0,0,.18);
  --nx-shadow-md: 0 6px 14px -6px rgba(0,0,0,.55), 0 2px 4px rgba(0,0,0,.18);
  --nx-shadow-lg: 0 28px 60px -22px rgba(0,0,0,.7), 0 14px 26px -14px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.025);
  --nx-shadow-glow: 0 0 0 1px rgba(0,226,122,.18), 0 14px 50px -12px rgba(0,226,122,.45);
  --nx-shadow-glow-magenta: 0 0 0 1px rgba(255,45,122,.20), 0 14px 50px -12px rgba(255,45,122,.45);
}

/* Polished focus state — shows on keyboard nav, hidden on click. */
:focus-visible {
  outline: 2px solid var(--nx-green);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible, .nx-btn:focus-visible {
  outline-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(0,226,122,.18);
}

/* ========== 2. BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body, body.home, body.page, body.single, body.archive, body.search, body.error404 {
  margin: 0;
  background: var(--nx-bg);
  color: var(--nx-text);
  font-family: var(--nx-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--nx-green); text-decoration: none; transition: color var(--nx-fast) var(--nx-ease-out); }
a:hover, a:focus, a:active { color: var(--nx-cyan); text-decoration: none; }
a:visited { color: var(--nx-green); }

.nx-home h1, .nx-home h2, .nx-home h3, .nx-home h4, .nx-home h5,
.nx-site-content h1, .nx-site-content h2, .nx-site-content h3, .nx-site-content h4, .nx-site-content h5,
.nx-finalcta h1, .nx-finalcta h2,
.nx-section h1, .nx-section h2, .nx-section h3,
h1.nx-hero__title, h2, h3 {
  font-family: var(--nx-font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  line-height: 1.05;
  color: var(--nx-text);
}
h1 { font-size: clamp(2.4rem, 5.6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--nx-text-2); }

::selection { background: var(--nx-green); color: #04130A; }

/* Wrappers */
.nx-container { max-width: var(--nx-container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1500px) { .nx-container { max-width: var(--nx-container-w); } }
.nx-section { padding: clamp(32px, 3.8vw, 56px) 0; position: relative; }
.nx-section--tight { padding: clamp(20px, 2.4vw, 32px) 0; }

.nx-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--nx-font-mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--nx-green); font-weight: 600;
  padding: 8px 14px; border: 1px solid rgba(0,226,122,.24);
  border-radius: 999px; background: rgba(0,226,122,.06);
  margin-bottom: 18px;
}
.nx-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--nx-green);
  box-shadow: 0 0 12px var(--nx-green);
  animation: nx-pulse 1.6s var(--nx-ease-out) infinite;
}
.nx-section-head { max-width: 760px; margin-bottom: clamp(18px, 2.2vw, 32px); }
.nx-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.nx-section-head h2 { color: var(--nx-text); }
.nx-section-head h2 em { font-style: normal; background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-lede { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--nx-text-2); max-width: 60ch; }

/* ========== 3. BUTTONS ========== */
.nx-btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--nx-font-display); font-weight: 700;
  font-size: 15px; letter-spacing: -.01em;
  padding: 14px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--nx-fast) var(--nx-ease-out);
  text-decoration: none; line-height: 1; white-space: nowrap;
  position: relative; overflow: hidden;
}
.nx-btn--lg { padding: 18px 30px; font-size: 16px; }
.nx-btn--sm { padding: 10px 18px; font-size: 13px; }

.nx-btn--primary {
  color: var(--nx-btn-text-dark);
  background: var(--nx-btn-primary-bg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 0 rgba(0,40,20,.28),
    0 8px 22px -6px rgba(0,226,122,.55);
}
.nx-btn--primary:hover, .nx-btn--primary:focus-visible {
  color: var(--nx-btn-text-dark);
  background: var(--nx-btn-primary-bg-hover);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(0,40,20,.32),
    0 16px 36px -8px rgba(0,255,138,.65);
}

.nx-btn--ghost {
  color: var(--nx-text);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.nx-btn--ghost:hover, .nx-btn--ghost:focus-visible {
  color: var(--nx-text);
  background: rgba(0,226,122,.08);
  border-color: rgba(0,226,122,.55);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 28px -10px rgba(0,226,122,.35);
}

.nx-btn--accent {
  color: #fff;
  background: var(--nx-btn-accent-bg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    inset 0 -1px 0 rgba(80,8,30,.28),
    0 8px 22px -6px rgba(255,45,122,.55);
}
.nx-btn--accent:hover, .nx-btn--accent:focus-visible {
  color: #fff;
  background: var(--nx-btn-accent-bg-hover);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.40),
    inset 0 -1px 0 rgba(80,8,30,.32),
    0 16px 36px -8px rgba(255,45,122,.65);
}

/* Soft outer glow on primary — single subtle layer, not the old heavy blur */
.nx-btn--primary::after {
  content: ''; position: absolute; inset: -3px; border-radius: inherit;
  background: radial-gradient(80% 60% at 50% 100%, rgba(0,226,122,.5), transparent 70%);
  filter: blur(12px); opacity: 0; z-index: -1;
  transition: opacity var(--nx-mid) var(--nx-ease-out);
}
.nx-btn--primary:hover::after { opacity: .8; }

/* ========== 4. HEADER ========== */
.nx-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,15,.55); backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--nx-mid) var(--nx-ease-out), border-color var(--nx-mid) var(--nx-ease-out);
}
.nx-header.is-scrolled { background: rgba(6,8,15,.92); border-bottom-color: var(--nx-line); }
.nx-header__inner {
  max-width: var(--nx-container-w); margin: 0 auto;
  padding: 16px 24px; display: flex; align-items: center; gap: 28px;
}
.nx-header__brand { display: inline-flex; align-items: center; line-height: 0; }
.nx-header__brand .custom-logo-link { display: inline-flex; line-height: 0; }
.nx-header .custom-logo, .nx-header__brand img, .nx-header__wordmark img {
  height: 32px !important; width: auto !important; max-width: 150px;
  display: block; object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0,226,122,.22));
}
.nx-header__wordmark {
  font-family: var(--nx-font-display); font-weight: 800; font-size: 1.35rem;
  letter-spacing: -.02em; color: var(--nx-text); text-decoration: none;
}
@media (max-width: 600px) {
  .nx-header .custom-logo, .nx-header__brand img { height: 28px !important; max-width: 130px; }
}

.nx-header__nav { margin-left: auto; }
.nx-nav__menu, .nx-mobile__menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.nx-nav__menu a, .nx-nav__menu li > a {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  font-weight: 500; color: var(--nx-text-2); font-size: 14.5px;
  transition: all var(--nx-fast) var(--nx-ease-out); position: relative;
}
.nx-nav__menu a:hover, .nx-nav__menu li.current-menu-item > a, .nx-nav__menu li.current_page_item > a {
  color: var(--nx-text); background: rgba(255,255,255,.04);
}
.nx-nav__menu a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--nx-grad-cta); transform: scaleX(0); transform-origin: left;
  transition: transform var(--nx-mid) var(--nx-ease-out); border-radius: 2px;
}
.nx-nav__menu a:hover::after,
.nx-nav__menu li.current-menu-item > a::after,
.nx-nav__menu li.current_page_item > a::after { transform: scaleX(1); }

.nx-header__actions { display: flex; gap: 10px; }
.nx-header__burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 40px; height: 40px; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nx-header__burger span { width: 22px; height: 2px; background: var(--nx-text); border-radius: 2px;
  transition: transform var(--nx-fast) var(--nx-ease-out), opacity var(--nx-fast); }
.nx-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nx-header__burger.is-open span:nth-child(2) { opacity: 0; }
.nx-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nx-mobile { display: none; padding: 24px; border-top: 1px solid var(--nx-line); background: var(--nx-bg-2); }
.nx-mobile__menu { flex-direction: column; gap: 4px; }
.nx-mobile__menu a { display: block; padding: 14px 18px; color: var(--nx-text); font-weight: 600; border-radius: 12px; }
.nx-mobile__menu a:hover { background: rgba(255,255,255,.04); color: var(--nx-green); }
.nx-mobile__cta { display: flex; gap: 10px; margin-top: 16px; }
.nx-mobile__cta .nx-btn { flex: 1; }

@media (max-width: 1024px) {
  .nx-header__nav, .nx-header__actions { display: none; }
  .nx-header__burger { display: flex; margin-left: auto; }
}

/* ========== 5. HERO ========== */
.nx-hero { position: relative; padding: clamp(40px,5vw,76px) 0 clamp(28px,3.5vw,52px); overflow: hidden; isolation: isolate; }
.nx-hero::before {
  content: ''; position: absolute; inset: 0; background: var(--nx-grad-hero); z-index: -2;
}
.nx-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 70%);
  z-index: -1;
}
.nx-hero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
@media (max-width: 960px) { .nx-hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.nx-hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,45,122,.10); border: 1px solid rgba(255,45,122,.32);
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: #FFCDDD; font-weight: 600; margin-bottom: 18px;
}
.nx-hero__pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--nx-magenta); box-shadow: 0 0 14px var(--nx-magenta); animation: nx-pulse 1.4s infinite; }

.nx-hero__title {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  letter-spacing: -.025em;
  line-height: 1.04;
  margin: 0;
}
.nx-hero__rotator {
  display: inline-block; min-width: 3ch;
  padding-inline-end: 0.18em;     /* room for italic slant — bg-clip: text crops at the box edge */
  padding-block: 0.04em;          /* room for descenders/ascenders */
  margin-inline-end: -0.18em;     /* keep layout flush after the slant compensation */
  background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  overflow: visible;
}
.nx-hero__lede { font-size: 1.05rem; max-width: 480px; margin: 18px 0 28px; color: var(--nx-text-2); line-height: 1.55; }
.nx-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.nx-hero__trust {
  display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid var(--nx-line);
}
.nx-hero__trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--nx-text-2); font-weight: 500;
}
.nx-hero__trust-item i { color: var(--nx-green); font-size: 14px; }

/* Hero visual collage — desktop layered look */
.nx-hero__visual {
  position: relative; aspect-ratio: 4/5; width: 100%; max-width: 440px;
  height: clamp(360px, 42vw, 520px);
  margin-left: auto; perspective: 1400px;
  align-self: center;
}
@media (max-width: 960px) {
  .nx-hero__visual {
    margin: 24px auto 0; max-width: 380px;
    height: auto; aspect-ratio: 4/5;
  }
}
/* Phone: layered collage scaled for small screens — both photos visible,
   odds card top-left so it doesn't fight the accent photo's corner. */
@media (max-width: 700px) {
  .nx-hero__visual {
    max-width: min(320px, 80vw);
    aspect-ratio: 4/5;
    height: auto;
    overflow: visible;        /* let the accent peek out slightly */
    margin-bottom: 28px;      /* room for the accent photo overhang */
  }
  .nx-hero__photo--main {
    inset: 0;
    transform: rotate(-2deg);
    border-radius: var(--nx-r-xl);
    box-shadow: 0 18px 40px -14px rgba(0,0,0,.65), 0 0 0 1px var(--nx-line);
    z-index: 1;
  }
  .nx-hero__photo--accent {
    display: block;
    width: 52%;
    aspect-ratio: 3/4;
    right: -5%;
    bottom: -10%;
    top: auto;
    transform: rotate(5deg);
    border-radius: var(--nx-r-md);
    box-shadow:
      0 18px 38px -12px rgba(255,45,122,.45),
      0 0 0 1px rgba(255,45,122,.4);
    z-index: 2;
  }
  .nx-hero__odds-card {
    top: 14px;
    left: 12px;
    right: auto;
    bottom: auto;
    width: auto;
    min-width: 0;
    max-width: 62%;
    padding: 10px 13px;
    border-radius: var(--nx-r-sm);
    box-shadow: 0 14px 28px -10px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
    z-index: 3;
  }
  .nx-hero__odds-card h6 { font-size: 9.5px; margin-bottom: 6px; letter-spacing: .14em; }
  .nx-hero__odds-row { font-size: 11.5px; padding: 2px 0; gap: 16px; }
  .nx-hero__odds-row span:first-child { min-width: 46px; }
}
.nx-hero__photo {
  position: absolute; border-radius: var(--nx-r-xl); overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 1px var(--nx-line);
  transition: transform var(--nx-slow) var(--nx-ease-out);
}
.nx-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nx-hero__photo--main {
  inset: 0; transform: rotate(-3deg);
}
.nx-hero__photo--accent {
  width: 60%; aspect-ratio: 3/4; right: -8%; bottom: 8%;
  border-radius: var(--nx-r-lg); transform: rotate(6deg);
  box-shadow: 0 30px 60px -10px rgba(255,45,122,.35), 0 0 0 1px rgba(255,45,122,.4);
}
.nx-hero__photo--accent::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,45,122,.45));
  z-index: 1;
}
.nx-hero__odds-card {
  position: absolute; left: -8%; top: 12%; z-index: 2;
  background: rgba(14,19,32,.85); backdrop-filter: blur(20px);
  border: 1px solid var(--nx-line-strong);
  border-radius: var(--nx-r-md); padding: 16px 20px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.6);
  font-family: var(--nx-font-mono); min-width: 200px;
}
.nx-hero__odds-card h6 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-cyan); margin: 0 0 10px; font-family: var(--nx-font-mono); font-weight: 600; }
.nx-hero__odds-row { display: flex; justify-content: space-between; padding: 4px 0;
  font-size: 13px; color: var(--nx-text); }
.nx-hero__odds-row .o { color: var(--nx-green); font-weight: 700; }

/* ========== 6. MARQUEE / LIVE ODDS BAR ========== */
.nx-marquee {
  background: linear-gradient(90deg, var(--nx-bg-2), var(--nx-surface), var(--nx-bg-2));
  border-top: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line);
  overflow: hidden; padding: 14px 0; position: relative;
}
.nx-marquee::before, .nx-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; pointer-events: none; z-index: 2;
}
.nx-marquee::before { left: 0; background: linear-gradient(90deg, var(--nx-bg) 30%, transparent); }
.nx-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--nx-bg) 30%, transparent); }
.nx-marquee__track {
  display: flex; gap: 36px; white-space: nowrap;
  animation: nx-marquee 38s linear infinite;
  width: max-content;
}
.nx-marquee:hover .nx-marquee__track { animation-play-state: paused; }
.nx-marquee__item { display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--nx-font-mono); font-size: 14px; color: var(--nx-text-2); }
.nx-marquee__item .live { display: inline-flex; align-items: center; gap: 6px;
  color: var(--nx-magenta); font-weight: 700; letter-spacing: .12em; font-size: 11px; text-transform: uppercase; }
.nx-marquee__item .live::before { content:''; width:7px; height:7px; border-radius:50%;
  background: var(--nx-magenta); box-shadow: 0 0 10px var(--nx-magenta); animation: nx-pulse 1.2s infinite; }
.nx-marquee__item .vs { color: var(--nx-text-mute); }
.nx-marquee__item .o { color: var(--nx-green); font-weight: 700; padding: 3px 10px; border-radius: 6px;
  background: rgba(0,226,122,.10); border: 1px solid rgba(0,226,122,.25); }
.nx-marquee__item .o.alt { color: var(--nx-cyan); background: rgba(61,255,234,.10); border-color: rgba(61,255,234,.25); }

/* ========== 7. FEATURES (Why NotOut) ========== */
.nx-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .nx-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .nx-features { grid-template-columns: 1fr; } }
.nx-feature {
  background: linear-gradient(180deg, var(--nx-surface) 0%, var(--nx-bg-2) 100%);
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-r-lg);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform var(--nx-mid) var(--nx-ease-out), border-color var(--nx-mid);
}
.nx-feature::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(0,226,122,.10), transparent 60%);
  opacity: 0; transition: opacity var(--nx-mid) var(--nx-ease-out); pointer-events: none;
}
.nx-feature:hover { transform: translateY(-6px); border-color: rgba(0,226,122,.35); }
.nx-feature:hover::before { opacity: 1; }
.nx-feature__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 22px; margin-bottom: 22px;
  background: rgba(0,226,122,.10); color: var(--nx-green);
  border: 1px solid rgba(0,226,122,.25);
}
.nx-feature:nth-child(2) .nx-feature__icon { background: rgba(255,45,122,.10); color: var(--nx-magenta); border-color: rgba(255,45,122,.25); }
.nx-feature:nth-child(3) .nx-feature__icon { background: rgba(61,255,234,.10); color: var(--nx-cyan); border-color: rgba(61,255,234,.25); }
.nx-feature:nth-child(4) .nx-feature__icon { background: rgba(255,180,0,.10); color: var(--nx-gold); border-color: rgba(255,180,0,.25); }
.nx-feature h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--nx-text); }
.nx-feature p  { font-size: 14.5px; color: var(--nx-text-2); margin: 0; }

/* ========== 8. MATCH CARDS ========== */
.nx-matches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .nx-matches { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .nx-matches { grid-template-columns: 1fr; } }
.nx-match {
  background: var(--nx-surface);
  border: 1px solid var(--nx-line); border-radius: var(--nx-r-lg);
  padding: 22px; position: relative; overflow: hidden;
  transition: transform var(--nx-mid) var(--nx-ease-out), border-color var(--nx-mid);
}
.nx-match:hover { transform: translateY(-4px); border-color: rgba(0,226,122,.4); }
.nx-match__tag { display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-magenta); margin-bottom: 16px; font-weight: 600; }
.nx-match__tag.live::before { content:''; width:6px; height:6px; border-radius:50%;
  background: var(--nx-magenta); box-shadow: 0 0 8px var(--nx-magenta); animation: nx-pulse 1.2s infinite; }
.nx-match__teams { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.nx-match__team { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nx-match__team-name { font-weight: 700; font-size: 15px; color: var(--nx-text); }
.nx-match__team-flag { font-size: 22px; }
.nx-match__odds { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--nx-line); }
.nx-match__odd {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 6px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,.03); border: 1px solid var(--nx-line);
  transition: all var(--nx-fast) var(--nx-ease-out);
  font-family: var(--nx-font-mono);
}
.nx-match__odd:hover { background: rgba(0,226,122,.08); border-color: var(--nx-green); transform: translateY(-2px); }
.nx-match__odd-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--nx-text-mute); margin-bottom: 4px; }
.nx-match__odd-value { font-size: 16px; font-weight: 700; color: var(--nx-green); }
.nx-match__time { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--nx-text-mute);
  margin-top: 12px; font-family: var(--nx-font-mono); }

/* ========== 9. PROMOTIONS ========== */
.nx-promos { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
@media (max-width: 1100px) { .nx-promos { grid-template-columns: 1fr 1fr; } .nx-promo:first-child { grid-column: span 2; } }
@media (max-width: 600px)  { .nx-promos { grid-template-columns: 1fr; } .nx-promo:first-child { grid-column: span 1; } }
.nx-promo {
  position: relative; border-radius: var(--nx-r-xl); overflow: hidden;
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; isolation: isolate; cursor: pointer;
  background: var(--nx-surface);
}
.nx-promo__media { position: absolute; inset: 0; z-index: -2; }
.nx-promo__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--nx-slow) var(--nx-ease-out); }
.nx-promo:hover .nx-promo__media img { transform: scale(1.06); }
.nx-promo::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(6,8,15,.4) 35%, rgba(6,8,15,.95) 100%);
}
.nx-promo--magenta::before {
  background: linear-gradient(180deg, rgba(255,45,122,.20) 0%, rgba(6,8,15,.95) 100%);
}
.nx-promo--gold::before {
  background: linear-gradient(180deg, rgba(255,180,0,.20) 0%, rgba(6,8,15,.95) 100%);
}
.nx-promo__amount {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 6px; background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nx-promo--magenta .nx-promo__amount { background: var(--nx-grad-promo);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-promo h3 { color: var(--nx-text); margin-bottom: 10px; }
.nx-promo p { color: var(--nx-text-2); font-size: 14.5px; margin-bottom: 18px; }
.nx-promo__cta { display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--nx-text); font-size: 14px;
  font-family: var(--nx-font-display); letter-spacing: -.01em;
}
.nx-promo__cta i { transition: transform var(--nx-fast) var(--nx-ease-out); }
.nx-promo:hover .nx-promo__cta i { transform: translateX(4px); color: var(--nx-green); }

/* ========== 10. STEPS / HOW IT WORKS ========== */
.nx-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .nx-steps { grid-template-columns: 1fr; } }
.nx-step {
  position: relative; padding: 36px 28px; border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line);
}
.nx-step__num {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: 4.5rem; line-height: 1; letter-spacing: -.06em;
  background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.nx-step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.nx-step p { font-size: 14.5px; color: var(--nx-text-2); margin: 0; }
.nx-step__icon { font-size: 22px; color: var(--nx-cyan); margin-bottom: 14px; }

/* ========== 11. SPORTS GRID ========== */
.nx-sports { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 1024px) { .nx-sports { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .nx-sports { grid-template-columns: repeat(2, 1fr); } }
.nx-sport {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  aspect-ratio: 1; border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line);
  transition: all var(--nx-mid) var(--nx-ease-out); cursor: pointer; position: relative; overflow: hidden;
}
.nx-sport::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0,226,122,.18), transparent 60%);
  transition: opacity var(--nx-mid);
}
.nx-sport:hover { transform: translateY(-4px) scale(1.02); border-color: var(--nx-green); }
.nx-sport:hover::before { opacity: 1; }
.nx-sport i { font-size: 32px; color: var(--nx-green); transition: color var(--nx-fast); }
.nx-sport:hover i { color: var(--nx-cyan); }
.nx-sport span { font-weight: 600; font-size: 14px; color: var(--nx-text); }

/* ========== 12. STATS TICKER ========== */
.nx-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--nx-line); border-radius: var(--nx-r-xl);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  overflow: hidden;
}
@media (max-width: 800px) { .nx-stats { grid-template-columns: repeat(2, 1fr); } }
.nx-stat { padding: 36px 24px; text-align: center; border-right: 1px solid var(--nx-line); }
.nx-stat:last-child { border-right: 0; }
@media (max-width: 800px) {
  .nx-stat:nth-child(2) { border-right: 0; }
  .nx-stat:nth-child(1), .nx-stat:nth-child(2) { border-bottom: 1px solid var(--nx-line); }
}
.nx-stat__num {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px; letter-spacing: -.03em;
}
.nx-stat__label { font-size: 13px; color: var(--nx-text-2);
  font-family: var(--nx-font-mono); letter-spacing: .15em; text-transform: uppercase; }

/* ========== 13. FAQ ========== */
.nx-faq { max-width: 880px; margin: 0 auto; }
.nx-faq__item {
  border: 1px solid var(--nx-line); border-radius: var(--nx-r-md);
  background: var(--nx-surface); margin-bottom: 12px; overflow: hidden;
  transition: border-color var(--nx-fast);
}
.nx-faq__item[open] { border-color: rgba(0,226,122,.3); }
.nx-faq__q {
  padding: 22px 26px; cursor: pointer; font-family: var(--nx-font-display);
  font-weight: 600; font-size: 1.05rem; color: var(--nx-text);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.nx-faq__q::-webkit-details-marker { display: none; }
.nx-faq__q::after {
  content: '+'; font-size: 24px; color: var(--nx-green); font-weight: 300;
  transition: transform var(--nx-mid) var(--nx-ease-out);
}
.nx-faq__item[open] .nx-faq__q::after { transform: rotate(45deg); }
.nx-faq__a { padding: 0 26px 22px; color: var(--nx-text-2); font-size: 15px; line-height: 1.65; }

/* ========== 14. TESTIMONIALS ========== */
.nx-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .nx-quotes { grid-template-columns: 1fr; } }
.nx-quote {
  padding: 32px 28px; border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line); position: relative;
}
.nx-quote::before {
  content: '\201C'; font-family: var(--nx-font-display); font-size: 5rem; line-height: 1;
  position: absolute; top: 6px; left: 18px; color: var(--nx-green); opacity: .25;
}
.nx-quote p { color: var(--nx-text); font-size: 1rem; margin-bottom: 24px; line-height: 1.65; position: relative; z-index: 1; }
.nx-quote__who { display: flex; align-items: center; gap: 12px; }
.nx-quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--nx-grad-cta); color: #04130A;
  display: grid; place-items: center; font-weight: 800; font-family: var(--nx-font-display);
}
.nx-quote__name { font-weight: 700; color: var(--nx-text); font-size: 14px; }
.nx-quote__meta { font-size: 12px; color: var(--nx-text-mute); font-family: var(--nx-font-mono); }
.nx-quote__stars { color: var(--nx-gold); margin-left: auto; font-size: 13px; }

/* ========== 15. FINAL CTA ========== */
.nx-finalcta {
  padding: clamp(36px, 4.4vw, 60px) clamp(22px, 3vw, 48px);
  border-radius: var(--nx-r-xl); position: relative; overflow: hidden;
  background: linear-gradient(135deg, #06080F 0%, #0E1320 50%, #1A0628 100%);
  border: 1px solid var(--nx-line); text-align: center;
}
.nx-finalcta::before {
  content: ''; position: absolute; inset: 0; opacity: .35; z-index: 0;
  background: radial-gradient(800px 400px at 50% 0%, rgba(0,226,122,.4), transparent 60%),
              radial-gradient(600px 400px at 100% 100%, rgba(255,45,122,.35), transparent 60%);
}
.nx-finalcta > * { position: relative; z-index: 1; }
.nx-finalcta h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 14px; }
.nx-finalcta h2 em { font-style: normal; background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-finalcta p { max-width: 540px; margin: 0 auto 32px; font-size: 1.1rem; color: var(--nx-text-2); }
.nx-finalcta__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ========== 16. FOOTER ========== */
.nx-footer { background: var(--nx-bg); border-top: 1px solid var(--nx-line); margin-top: clamp(28px, 3.5vw, 52px); }
.nx-footer__inner {
  max-width: var(--nx-container-w); margin: 0 auto;
  padding: clamp(36px, 4.5vw, 60px) 24px 0;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 1100px) { .nx-footer__inner { grid-template-columns: 1fr 1fr 1fr; } .nx-footer__brand-col { grid-column: 1 / -1; } }
@media (max-width: 700px)  { .nx-footer__inner { grid-template-columns: 1fr 1fr; padding-top: 48px; } .nx-footer__brand-col { grid-column: 1 / -1; } }
.nx-footer__brand { margin-bottom: 18px; }
.nx-footer__brand-col img, .nx-footer__brand .custom-logo, .nx-footer__brand-col .custom-logo {
  height: 36px !important; width: auto !important; max-width: 170px; object-fit: contain; display: block;
}
.nx-footer__brand .custom-logo-link, .nx-footer__brand-col .custom-logo-link { display: inline-flex; line-height: 0; }
.nx-footer__tag { font-size: 14.5px; color: var(--nx-text-2); max-width: 36ch; margin-bottom: 22px; }
.nx-footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.nx-footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--nx-line); color: var(--nx-text-2);
  font-size: 15px; transition: all var(--nx-fast) var(--nx-ease-out);
}
.nx-footer__social a:hover { color: var(--nx-green); border-color: var(--nx-green); transform: translateY(-2px); }
.nx-footer__col h5 { font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--nx-text-mute); margin: 0 0 18px; font-family: var(--nx-font-mono); font-weight: 600; }
.nx-footer__col ul { list-style: none; padding: 0; margin: 0; }
.nx-footer__col li { margin-bottom: 10px; }
.nx-footer__col a { color: var(--nx-text-2); font-size: 14.5px; }
.nx-footer__col a:hover { color: var(--nx-green); }

.nx-footer__band {
  margin-top: 56px; padding: 28px 24px;
  max-width: var(--nx-container-w); margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--nx-line);
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: center;
}
.nx-footer__band-group { display: flex; align-items: center; gap: 16px; }
.nx-footer__band-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-text-mute); font-family: var(--nx-font-mono); font-weight: 600; }
.nx-footer__pays { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* Payment-method SVG chips. White pills so the colourful logo art reads.
   The SVGs themselves carry the brand colour, so the background must stay light. */
.nx-paylogo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; min-width: 64px; padding: 6px 12px;
  border-radius: 8px;
  background: #fff; border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.55);
  transition: transform var(--nx-fast) var(--nx-ease-out);
}
.nx-paylogo:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -8px rgba(0,0,0,.7); }
.nx-paylogo img, .nx-paylogo svg {
  height: 22px; width: auto; max-width: 100px; display: block;
  object-fit: contain;
}
.nx-paylogo--lg { height: 46px; min-width: 90px; padding: 8px 16px; border-radius: 10px; }
.nx-paylogo--lg img, .nx-paylogo--lg svg { height: 28px; max-width: 130px; }
@media (max-width: 600px) {
  .nx-paylogo { height: 32px; min-width: 56px; padding: 4px 10px; }
  .nx-paylogo img, .nx-paylogo svg { height: 18px; max-width: 80px; }
}
.nx-footer__trust { display: flex; gap: 16px; flex-wrap: wrap; }
.nx-footer__trust span { display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--nx-text-2); }
.nx-footer__trust i { color: var(--nx-green); }

.nx-footer__sig {
  border-top: 1px solid var(--nx-line); padding: 22px 24px;
  max-width: var(--nx-container-w); margin: 0 auto;
  display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap;
  font-size: 12.5px; color: var(--nx-text-mute); font-family: var(--nx-font-mono);
}

.nx-totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--nx-grad-cta); color: #04130A;
  box-shadow: 0 14px 30px -8px rgba(0,226,122,.55);
  opacity: 0; pointer-events: none;
  transition: opacity var(--nx-mid), transform var(--nx-mid);
  transform: translateY(8px);
}
.nx-totop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nx-totop:hover { transform: translateY(-3px) scale(1.05); }

/* ========== 16b. INNER-PAGE HERO ========== */
.nx-pagehero {
  position: relative; padding: clamp(40px, 5vw, 72px) 0 clamp(20px, 2.5vw, 36px);
  overflow: hidden; isolation: isolate; text-align: center;
}
.nx-pagehero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(900px 600px at 30% 0%, rgba(0,226,122,.16), transparent 60%),
              radial-gradient(700px 500px at 80% 0%, rgba(255,45,122,.16), transparent 60%),
              var(--nx-bg);
}
.nx-pagehero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, #000 30%, transparent 70%);
}
.nx-pagehero .nx-eyebrow { margin: 0 auto 18px; }
.nx-pagehero h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 18ch; margin: 0 auto .6em; }
.nx-pagehero h1 em { font-style: normal; background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-pagehero .nx-lede { margin: 0 auto; }
.nx-pagehero__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 48px; max-width: 880px; margin-left: auto; margin-right: auto;
}
@media (max-width: 700px) { .nx-pagehero__metrics { grid-template-columns: repeat(2, 1fr); } }
.nx-pagehero__metric {
  padding: 22px 14px; border-radius: var(--nx-r-md);
  background: rgba(255,255,255,.03); border: 1px solid var(--nx-line);
}
.nx-pagehero__metric .num {
  display: block; font-family: var(--nx-font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.02em;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nx-pagehero__metric .lbl {
  display: block; font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--nx-text-mute); font-family: var(--nx-font-mono); font-weight: 600; margin-top: 4px;
}

/* ========== 16c. SPLIT (image + copy) ========== */
.nx-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .nx-split { grid-template-columns: 1fr; gap: 40px; } }
.nx-split--reverse .nx-split__media { order: 2; }
.nx-split__media {
  position: relative; aspect-ratio: 4/5; max-width: 540px; border-radius: var(--nx-r-xl);
  overflow: hidden; box-shadow: 0 30px 70px -20px rgba(0,0,0,.6); border: 1px solid var(--nx-line);
}
.nx-split__media img { width: 100%; height: 100%; object-fit: cover; }
.nx-split__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,8,15,.5));
}
.nx-split__badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(14,19,32,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--nx-line-strong);
  font-family: var(--nx-font-mono); font-size: 12px; color: var(--nx-text); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.nx-split__badge i { color: var(--nx-gold); }
.nx-split__copy h2 { margin-bottom: 18px; }
.nx-split__copy h2 em { font-style: normal; background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-split__copy p { font-size: 1.05rem; color: var(--nx-text-2); margin-bottom: 16px; }

/* ========== 16d. CONTACT CHANNELS ========== */
.nx-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .nx-channels { grid-template-columns: 1fr; } }
.nx-channel {
  display: flex; align-items: center; gap: 18px;
  padding: 24px; border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line); position: relative;
  transition: transform var(--nx-mid) var(--nx-ease-out), border-color var(--nx-mid);
  text-decoration: none; color: inherit;
}
.nx-channel:hover { transform: translateY(-4px); border-color: rgba(0,226,122,.4); color: inherit; }
.nx-channel__icon {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 24px;
  background: rgba(0,226,122,.10); color: var(--nx-green);
  border: 1px solid rgba(0,226,122,.3);
}
.nx-channel--magenta .nx-channel__icon { background: rgba(255,45,122,.10); color: var(--nx-magenta); border-color: rgba(255,45,122,.3); }
.nx-channel--cyan .nx-channel__icon { background: rgba(61,255,234,.10); color: var(--nx-cyan); border-color: rgba(61,255,234,.3); }
.nx-channel--gold .nx-channel__icon { background: rgba(255,180,0,.10); color: var(--nx-gold); border-color: rgba(255,180,0,.3); }
.nx-channel__body { flex: 1; min-width: 0; }
.nx-channel__name { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--nx-text); font-size: 1.05rem; }
.nx-channel__badge {
  font-family: var(--nx-font-mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 999px;
  background: var(--nx-grad-cta); color: #04130A; font-weight: 700;
}
.nx-channel__handle { font-family: var(--nx-font-mono); font-size: 13.5px; color: var(--nx-text); margin-top: 4px; word-break: break-all; }
.nx-channel__tag { font-size: 13px; color: var(--nx-text-2); margin-top: 4px; }
.nx-channel__cta { margin-left: auto; flex-shrink: 0; color: var(--nx-text-mute); transition: color var(--nx-fast); }
.nx-channel:hover .nx-channel__cta { color: var(--nx-green); }

.nx-socials { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 900px) { .nx-socials { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .nx-socials { grid-template-columns: repeat(2, 1fr); } }
.nx-social-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 12px; border-radius: var(--nx-r-md);
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  transition: all var(--nx-mid) var(--nx-ease-out);
  text-decoration: none; color: var(--nx-text);
}
.nx-social-card:hover { transform: translateY(-4px); border-color: var(--nx-green); color: var(--nx-text); }
.nx-social-card i { font-size: 24px; color: var(--nx-text-2); transition: color var(--nx-fast); }
.nx-social-card:hover i { color: var(--nx-green); }
.nx-social-card__name { font-weight: 600; font-size: 14px; }
.nx-social-card__handle { font-family: var(--nx-font-mono); font-size: 11.5px; color: var(--nx-text-mute); }

/* ========== 16e. FAQ PAGE: search + category pills ========== */
.nx-faq-search { position: relative; max-width: 640px; margin: 0 auto; }
.nx-faq-search input {
  width: 100%; padding: 18px 50px 18px 52px;
  border-radius: 999px; font: inherit; font-size: 15px;
  background: var(--nx-surface); border: 1px solid var(--nx-line-strong);
  color: var(--nx-text);
  transition: all var(--nx-fast) var(--nx-ease-out);
}
.nx-faq-search input::placeholder { color: var(--nx-text-mute); }
.nx-faq-search input:focus { outline: none; border-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(0,226,122,.14); }
.nx-faq-search .ico { position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  color: var(--nx-green); font-size: 16px; pointer-events: none; }

.nx-faq-cats {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  max-width: 980px; margin: 32px auto 0;
}
.nx-cat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  font-family: var(--nx-font-display); font-weight: 600; font-size: 13.5px;
  color: var(--nx-text-2); cursor: pointer; transition: all var(--nx-fast) var(--nx-ease-out);
}
.nx-cat-pill:hover { color: var(--nx-text); border-color: var(--nx-line-strong); }
.nx-cat-pill.is-active {
  background: var(--nx-grad-cta); color: #04130A; border-color: transparent;
  box-shadow: 0 8px 22px -8px rgba(0,226,122,.55);
}
.nx-cat-pill.is-active i { color: #04130A; }
.nx-cat-pill i { color: var(--nx-green); }
.nx-cat-pill__count {
  font-family: var(--nx-font-mono); font-size: 11px; padding: 2px 8px;
  border-radius: 999px; background: rgba(255,255,255,.08); color: var(--nx-text-2); font-weight: 600;
}
.nx-cat-pill.is-active .nx-cat-pill__count { background: rgba(0,0,0,.16); color: #04130A; }

.nx-faq-empty {
  text-align: center; padding: 60px 20px; color: var(--nx-text-mute);
  display: none;
}
.nx-faq-empty.is-visible { display: block; }
.nx-faq-empty h3 { color: var(--nx-text); margin-bottom: 8px; }

/* ========== 16f. ABOUT: VALUES GRID ========== */
.nx-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .nx-values { grid-template-columns: 1fr; } }
.nx-value {
  padding: 32px 28px; border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line);
  transition: transform var(--nx-mid), border-color var(--nx-mid);
}
.nx-value:hover { transform: translateY(-4px); border-color: rgba(0,226,122,.35); }
.nx-value__num {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: 1rem; letter-spacing: .2em; color: var(--nx-green); margin-bottom: 16px;
}
.nx-value h3 { font-size: 1.4rem; margin-bottom: 10px; }
.nx-value p { color: var(--nx-text-2); font-size: 14.5px; margin: 0; }

/* ========== 16g. ABOUT: TIMELINE ========== */
.nx-timeline {
  position: relative; max-width: 880px; margin: 0 auto; padding-left: 40px;
}
.nx-timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--nx-green), var(--nx-magenta));
}
.nx-timeline__item { position: relative; padding-bottom: 36px; }
.nx-timeline__item:last-child { padding-bottom: 0; }
.nx-timeline__item::before {
  content: ''; position: absolute; left: -33px; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(0,226,122,.18), 0 0 16px var(--nx-green);
}
.nx-timeline__date {
  font-family: var(--nx-font-mono); font-size: 12px; color: var(--nx-cyan);
  letter-spacing: .15em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px;
}
.nx-timeline h3 { font-size: 1.25rem; margin-bottom: 8px; }
.nx-timeline p { color: var(--nx-text-2); margin: 0; font-size: 14.5px; }

/* ========== 16h. CONTACT FORM ========== */
.nx-form { max-width: 640px; margin: 0 auto; }
.nx-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.nx-form__row--full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .nx-form__row { grid-template-columns: 1fr; } }
.nx-form input, .nx-form textarea, .nx-form select {
  width: 100%; padding: 14px 18px; font: inherit; font-size: 15px;
  background: var(--nx-surface); border: 1px solid var(--nx-line-strong);
  color: var(--nx-text); border-radius: var(--nx-r-md); resize: vertical;
  transition: all var(--nx-fast) var(--nx-ease-out);
}
.nx-form input:focus, .nx-form textarea:focus, .nx-form select:focus {
  outline: none; border-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(0,226,122,.14);
}
.nx-form input::placeholder, .nx-form textarea::placeholder { color: var(--nx-text-mute); }
.nx-form label {
  display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--nx-text-mute); font-family: var(--nx-font-mono); font-weight: 600; margin-bottom: 8px;
}

/* ========== 16i. ODDSBOARD (Live Betting page) ========== */
.nx-oddsboard {
  border: 1px solid var(--nx-line); border-radius: var(--nx-r-xl); overflow: hidden;
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
}
.nx-oddsboard__head {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  padding: 16px 24px; border-bottom: 1px solid var(--nx-line);
  background: rgba(0,0,0,.25);
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-text-mute); font-weight: 600;
}
.nx-oddsboard__head span:not(:first-child) { text-align: center; }
.nx-oddsboard__row {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  padding: 18px 24px; border-bottom: 1px solid var(--nx-line);
  align-items: center; gap: 14px;
  transition: background var(--nx-fast);
}
.nx-oddsboard__row:hover { background: rgba(0,226,122,.04); }
.nx-oddsboard__row:last-child { border-bottom: 0; }
.nx-oddsboard__match { display: flex; flex-direction: column; gap: 4px; }
.nx-oddsboard__league {
  display: inline-flex; align-items: center; gap: 8px; width: max-content;
  font-family: var(--nx-font-mono); font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-magenta); font-weight: 700; margin-bottom: 4px;
}
.nx-oddsboard__league.live::before { content:''; width:6px; height:6px; border-radius:50%;
  background: var(--nx-magenta); box-shadow: 0 0 8px var(--nx-magenta); animation: nx-pulse 1.2s infinite; }
.nx-oddsboard__teams { font-weight: 600; color: var(--nx-text); font-size: 14.5px; }
.nx-oddsboard__time { font-size: 12px; color: var(--nx-text-mute); font-family: var(--nx-font-mono); margin-top: 2px; }
.nx-odd-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px 6px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--nx-line);
  transition: all var(--nx-fast) var(--nx-ease-out); font-family: var(--nx-font-mono);
}
.nx-odd-btn:hover { background: rgba(0,226,122,.10); border-color: var(--nx-green); transform: translateY(-2px); }
.nx-odd-btn-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--nx-text-mute); margin-bottom: 2px; }
.nx-odd-btn-value { font-size: 14.5px; font-weight: 700; color: var(--nx-green); }

@media (max-width: 800px) {
  .nx-oddsboard__head { display: none; }
  .nx-oddsboard__row { grid-template-columns: 1fr; gap: 12px; }
  .nx-oddsboard__row > .nx-odd-btn { display: inline-flex; flex-direction: row; gap: 10px; padding: 12px; }
  .nx-oddsboard__row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .nx-oddsboard__match { grid-column: 1 / -1; }
}

/* Sport tabs */
.nx-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.nx-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  font-family: var(--nx-font-display); font-weight: 600; font-size: 14px;
  color: var(--nx-text-2); cursor: pointer; transition: all var(--nx-fast) var(--nx-ease-out);
}
.nx-tab:hover { color: var(--nx-text); }
.nx-tab.is-active {
  background: var(--nx-grad-cta); color: #04130A; border-color: transparent;
  box-shadow: 0 8px 22px -8px rgba(0,226,122,.5);
}
.nx-tab.is-active i { color: #04130A; }
.nx-tab i { color: var(--nx-green); }

/* Bet types grid */
.nx-bettypes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .nx-bettypes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .nx-bettypes { grid-template-columns: 1fr; } }
.nx-bettype {
  padding: 28px 24px; border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line); transition: all var(--nx-mid);
}
.nx-bettype:hover { transform: translateY(-3px); border-color: rgba(61,255,234,.4); }
.nx-bettype__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.nx-bettype__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-size: 18px; background: rgba(61,255,234,.10); color: var(--nx-cyan);
  border: 1px solid rgba(61,255,234,.25);
}
.nx-bettype h3 { margin: 0; font-size: 1.15rem; }
.nx-bettype p { font-size: 14px; color: var(--nx-text-2); margin: 0; }
.nx-bettype__example {
  margin-top: 14px; padding: 10px 14px; border-radius: 10px;
  background: rgba(0,0,0,.3); border: 1px dashed var(--nx-line);
  font-family: var(--nx-font-mono); font-size: 12.5px; color: var(--nx-text);
}
.nx-bettype__example .o { color: var(--nx-green); font-weight: 700; }

/* Featured promo (full-bleed hero promo) */
.nx-promo-hero {
  position: relative; border-radius: var(--nx-r-xl); overflow: hidden;
  min-height: 460px; isolation: isolate;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--nx-surface);
}
@media (max-width: 900px) { .nx-promo-hero { grid-template-columns: 1fr; min-height: 0; } }
.nx-promo-hero__media { position: relative; min-height: 320px; }
.nx-promo-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nx-promo-hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(6,8,15,.95)),
              linear-gradient(180deg, transparent 50%, rgba(6,8,15,.4));
}
@media (max-width: 900px) {
  .nx-promo-hero__media::after { background: linear-gradient(180deg, transparent 30%, rgba(6,8,15,.95)); }
}
.nx-promo-hero__copy {
  padding: 48px 44px; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.nx-promo-hero__amount {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.6rem); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 14px; background: var(--nx-grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nx-promo-hero__copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.nx-promo-hero__copy p { color: var(--nx-text-2); font-size: 1rem; max-width: 44ch; margin-bottom: 22px; }
.nx-promo-hero__terms {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--nx-line);
}
.nx-promo-hero__terms span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--nx-text-2); font-family: var(--nx-font-mono);
}
.nx-promo-hero__terms i { color: var(--nx-green); }

/* ========== 16j. ARTICLES (Blog index + archive + search) ========== */
.nx-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .nx-articles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .nx-articles { grid-template-columns: 1fr; } }
.nx-article {
  display: flex; flex-direction: column;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  border-radius: var(--nx-r-lg); overflow: hidden;
  transition: transform var(--nx-mid) var(--nx-ease-out), border-color var(--nx-mid);
}
.nx-article:hover { transform: translateY(-4px); border-color: rgba(0,226,122,.4); }
.nx-article__media { aspect-ratio: 16/10; overflow: hidden; background: var(--nx-bg-2); position: relative; }
.nx-article__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--nx-slow) var(--nx-ease-out); }
.nx-article:hover .nx-article__media img { transform: scale(1.06); }
.nx-article__media--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--nx-grad-hero); color: var(--nx-green);
  font-size: 60px; opacity: .8;
}
.nx-article__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.nx-article__cat {
  align-self: flex-start;
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-green); font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(0,226,122,.10); border: 1px solid rgba(0,226,122,.25);
  margin-bottom: 14px; text-decoration: none;
}
.nx-article__cat:hover { color: var(--nx-cyan); border-color: var(--nx-cyan); background: rgba(61,255,234,.10); }
.nx-article__title {
  font-size: 1.18rem; line-height: 1.25; margin: 0 0 12px;
  color: var(--nx-text); font-weight: 700; font-family: var(--nx-font-display);
}
.nx-article__title a { color: inherit; text-decoration: none; }
.nx-article__title a:hover { color: var(--nx-green); }
.nx-article__excerpt { font-size: 14.5px; color: var(--nx-text-2); line-height: 1.6; margin: 0 0 18px; }
.nx-article__meta {
  display: flex; align-items: center; gap: 14px; margin-top: auto;
  font-family: var(--nx-font-mono); font-size: 12px; color: var(--nx-text-mute);
}
.nx-article__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--nx-text-mute); }

/* Featured (large) article */
.nx-article-feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  border-radius: var(--nx-r-xl); overflow: hidden;
  transition: border-color var(--nx-mid);
}
.nx-article-feature:hover { border-color: rgba(0,226,122,.4); }
@media (max-width: 900px) { .nx-article-feature { grid-template-columns: 1fr; } }
.nx-article-feature__media { aspect-ratio: 16/10; overflow: hidden; }
.nx-article-feature__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--nx-slow); }
.nx-article-feature:hover .nx-article-feature__media img { transform: scale(1.04); }
.nx-article-feature__body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.nx-article-feature__title {
  font-family: var(--nx-font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.02em; line-height: 1.15; margin: 14px 0 14px; color: var(--nx-text);
}
.nx-article-feature__title a { color: inherit; }
.nx-article-feature__title a:hover { color: var(--nx-green); }
.nx-article-feature__excerpt { color: var(--nx-text-2); font-size: 1rem; margin: 0 0 18px; line-height: 1.6; }

/* Pagination */
.nx-pagination {
  display: flex; gap: 6px; justify-content: center; align-items: center;
  margin-top: 56px; flex-wrap: wrap;
}
.nx-pagination a, .nx-pagination span {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 44px; height: 44px; padding: 0 14px; border-radius: 12px;
  font-family: var(--nx-font-mono); font-size: 14px; font-weight: 600;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  color: var(--nx-text-2); text-decoration: none;
  transition: all var(--nx-fast) var(--nx-ease-out);
}
.nx-pagination a:hover { color: var(--nx-text); border-color: var(--nx-line-strong); background: var(--nx-bg-2); }
.nx-pagination .current, .nx-pagination span.current {
  background: var(--nx-grad-cta); color: #04130A; border-color: transparent;
  box-shadow: 0 8px 22px -8px rgba(0,226,122,.5);
}
.nx-pagination .dots { background: transparent; border-color: transparent; cursor: default; }

/* Empty state */
.nx-empty {
  text-align: center; padding: 80px 24px; color: var(--nx-text-mute);
  border: 1px dashed var(--nx-line); border-radius: var(--nx-r-xl);
}
.nx-empty__icon { font-size: 56px; color: var(--nx-text-mute); margin-bottom: 18px; opacity: .6; }
.nx-empty h3 { color: var(--nx-text); margin-bottom: 8px; font-size: 1.4rem; }
.nx-empty p { max-width: 38ch; margin: 0 auto 24px; }

/* ========== 16k. SINGLE POST (long-read) ========== */
.nx-singlehead {
  position: relative; padding: clamp(40px, 5vw, 72px) 0 clamp(20px, 2.5vw, 36px);
  overflow: hidden; isolation: isolate;
}
.nx-singlehead::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(900px 600px at 30% 0%, rgba(0,226,122,.13), transparent 60%),
              radial-gradient(700px 500px at 80% 0%, rgba(255,45,122,.12), transparent 60%),
              var(--nx-bg);
}
.nx-singlehead__inner { max-width: 880px; margin: 0 auto; }
.nx-singlehead__cat {
  display: inline-flex; padding: 6px 14px; border-radius: 999px;
  background: rgba(0,226,122,.10); border: 1px solid rgba(0,226,122,.3);
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--nx-green); font-weight: 700;
  text-decoration: none; margin-bottom: 22px;
}
.nx-singlehead h1 {
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.1; margin: 0 0 22px;
  color: var(--nx-text);
}
.nx-singlehead__lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--nx-text-2); margin: 0 0 28px; }
.nx-singlehead__meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--nx-font-mono); font-size: 13px; color: var(--nx-text-mute);
  padding-top: 22px; border-top: 1px solid var(--nx-line);
}
.nx-singlehead__avatar {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--nx-line-strong);
}
.nx-singlehead__avatar img { width: 100%; height: 100%; object-fit: cover; }
.nx-singlehead__author { color: var(--nx-text); font-weight: 600; }

.nx-cover {
  max-width: 1100px; margin: 0 auto;
  border-radius: var(--nx-r-xl); overflow: hidden; border: 1px solid var(--nx-line);
}
.nx-cover img { width: 100%; height: auto; display: block; }

.nx-prose {
  max-width: 720px; margin: clamp(28px, 4vw, 48px) auto;
  font-size: 1.08rem; line-height: 1.78; color: var(--nx-text);
}
.nx-prose p, .nx-prose ul, .nx-prose ol, .nx-prose blockquote, .nx-prose pre, .nx-prose figure { margin: 0 0 1.4em; }
.nx-prose h2, .nx-prose h3, .nx-prose h4 { color: var(--nx-text); margin-top: 2em; margin-bottom: .6em; line-height: 1.25; }
.nx-prose h2 { font-size: 1.7rem; }
.nx-prose h3 { font-size: 1.35rem; }
.nx-prose a { color: var(--nx-green); text-decoration: none; }
.nx-prose a:hover { color: var(--nx-cyan); text-decoration: none; }
.nx-prose strong { color: var(--nx-text); font-weight: 700; }
.nx-prose blockquote {
  border-left: 4px solid var(--nx-green); padding: 12px 22px;
  background: rgba(0,226,122,.05); border-radius: 8px;
  font-style: italic; color: var(--nx-text);
}
.nx-prose code, .nx-prose pre { font-family: var(--nx-font-mono); }
.nx-prose code { background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 4px; font-size: .92em; }
.nx-prose pre { background: var(--nx-surface); padding: 18px 22px; border-radius: var(--nx-r-md);
  border: 1px solid var(--nx-line); overflow-x: auto; font-size: .9rem; }
.nx-prose img { border-radius: var(--nx-r-md); display: block; }
.nx-prose figure figcaption { font-size: 13px; color: var(--nx-text-mute); margin-top: 8px; text-align: center; }
.nx-prose ul li, .nx-prose ol li { margin-bottom: .4em; }

.nx-share {
  max-width: 720px; margin: 56px auto;
  padding: 24px 28px; border-radius: var(--nx-r-lg);
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.nx-share span { font-family: var(--nx-font-mono); font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-text-mute); font-weight: 600; }
.nx-share a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--nx-line); color: var(--nx-text-2); font-size: 14px;
  transition: all var(--nx-fast);
}
.nx-share a:hover { color: var(--nx-green); border-color: var(--nx-green); transform: translateY(-2px); }

/* ========== 16l. 404 ========== */
.nx-404 { padding: clamp(80px, 12vw, 160px) 0; text-align: center; position: relative; isolation: isolate; }
.nx-404::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(800px 600px at 50% 30%, rgba(0,226,122,.14), transparent 60%),
              radial-gradient(600px 500px at 30% 70%, rgba(255,45,122,.12), transparent 60%);
}
.nx-404__big {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: clamp(8rem, 22vw, 16rem); letter-spacing: -.06em; line-height: 1;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
}
.nx-404 h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.nx-404 p { color: var(--nx-text-2); max-width: 50ch; margin: 0 auto 32px; font-size: 1.05rem; }
.nx-404__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== 16q. PAYMENTS PAGE ========== */
/* Brand-coloured wallet badges */
.nx-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .nx-pay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .nx-pay-grid { grid-template-columns: 1fr; } }
.nx-pay {
  position: relative; border-radius: var(--nx-r-lg); overflow: hidden;
  padding: 24px 22px; isolation: isolate;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--nx-mid), border-color var(--nx-mid);
  min-height: 200px;
}
.nx-pay:hover { transform: translateY(-4px); }
.nx-pay::before {
  content: ''; position: absolute; inset: -1px;
  background: var(--nx-pay-grad, linear-gradient(135deg, var(--nx-green), var(--nx-cyan)));
  opacity: 0; transition: opacity var(--nx-mid); z-index: -1;
}
.nx-pay:hover::before { opacity: .12; }
.nx-pay__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 38px; border-radius: 8px;
  font-family: var(--nx-font-display); font-weight: 800; letter-spacing: -.03em;
  font-size: 14px; color: #fff; padding: 0 6px;
  background: var(--nx-pay-color, var(--nx-green));
  box-shadow: 0 6px 18px -6px var(--nx-pay-color, var(--nx-green));
}
.nx-pay--bkash      { --nx-pay-color: #E2136E; --nx-pay-grad: linear-gradient(135deg, #E2136E, #FF4FA3); }
.nx-pay--nagad      { --nx-pay-color: #ED1C24; --nx-pay-grad: linear-gradient(135deg, #ED1C24, #FFB400); }
.nx-pay--rocket     { --nx-pay-color: #8B2487; --nx-pay-grad: linear-gradient(135deg, #8B2487, #C24CB8); }
.nx-pay--upay       { --nx-pay-color: #FF6E00; --nx-pay-grad: linear-gradient(135deg, #FF6E00, #FFB400); }
.nx-pay--visa       { --nx-pay-color: #1A1F71; --nx-pay-grad: linear-gradient(135deg, #1A1F71, #4D5CC9); }
.nx-pay--mastercard { --nx-pay-color: #EB001B; --nx-pay-grad: linear-gradient(135deg, #FF5F00, #F79E1B); }
.nx-pay--usdt       { --nx-pay-color: #26A17B; --nx-pay-grad: linear-gradient(135deg, #26A17B, #50E3A4); }
.nx-pay--agent      { --nx-pay-color: #00E27A; --nx-pay-grad: linear-gradient(135deg, #00E27A, #3DFFEA); }
.nx-pay h3 { font-size: 1.05rem; margin: 0; color: var(--nx-text); }
.nx-pay__rates { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.nx-pay__rate {
  font-family: var(--nx-font-mono); font-size: 11.5px; letter-spacing: .05em;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--nx-line);
  color: var(--nx-text-2);
}
.nx-pay__rate b { color: var(--nx-green); font-weight: 700; }

/* Animated wallet → phone → bet flow */
.nx-flow {
  position: relative; max-width: 720px; margin: 32px auto 0;
  padding: 32px; border-radius: var(--nx-r-xl);
  background: linear-gradient(135deg, var(--nx-surface), var(--nx-bg-2));
  border: 1px solid var(--nx-line);
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: center;
}
@media (max-width: 700px) {
  .nx-flow { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .nx-flow__arrow { display: none; }
}
.nx-flow__node {
  text-align: center; padding: 18px 14px; border-radius: var(--nx-r-md);
  background: rgba(255,255,255,.03); border: 1px solid var(--nx-line); position: relative;
}
.nx-flow__node i { font-size: 28px; margin-bottom: 8px; display: block;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-flow__node h5 { margin: 0 0 4px; font-size: 14px; color: var(--nx-text); font-family: var(--nx-font-display); font-weight: 700; }
.nx-flow__node small { font-family: var(--nx-font-mono); font-size: 11px; color: var(--nx-text-mute); letter-spacing: .1em; text-transform: uppercase; }
.nx-flow__arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--nx-green); font-size: 18px;
  position: relative;
}
.nx-flow__arrow::before {
  content: ''; position: absolute; left: -10px; right: -10px; top: 50%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--nx-green), transparent);
  transform: translateY(-50%);
}
@media (prefers-reduced-motion: no-preference) {
  .nx-flow__arrow i { animation: nx-flow-pulse 2.4s var(--nx-ease-out) infinite; }
  .nx-flow__arrow:nth-of-type(2) i { animation-delay: .3s; }
}
@keyframes nx-flow-pulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50%      { transform: translateX(6px); opacity: .55; }
}

/* Speed comparison bars */
.nx-speed { max-width: 720px; margin: 0 auto; }
.nx-speed__row {
  display: grid; grid-template-columns: 180px 1fr 80px;
  gap: 18px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--nx-line);
}
.nx-speed__row:last-child { border-bottom: 0; }
@media (max-width: 700px) {
  .nx-speed__row { grid-template-columns: 1fr 60px; gap: 8px 12px; }
  .nx-speed__row .nx-speed__bar { grid-column: 1 / -1; order: 3; }
  .nx-speed__row .nx-speed__time { text-align: right; }
}
.nx-speed__name { font-weight: 600; color: var(--nx-text); display: flex; align-items: center; gap: 8px; }
.nx-speed__name .badge { font-family: var(--nx-font-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 999px;
  background: var(--nx-grad-cta); color: #04130A; font-weight: 700; }
.nx-speed__bar {
  position: relative; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.06); overflow: hidden;
}
.nx-speed__bar::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w, 50%); border-radius: 999px;
  background: var(--bar, var(--nx-grad-cta));
  animation: nx-bar-fill 1.8s var(--nx-ease-out) both;
}
@keyframes nx-bar-fill {
  from { width: 0; }
  to   { width: var(--w, 50%); }
}
.nx-speed__row.is-us .nx-speed__bar::after { background: var(--nx-grad-cta); box-shadow: 0 0 18px rgba(0,226,122,.35); }
.nx-speed__row.is-bad .nx-speed__bar::after { background: linear-gradient(90deg, var(--nx-magenta), #6B1535); }
.nx-speed__time {
  font-family: var(--nx-font-mono); font-size: 13.5px; font-weight: 700;
  color: var(--nx-text); text-align: right;
}

/* Live payouts ticker (vertical) */
.nx-ticker {
  border: 1px solid var(--nx-line); border-radius: var(--nx-r-lg);
  background: var(--nx-surface); overflow: hidden;
  position: relative;
}
.nx-ticker__head {
  padding: 14px 22px; border-bottom: 1px solid var(--nx-line);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--nx-font-mono); font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-text-mute); font-weight: 600;
}
.nx-ticker__head .live {
  display: inline-flex; align-items: center; gap: 6px; color: var(--nx-magenta); font-weight: 700;
}
.nx-ticker__head .live::before { content:''; width:7px; height:7px; border-radius:50%;
  background: var(--nx-magenta); box-shadow: 0 0 10px var(--nx-magenta); animation: nx-pulse 1.2s infinite; }
.nx-ticker__list { list-style: none; margin: 0; padding: 0; max-height: 340px; overflow: hidden; position: relative; }
.nx-ticker__list::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 60px;
  background: linear-gradient(180deg, transparent, var(--nx-surface)); pointer-events: none; }
.nx-ticker__item {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 12px 22px; border-bottom: 1px solid var(--nx-line);
  font-family: var(--nx-font-mono); font-size: 13px;
  animation: nx-tick-in .5s var(--nx-ease-out);
}
.nx-ticker__item .who { color: var(--nx-text); font-weight: 600; }
.nx-ticker__item .who small { color: var(--nx-text-mute); font-weight: 400; margin-left: 6px; }
.nx-ticker__item .amt { color: var(--nx-green); font-weight: 700; }
.nx-ticker__item .via {
  font-size: 10.5px; padding: 3px 8px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--nx-line); color: var(--nx-text-2);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
}
@keyframes nx-tick-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Big counter card */
.nx-counter {
  text-align: center; padding: 36px 24px;
  border-radius: var(--nx-r-xl); border: 1px solid var(--nx-line);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  position: relative; overflow: hidden;
}
.nx-counter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 250px at 50% 0%, rgba(0,226,122,.16), transparent 60%);
  pointer-events: none;
}
.nx-counter > * { position: relative; z-index: 1; }
.nx-counter__num {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -.03em;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nx-counter__sub { font-family: var(--nx-font-mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--nx-text-mute); margin-top: 8px; }

/* Animated SIM/phone illustration */
.nx-phone {
  width: 220px; height: 420px; margin: 0 auto;
  border: 8px solid var(--nx-line-strong); border-radius: 36px;
  background: linear-gradient(180deg, #06080F, #0E1320);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px var(--nx-line);
}
.nx-phone::before {
  content: ''; width: 60px; height: 6px; border-radius: 4px;
  background: var(--nx-line-strong); position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
}
.nx-phone__screen { position: absolute; inset: 28px 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.nx-phone__app {
  padding: 12px 14px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,226,122,.16), rgba(61,255,234,.10));
  border: 1px solid rgba(0,226,122,.28);
  font-family: var(--nx-font-mono); font-size: 11px; color: var(--nx-text);
}
.nx-phone__amt {
  font-family: var(--nx-font-display); font-size: 1.6rem; font-weight: 800;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.02em; margin-top: 6px;
}
.nx-phone__row {
  display: flex; justify-content: space-between;
  font-family: var(--nx-font-mono); font-size: 10.5px; padding: 8px 12px;
  background: rgba(255,255,255,.04); border-radius: 8px;
  color: var(--nx-text-2);
}
.nx-phone__row .ok { color: var(--nx-green); }
.nx-phone__btn {
  margin-top: auto; padding: 12px; text-align: center;
  border-radius: 12px; background: var(--nx-grad-cta); color: #04130A;
  font-weight: 700; font-size: 12px; font-family: var(--nx-font-display);
}

/* ========== 16n. BONUS TILES (tournament/sport-specific bonuses) ========== */
.nx-bonus-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1000px) { .nx-bonus-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .nx-bonus-tiles { grid-template-columns: 1fr; } }
.nx-bonus-tile {
  position: relative; border-radius: var(--nx-r-lg); overflow: hidden;
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  display: flex; flex-direction: column;
  transition: transform var(--nx-mid), border-color var(--nx-mid);
}
.nx-bonus-tile:hover { transform: translateY(-4px); border-color: rgba(0,226,122,.35); }
.nx-bonus-tile__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.nx-bonus-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--nx-slow); }
.nx-bonus-tile:hover .nx-bonus-tile__media img { transform: scale(1.06); }
.nx-bonus-tile__media::after { content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,8,15,.85)); }
.nx-bonus-tile__sport {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(14,19,32,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--nx-line-strong);
  font-family: var(--nx-font-mono); font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-cyan); font-weight: 700;
}
.nx-bonus-tile__sport i { color: var(--nx-cyan); }
.nx-bonus-tile__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.nx-bonus-tile__amount {
  font-family: var(--nx-font-display); font-weight: 800;
  font-size: 1.9rem; letter-spacing: -.02em; line-height: 1; margin-bottom: 8px;
  background: var(--nx-grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nx-bonus-tile h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--nx-text); }
.nx-bonus-tile p { font-size: 14px; color: var(--nx-text-2); margin: 0 0 16px; line-height: 1.55; }
.nx-bonus-tile__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--nx-green); font-family: var(--nx-font-display); font-size: 14px;
  text-decoration: none; align-self: flex-start;
}
.nx-bonus-tile__cta i { transition: transform var(--nx-fast); }
.nx-bonus-tile:hover .nx-bonus-tile__cta i { transform: translateX(4px); }

/* ========== 16o. T&CS TABLE ========== */
.nx-tncs {
  border: 1px solid var(--nx-line); border-radius: var(--nx-r-lg);
  background: linear-gradient(180deg, var(--nx-surface), var(--nx-bg-2));
  overflow: hidden;
}
.nx-tncs__row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 14px; padding: 16px 24px; border-bottom: 1px solid var(--nx-line);
  align-items: center; font-size: 14px;
}
.nx-tncs__row:last-child { border-bottom: 0; }
.nx-tncs__row--head {
  background: rgba(0,0,0,.25);
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--nx-text-mute); font-weight: 600;
  padding-top: 14px; padding-bottom: 14px;
}
.nx-tncs__row > strong { color: var(--nx-text); font-weight: 700; }
.nx-tncs__row .ok { color: var(--nx-green); font-weight: 700; }
.nx-tncs__row .warn { color: var(--nx-gold); font-weight: 700; }
@media (max-width: 800px) {
  .nx-tncs__row { grid-template-columns: 1fr 1fr; gap: 8px 14px; padding: 14px 18px; }
  .nx-tncs__row--head { display: none; }
  .nx-tncs__row > *::before { content: attr(data-label); display: block;
    font-family: var(--nx-font-mono); font-size: 10.5px; letter-spacing: .15em;
    text-transform: uppercase; color: var(--nx-text-mute); margin-bottom: 2px; }
  .nx-tncs__row > strong::before { display: none; }
  .nx-tncs__row > strong { grid-column: 1 / -1; font-size: 1rem; }
}

/* ========== 16p. VIP TIERS ========== */
.nx-tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1100px) { .nx-tiers { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .nx-tiers { grid-template-columns: 1fr 1fr; } }
.nx-tier {
  padding: 22px 18px; text-align: center; border-radius: var(--nx-r-md);
  background: var(--nx-surface); border: 1px solid var(--nx-line);
  transition: transform var(--nx-mid), border-color var(--nx-mid);
}
.nx-tier:hover { transform: translateY(-3px); border-color: var(--nx-line-strong); }
.nx-tier__icon { font-size: 28px; margin-bottom: 10px; color: var(--nx-text-mute); }
.nx-tier h4 { font-family: var(--nx-font-display); font-weight: 700; font-size: 1.05rem; margin: 0 0 4px; color: var(--nx-text); }
.nx-tier__cb {
  font-family: var(--nx-font-mono); font-weight: 700; font-size: 13px;
  color: var(--nx-green); margin-bottom: 6px;
}
.nx-tier__min { font-size: 11px; color: var(--nx-text-mute); font-family: var(--nx-font-mono); letter-spacing: .1em; text-transform: uppercase; }
.nx-tier--bronze .nx-tier__icon { color: #C77B3D; }
.nx-tier--silver .nx-tier__icon { color: #C9D1DA; }
.nx-tier--gold .nx-tier__icon   { color: var(--nx-gold); }
.nx-tier--platinum .nx-tier__icon { color: #B9F1F1; }
.nx-tier--diamond .nx-tier__icon  { color: var(--nx-cyan); }

/* ========== 16m. COMMENTS ========== */
.nx-comments { max-width: 720px; margin: 56px auto 0; }
.nx-comments__head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 1px solid var(--nx-line);
}
.nx-comments__head h2 {
  margin: 0; font-size: 1.4rem; color: var(--nx-text);
  font-family: var(--nx-font-display);
}
.nx-comments__count {
  font-family: var(--nx-font-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  background: rgba(0,226,122,.10); color: var(--nx-green);
  border: 1px solid rgba(0,226,122,.25); font-weight: 700;
}
.nx-comments .comment-list { list-style: none; padding: 0; margin: 0 0 36px; }
.nx-comments .comment, .nx-comments .pingback {
  padding: 22px; margin-bottom: 14px; border-radius: var(--nx-r-md);
  background: var(--nx-surface); border: 1px solid var(--nx-line);
}
.nx-comments .comment .children { list-style: none; padding: 14px 0 0 22px; margin: 14px 0 0;
  border-left: 2px solid var(--nx-line); }
.nx-comments .comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.nx-comments .comment-author img { width: 40px; height: 40px; border-radius: 50%; }
.nx-comments .comment-author .fn { font-weight: 700; color: var(--nx-text); font-size: 14.5px; }
.nx-comments .comment-author .says { display: none; }
.nx-comments .comment-metadata {
  font-family: var(--nx-font-mono); font-size: 12px; color: var(--nx-text-mute);
  margin-bottom: 10px;
}
.nx-comments .comment-metadata a { color: var(--nx-text-mute); }
.nx-comments .comment-content { color: var(--nx-text-2); line-height: 1.65; }
.nx-comments .reply { margin-top: 10px; }
.nx-comments .comment-reply-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--nx-font-mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--nx-green); font-weight: 700;
}
.nx-comments .no-comments { color: var(--nx-text-mute); text-align: center; padding: 24px; }

.nx-comment-form {
  padding: 28px; border-radius: var(--nx-r-lg);
  background: var(--nx-surface); border: 1px solid var(--nx-line);
}
.nx-comment-form .comment-reply-title {
  font-family: var(--nx-font-display); font-weight: 700; font-size: 1.2rem;
  margin: 0 0 18px; color: var(--nx-text);
}
.nx-comment-form .comment-form-comment,
.nx-comment-form .comment-form-author,
.nx-comment-form .comment-form-email,
.nx-comment-form .comment-form-url { margin-bottom: 14px; }
.nx-comment-form label {
  display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--nx-text-mute); font-family: var(--nx-font-mono); font-weight: 600; margin-bottom: 6px;
}
.nx-comment-form input[type=text],
.nx-comment-form input[type=email],
.nx-comment-form input[type=url],
.nx-comment-form textarea {
  width: 100%; padding: 12px 16px; font: inherit; font-size: 14.5px;
  background: var(--nx-bg-2); border: 1px solid var(--nx-line-strong);
  color: var(--nx-text); border-radius: var(--nx-r-sm);
  transition: all var(--nx-fast); resize: vertical;
}
.nx-comment-form input:focus, .nx-comment-form textarea:focus {
  outline: none; border-color: var(--nx-green); box-shadow: 0 0 0 3px rgba(0,226,122,.14);
}
.nx-comment-form .form-submit input[type=submit] {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--nx-font-display); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  color: #04130A; background: var(--nx-grad-cta);
  box-shadow: 0 10px 28px -8px rgba(0,226,122,.55);
  transition: all var(--nx-fast);
}
.nx-comment-form .form-submit input[type=submit]:hover { transform: translateY(-2px); }
.nx-comment-form .comment-notes, .nx-comment-form .logged-in-as { font-size: 13px; color: var(--nx-text-mute); margin-bottom: 14px; }

/* ========== 16z. POLISH PASS — refinements that lift the whole theme ========== */

/* Eyebrow: subtle pulsing glow under the dot, refined border */
.nx-eyebrow {
  background: linear-gradient(180deg, rgba(0,226,122,.10), rgba(0,226,122,.04));
  border-color: rgba(0,226,122,.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 18px -8px rgba(0,226,122,.45);
}

/* Buttons: refined press feel (shadow tokens defined on the button itself) */
.nx-btn:active { transform: translateY(0) scale(.98); transition-duration: .08s; }

/* Card-family: light-beam sheen on hover (CSS only) */
.nx-feature, .nx-match, .nx-step, .nx-quote, .nx-value, .nx-bonus-tile, .nx-pay, .nx-channel {
  position: relative; overflow: hidden;
  transition: transform var(--nx-mid) var(--nx-ease-out),
              border-color var(--nx-mid),
              box-shadow var(--nx-mid);
}
.nx-feature:hover, .nx-match:hover, .nx-step:hover, .nx-quote:hover,
.nx-value:hover, .nx-bonus-tile:hover, .nx-pay:hover, .nx-channel:hover {
  box-shadow: var(--nx-shadow-lg);
}
.nx-feature::after, .nx-match::after, .nx-step::after, .nx-quote::after,
.nx-bonus-tile::after, .nx-pay::after, .nx-channel::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.05) 48%, transparent 60%);
  transform: translateX(-100%); opacity: 0;
  transition: transform .9s var(--nx-ease-out), opacity .25s;
}
.nx-feature:hover::after, .nx-match:hover::after, .nx-step:hover::after, .nx-quote:hover::after,
.nx-bonus-tile:hover::after, .nx-pay:hover::after, .nx-channel:hover::after {
  transform: translateX(100%); opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .nx-feature::after, .nx-match::after, .nx-step::after, .nx-quote::after,
  .nx-bonus-tile::after, .nx-pay::after, .nx-channel::after { display: none; }
}

/* Featured promo / hero promo: refined gradient border treatment */
.nx-promo, .nx-promo-hero {
  box-shadow: var(--nx-shadow-md);
  transition: box-shadow var(--nx-mid), transform var(--nx-mid);
}
.nx-promo:hover, .nx-promo-hero:hover { box-shadow: var(--nx-shadow-lg); transform: translateY(-3px); }

/* Section-head h2 — premium emphasis on the gradient em */
.nx-section-head h2 em,
.nx-finalcta h2 em,
.nx-pagehero h1 em,
.nx-split__copy h2 em,
.nx-hero__rotator {
  filter: drop-shadow(0 4px 28px rgba(0,226,122,.18));
}

/* Stats card — refined inner glow */
.nx-stats { box-shadow: var(--nx-shadow-md), inset 0 1px 0 rgba(255,255,255,.04); }
.nx-stat { transition: background var(--nx-mid); }
.nx-stat:hover { background: rgba(0,226,122,.04); }

/* Live odds card in hero — subtle scan line and elevation */
.nx-hero__odds-card {
  box-shadow: var(--nx-shadow-lg), inset 0 1px 0 rgba(255,255,255,.06);
}
.nx-hero__odds-card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--nx-cyan), transparent);
  opacity: .6;
}

/* Marquee — fade edges deeper for a cleaner read */
.nx-marquee::before { background: linear-gradient(90deg, var(--nx-bg) 25%, transparent); }
.nx-marquee::after  { background: linear-gradient(-90deg, var(--nx-bg) 25%, transparent); }

/* Channel cards (Contact) — refined gradient on hover */
.nx-channel { box-shadow: var(--nx-shadow-md); }
.nx-channel:hover { box-shadow: var(--nx-shadow-lg), 0 0 0 1px rgba(0,226,122,.25); }

/* FAQ accordion: smoother open animation, polished marker */
.nx-faq__item { box-shadow: var(--nx-shadow-sm); transition: border-color var(--nx-fast), box-shadow var(--nx-fast); }
.nx-faq__item:hover { box-shadow: var(--nx-shadow-md); }
.nx-faq__item[open] { box-shadow: var(--nx-shadow-md), 0 0 0 1px rgba(0,226,122,.18); }

/* Live-payouts ticker — refined edge */
.nx-ticker { box-shadow: var(--nx-shadow-md); }

/* Final CTA — refined glow border */
.nx-finalcta {
  box-shadow: var(--nx-shadow-lg), inset 0 1px 0 rgba(255,255,255,.04);
}
.nx-finalcta::after {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--nx-green), transparent);
  opacity: .6;
}

/* Hairline divider above each non-hero section that has a background */
.nx-section[style*="linear-gradient"] {
  border-top: 1px solid var(--nx-line);
  position: relative;
}
.nx-section[style*="linear-gradient"]::before {
  content: ''; position: absolute; left: 50%; top: -1px; transform: translateX(-50%);
  width: 220px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--nx-green), transparent);
  opacity: .35; pointer-events: none;
}

/* Header: tighter scrolled state */
.nx-header.is-scrolled {
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.6);
}

/* Footer band: subtle top shimmer */
.nx-footer__band { position: relative; }
.nx-footer__band::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,122,.4), transparent);
  pointer-events: none;
}

/* Tier cards (VIP) — refined hover */
.nx-tier { box-shadow: var(--nx-shadow-sm); transition: transform var(--nx-mid), border-color var(--nx-mid), box-shadow var(--nx-mid); }
.nx-tier:hover { box-shadow: var(--nx-shadow-md); }

/* Selection refinement */
::selection { background: var(--nx-green); color: #04130A; text-shadow: none; }

/* Refine scrollbar (Chromium) for the dark theme */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--nx-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--nx-surface-2), var(--nx-surface));
  border-radius: 8px; border: 2px solid var(--nx-bg);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--nx-green), #00B564); }

/* ========================================================================
   16zz. MOBILE RESPONSIVE POLISH
   Below 900px: stack everything, centre alignment, tighter padding.
   Below 480px: tighten further, larger tap targets, never crop.
   ======================================================================== */
@media (max-width: 900px) {
  .nx-container { padding: 0 18px; }

  /* HERO — stack & centre */
  .nx-hero__grid > div:first-child {
    text-align: center; display: flex; flex-direction: column; align-items: center;
  }
  .nx-hero__pill { margin-left: auto; margin-right: auto; }
  .nx-hero__title { font-size: clamp(1.9rem, 7.5vw, 2.8rem); line-height: 1.06; }
  .nx-hero__lede { margin: 14px auto 24px; max-width: 60ch; }
  .nx-hero__cta { justify-content: center; flex-wrap: wrap; width: 100%; }
  .nx-hero__cta .nx-btn { flex: 1 1 auto; min-width: 0; max-width: 320px; }
  .nx-hero__trust { justify-content: center; }
  .nx-hero__visual { margin: 32px auto 0; }

  /* PAGE HEROES — already centred, just tighten H1 */
  .nx-pagehero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* SECTION HEADS — fully centred on mobile */
  .nx-section-head {
    margin-left: auto; margin-right: auto; text-align: center;
  }
  .nx-section-head .nx-eyebrow { margin-left: auto; margin-right: auto; }
  .nx-section-head .nx-lede { margin-left: auto; margin-right: auto; }

  /* SPLITS — image first, copy centred */
  .nx-split__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .nx-split__copy .nx-eyebrow { margin-left: auto; margin-right: auto; }
  .nx-split__copy h2 { width: 100%; }
  .nx-split__copy p { max-width: 60ch; }
  .nx-split__copy .nx-btn { align-self: center; }
  .nx-split__copy > div { justify-content: center !important; }
  .nx-split__media { margin: 0 auto; }
  .nx-split--reverse .nx-split__media { order: 0; }

  /* FEATURES — centred icon + copy */
  .nx-feature { text-align: center; }
  .nx-feature__icon { margin-left: auto; margin-right: auto; }

  /* MATCH CARDS — keep readable */
  .nx-match__teams { text-align: left; }

  /* BONUS TILES — centred body */
  .nx-bonus-tile__body { text-align: center; align-items: center; }
  .nx-bonus-tile__cta { align-self: center; }
  .nx-bonus-tile__amount { margin-left: auto; margin-right: auto; }

  /* PROMOS — centred */
  .nx-promo { text-align: center; align-items: center; }
  .nx-promo .nx-promo__amount { margin-left: auto; margin-right: auto; }
  .nx-promo .nx-promo__cta { justify-content: center; }
  .nx-promo-hero__copy { text-align: center; align-items: center; }
  .nx-promo-hero__copy .nx-eyebrow { margin-left: auto; margin-right: auto; }
  .nx-promo-hero__copy > div { justify-content: center !important; }
  .nx-promo-hero__terms { justify-content: center; }
  .nx-promo-hero__amount { margin-left: auto; margin-right: auto; text-align: center; }

  /* STEPS — centred */
  .nx-step { text-align: center; }
  .nx-step__icon { margin-left: auto; margin-right: auto; }

  /* QUOTES — centred */
  .nx-quote { text-align: center; }
  .nx-quote::before { left: 50%; transform: translateX(-50%); top: -8px; }
  .nx-quote__who { justify-content: center; flex-wrap: wrap; }

  /* CONTACT CHANNEL CARDS — stack vertically, centred */
  .nx-channel { flex-direction: column; text-align: center; gap: 14px; padding: 24px 20px; }
  .nx-channel__icon { margin: 0 auto; }
  .nx-channel__name { justify-content: center; flex-wrap: wrap; }
  .nx-channel__cta { display: none; } /* whole card is the link */

  /* SINGLE POST — centre */
  .nx-singlehead__inner { text-align: center; }
  .nx-singlehead__meta { justify-content: center; }
  .nx-share { margin-left: 18px; margin-right: 18px; justify-content: center; }

  /* PROSE — slimmer side padding, centred */
  .nx-prose { padding-left: 18px; padding-right: 18px; }

  /* PAYMENTS PAGE — phone mockup smaller, ticker first */
  .nx-flow { padding: 22px; gap: 14px; }
  .nx-pay { text-align: center; align-items: center; }
  .nx-pay .nx-pay__rates { justify-content: center; }

  /* FINAL CTA */
  .nx-finalcta__cta { justify-content: center; }
  .nx-finalcta__cta .nx-btn { flex: 1 1 auto; max-width: 320px; }

  /* FOOTER — fully centred on mobile */
  .nx-footer__brand-col { text-align: center; }
  .nx-footer__brand { display: flex; justify-content: center; }
  .nx-footer__tag { margin-left: auto; margin-right: auto; }
  .nx-footer__social { justify-content: center; }
  .nx-footer__col { text-align: center; }
  .nx-footer__col h5 { text-align: center; }
  .nx-footer__band { flex-direction: column; align-items: center; gap: 22px; text-align: center; }
  .nx-footer__band-group { justify-content: center; flex-wrap: wrap; }
  .nx-footer__pays { justify-content: center; }
  .nx-footer__trust { justify-content: center; }
  .nx-footer__sig { text-align: center; flex-direction: column; gap: 8px; }

  /* HEADER — tighter inner padding */
  .nx-header__inner { padding: 12px 18px; }

  /* PAGE HERO METRICS — 2col, centred */
  .nx-pagehero__metrics { gap: 12px; }

  /* TICKER + PHONE GRID — stack, hide mockup on small */
  .payments-page section .nx-container > div[style*="grid-template-columns:1.4fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .nx-phone { display: none; }

  /* TIERS already responsive */

  /* T&Cs row — already collapses (good) */

  /* SPEED BARS — already responsive */
}

@media (max-width: 480px) {
  /* Even tighter on phones */
  .nx-container { padding: 0 14px; }
  .nx-section { padding: clamp(28px, 7vw, 44px) 0; }
  .nx-pagehero { padding: clamp(36px, 9vw, 56px) 0 clamp(16px, 4vw, 28px); }
  .nx-hero { padding: clamp(36px, 9vw, 56px) 0 clamp(24px, 6vw, 40px); }

  /* Smaller fonts on tiny screens */
  .nx-hero__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .nx-pagehero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .nx-section-head h2, .nx-finalcta h2, .nx-split__copy h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Tighter cards */
  .nx-feature, .nx-step, .nx-value, .nx-quote, .nx-channel { padding: 22px 18px; }
  .nx-promo { padding: 24px 20px; min-height: 280px; }
  .nx-bonus-tile__body { padding: 18px 18px 22px; }
  .nx-pay { padding: 20px 18px; min-height: 0; }

  /* Match card tighter */
  .nx-match { padding: 18px; }
  .nx-match__odds { gap: 4px; }

  /* Hero metrics 2col always */
  .nx-pagehero__metrics { grid-template-columns: 1fr 1fr; }
  .nx-pagehero__metric { padding: 16px 10px; }
  .nx-pagehero__metric .num { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  /* Stats — make sure text fits */
  .nx-stat { padding: 26px 14px; }
  .nx-stat__num { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  /* Final CTA padding */
  .nx-finalcta { padding: 36px 22px; }

  /* Header logo */
  .nx-header__inner { padding: 10px 14px; gap: 12px; }

  /* Footer — single col on phones */
  .nx-footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 18px 0; }

  /* Eyebrow tighter */
  .nx-eyebrow { font-size: 11px; padding: 6px 12px; letter-spacing: .15em; }

  /* CTAs full width on phones */
  .nx-btn--lg { width: 100%; max-width: 320px; }
  .nx-hero__cta .nx-btn, .nx-finalcta__cta .nx-btn { width: 100%; max-width: 320px; }

  /* Single-head meta wrap */
  .nx-singlehead__meta { gap: 8px; font-size: 12px; flex-wrap: wrap; }

  /* Promo hero amount smaller */
  .nx-promo-hero__amount { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  /* Steps num smaller */
  .nx-step__num { font-size: 3.2rem; }

  /* Bonus tile amount smaller */
  .nx-bonus-tile__amount { font-size: 1.6rem; }

  /* Hide back-to-top on tiny screens — burger is already a clear escape */
  .nx-totop { right: 14px; bottom: 14px; width: 42px; height: 42px; }

  /* FAQ — tighter padding */
  .nx-faq__q { padding: 18px 20px; font-size: 1rem; }
  .nx-faq__a { padding: 0 20px 18px; font-size: 14px; }

  /* Cat pills wrap nicely */
  .nx-faq-cats { gap: 6px; }
  .nx-cat-pill { font-size: 12.5px; padding: 8px 12px; }
  .nx-cat-pill__count { font-size: 10px; padding: 1px 6px; }

  /* Live odds card in hero — smaller, repositioned */
  .nx-hero__odds-card { min-width: 0; padding: 12px 14px; }
  .nx-hero__odds-card h6 { font-size: 10px; }
  .nx-hero__odds-row { font-size: 12px; }
}

/* ========== 17. ANIMATIONS ========== */
@keyframes nx-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50%      { box-shadow: 0 0 0 10px transparent; opacity: .65; }
}
@keyframes nx-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes nx-rise {
  0%   { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes nx-glow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.2); }
}

/* Reveal-on-scroll utility — visible by default; JS opts into the hidden state.
   Without JS or with prefers-reduced-motion, every element stays visible. */
html.nx-js [data-nx-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--nx-slow) var(--nx-ease-out), transform var(--nx-slow) var(--nx-ease-out);
}
html.nx-js [data-nx-reveal].is-visible { opacity: 1; transform: translateY(0); }
html.nx-js [data-nx-reveal][data-nx-delay="1"].is-visible { transition-delay: .08s; }
html.nx-js [data-nx-reveal][data-nx-delay="2"].is-visible { transition-delay: .16s; }
html.nx-js [data-nx-reveal][data-nx-delay="3"].is-visible { transition-delay: .24s; }
html.nx-js [data-nx-reveal][data-nx-delay="4"].is-visible { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  html.nx-js [data-nx-reveal] { opacity: 1; transform: none; }
}

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { position: fixed; left: 12px; top: 12px; padding: 10px 14px;
  background: var(--nx-green); color: #04130A; border-radius: 8px; z-index: 1000; }
