/*!
 * 9wickets Pro — Homepage Sections ("Stadium Night")
 * Loaded after nine-wickets-shell.css. All section markup uses .nw-* classes.
 * Reuses tokens from nine-wickets-brand.css (--vk-*).
 */

/* ============================================================
   0. PAGE PRIMITIVES
   ============================================================ */
body.vk .nw-section {
    position: relative;
    padding: clamp(36px, 4.5vw, 64px) clamp(16px, 4vw, 56px);
    max-width: 1320px;
    margin: 0 auto;
}
body.vk .nw-section__head {
    max-width: 720px;
    margin: 0 auto clamp(20px, 2.4vw, 32px);
    text-align: center;
}
body.vk .nw-section__head .nw-eyebrow { justify-content: center; }
body.vk .nw-section__head .nw-lead { margin-left: auto; margin-right: auto; }
.nw-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.nw-eyebrow::before,
body.vk .nw-section__head .nw-eyebrow::after {
    content: "";
    width: 22px; height: 1px;
    background: var(--vk-gold);
}
.nw-h2 {
    margin: 0 0 10px;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.005em;
    color: var(--vk-text);
}
.nw-h2 em {
    font-style: normal;
    background: var(--vk-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nw-lead {
    margin: 0;
    font-size: clamp(13.5px, 1.05vw, 15px);
    line-height: 1.6;
    color: var(--vk-text-mid);
    max-width: 62ch;
}

.nw-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    line-height: 1;
}
.nw-btn--primary {
    background: var(--vk-grad-gold);
    color: #0A0500;
    box-shadow:
        0 14px 36px rgba(245, 177, 0, 0.30),
        0 0 0 1px rgba(245, 177, 0, 0.50) inset;
}
.nw-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 50px rgba(245, 177, 0, 0.45),
        0 0 0 1px rgba(245, 177, 0, 0.78) inset;
}
.nw-btn--ghost {
    color: var(--vk-text);
    border: 1px solid rgba(245, 177, 0, 0.32);
    background: rgba(255, 255, 255, 0.015);
}
.nw-btn--ghost:hover {
    color: var(--vk-gold-2);
    border-color: var(--vk-gold);
    background: rgba(245, 177, 0, 0.06);
    transform: translateY(-2px);
}
.nw-btn--lg { padding: 14px 22px; font-size: 13.5px; }
.nw-btn svg { width: 14px; height: 14px; }

/* ============================================================
   1. HERO
   ============================================================ */
.nw-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6.5vw, 88px) clamp(16px, 4vw, 56px) clamp(36px, 4.5vw, 64px);
    isolation: isolate;
}

.nw-hero__bg {
    position: absolute; inset: 0; z-index: -1;
    pointer-events: none;
}
.nw-hero__bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 50% at 12% 10%, rgba(245, 177, 0, 0.18), transparent 60%),
        radial-gradient(50% 40% at 88% 8%,  rgba(211, 32, 48, 0.12), transparent 60%),
        radial-gradient(40% 35% at 50% 100%, rgba(245, 177, 0, 0.08), transparent 70%),
        var(--vk-bg);
}
.nw-hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(245, 177, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 177, 0, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 75%);
    opacity: 0.7;
}
/* Wicket-stump motif (decorative) */
.nw-hero__stumps {
    position: absolute;
    right: 6%; top: 18%;
    width: 120px; height: 220px;
    z-index: -1;
    opacity: 0.18;
    transform: rotate(-2deg);
    background:
        linear-gradient(transparent 0%, transparent 14%,
            rgba(245, 177, 0, 0.85) 14%, rgba(245, 177, 0, 0.85) 14.6%,
            transparent 14.6%);
    filter: blur(0.2px);
}
.nw-hero__stumps::before, .nw-hero__stumps::after {
    content: "";
    position: absolute; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        rgba(245, 177, 0, 0.0) 0%,
        rgba(245, 177, 0, 0.55) 8%,
        rgba(245, 177, 0, 0.85) 50%,
        rgba(245, 177, 0, 0.4) 100%);
    border-radius: 2px;
}
.nw-hero__stumps::before { left: 20px; }
.nw-hero__stumps::after  { left: 50%; transform: translateX(-50%); }
.nw-hero__stumps i {
    position: absolute;
    top: 0; right: 20px;
    width: 4px; bottom: 0;
    background: linear-gradient(180deg,
        rgba(245, 177, 0, 0.0) 0%,
        rgba(245, 177, 0, 0.55) 8%,
        rgba(245, 177, 0, 0.85) 50%,
        rgba(245, 177, 0, 0.4) 100%);
    border-radius: 2px;
}

.nw-hero__inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(24px, 3.5vw, 56px);
    align-items: center;
}
@media (max-width: 980px) {
    .nw-hero__inner { grid-template-columns: 1fr; }
}

.nw-hero__chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 8px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(245, 177, 0, 0.32);
    border-radius: 999px;
    color: var(--vk-text);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 18px;
    text-decoration: none;
    transition: border-color .25s ease, background .25s ease;
}
.nw-hero__chip:hover {
    border-color: var(--vk-gold);
    background: rgba(245, 177, 0, 0.06);
}
.nw-hero__chip-dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #D32030;
    box-shadow: 0 0 12px rgba(211, 32, 48, 0.7);
    animation: nw-pulse 1.8s cubic-bezier(.4,0,.6,1) infinite;
}
.nw-hero__chip b {
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
}

.nw-hero__title {
    margin: 0 0 16px;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.012em;
    color: var(--vk-text);
}
.nw-hero__title em {
    font-style: normal;
    background: var(--vk-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}
.nw-hero__title em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent, var(--vk-gold) 18%, var(--vk-gold) 82%, transparent);
    border-radius: 6px;
    opacity: 0.55;
    filter: blur(1.5px);
}
.nw-hero__title small {
    display: block;
    font-family: var(--vk-font-en);
    font-style: italic;
    font-weight: 500;
    font-size: 0.32em;
    letter-spacing: 0.04em;
    color: var(--vk-text-mid);
    margin-top: 8px;
}

.nw-hero__lead {
    font-size: clamp(13.5px, 1.05vw, 15.5px);
    line-height: 1.65;
    color: var(--vk-text-mid);
    margin: 0 0 22px;
    max-width: 54ch;
}
.nw-hero__lead strong {
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 800;
    font-feature-settings: "tnum" 1;
}

.nw-hero__cta {
    display: inline-flex; flex-wrap: wrap; gap: 12px;
    align-items: center;
}

/* Right column — feature card stack */
.nw-hero__panel {
    position: relative;
    padding: clamp(16px, 2.2vw, 22px);
    background: linear-gradient(180deg,
        rgba(20, 22, 31, 0.72),
        rgba(10, 11, 16, 0.65));
    border: 1px solid rgba(245, 177, 0, 0.20);
    border-radius: 18px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(245, 177, 0, 0.10) inset;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.nw-hero__panel::before {
    content: "";
    position: absolute; inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(245, 177, 0, 0.45) 0%,
        rgba(245, 177, 0, 0.05) 35%,
        transparent 60%,
        rgba(211, 32, 48, 0.30) 100%);
    -webkit-mask:
        linear-gradient(#000, #000) content-box,
        linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.nw-hero__panel-h {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.nw-hero__panel-h h3 {
    margin: 0;
    color: var(--vk-text);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nw-hero__panel-live {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.nw-hero__panel-live::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 999px;
    background: #D32030;
    box-shadow: 0 0 10px rgba(211, 32, 48, 0.7);
    animation: nw-pulse 1.8s cubic-bezier(.4,0,.6,1) infinite;
}
.nw-hero__panel-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
}
.nw-hero__panel-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 177, 0, 0.10);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.nw-hero__panel-row:hover {
    border-color: rgba(245, 177, 0, 0.32);
    background: rgba(245, 177, 0, 0.04);
    transform: translateX(2px);
}
.nw-hero__panel-row__icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--vk-grad-gold);
    color: #0A0500;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 177, 0, 0.30);
}
.nw-hero__panel-row__icon svg { width: 14px; height: 14px; }
.nw-hero__panel-row__name {
    color: var(--vk-text);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
}
.nw-hero__panel-row__sub {
    display: block;
    color: var(--vk-text-dim);
    font-size: 11px;
    margin-top: 2px;
}
.nw-hero__panel-row__time {
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.04em;
}

/* Hero ticker */
.nw-hero__ticker {
    margin-top: clamp(24px, 3.5vw, 40px);
    padding: 11px 0;
    overflow: hidden;
    border-top: 1px solid rgba(245, 177, 0, 0.10);
    border-bottom: 1px solid rgba(245, 177, 0, 0.10);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nw-hero__ticker-track {
    display: inline-flex; gap: 36px;
    animation: nw-ticker 35s linear infinite;
    white-space: nowrap;
}
@keyframes nw-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.nw-hero__ticker-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--vk-text-mid);
    font-family: var(--vk-font-en);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nw-hero__ticker-item svg { width: 14px; height: 14px; color: var(--vk-gold-2); }
.nw-hero__ticker-sep {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: rgba(245, 177, 0, 0.40);
    flex-shrink: 0;
}

/* ============================================================
   2. STAT STRIP
   ============================================================ */
.nw-stats {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(20px, 2.4vw, 32px) clamp(16px, 4vw, 56px);
    border-top: 1px solid rgba(245, 177, 0, 0.10);
    border-bottom: 1px solid rgba(245, 177, 0, 0.10);
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.014),
        rgba(255, 255, 255, 0));
}
.nw-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
    align-items: center;
}
@media (max-width: 720px) {
    .nw-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
.nw-stat {
    text-align: center;
}
.nw-stat__num {
    display: block;
    font-family: var(--vk-font-en);
    font-weight: 800;
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1;
    color: var(--vk-text);
    background: var(--vk-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
    font-feature-settings: "tnum" 1;
}
.nw-stat__num small {
    font-size: 0.5em;
    color: var(--vk-text-mid);
    -webkit-text-fill-color: var(--vk-text-mid);
    margin-left: 2px;
    letter-spacing: 0;
}
.nw-stat__lbl {
    display: block;
    margin-top: 6px;
    color: var(--vk-text-mid);
    font-size: 12px;
    letter-spacing: 0.005em;
}

/* ============================================================
   3. AGENT CATEGORIES (cards)
   ============================================================ */
.nw-agents__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 2.4vw, 28px);
}
.nw-agent-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 18px 18px 14px;
    background: linear-gradient(180deg,
        rgba(20, 22, 31, 0.65),
        rgba(10, 11, 16, 0.58));
    border: 1px solid rgba(245, 177, 0, 0.16);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.nw-agent-card::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0;
    height: 2px;
    background: var(--vk-grad-gold);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.nw-agent-card::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(60% 40% at 50% 0%, rgba(245, 177, 0, 0.10), transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.nw-agent-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 177, 0, 0.45);
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(245, 177, 0, 0.18) inset;
}
.nw-agent-card:hover::before { transform: scaleX(1); }
.nw-agent-card:hover::after  { opacity: 1; }
.nw-agent-card__badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(245, 177, 0, 0.10);
    border: 1px solid rgba(245, 177, 0, 0.32);
    border-radius: 999px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    align-self: flex-start;
    margin-bottom: 10px;
}
.nw-agent-card__title {
    margin: 0 0 2px;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 17px;
    color: var(--vk-text);
}
.nw-agent-card__sub {
    margin: 0 0 8px;
    font-family: var(--vk-font-en);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vk-gold);
}
.nw-agent-card__desc {
    margin: 0 0 14px;
    color: var(--vk-text-mid);
    font-size: 13px;
    line-height: 1.55;
}
.nw-agent-card__foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed rgba(245, 177, 0, 0.18);
    color: var(--vk-text);
    font-size: 12px;
}
.nw-agent-card__meta {
    color: var(--vk-text-mid);
    font-size: 11.5px;
}
.nw-agent-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap .25s ease;
}
.nw-agent-card:hover .nw-agent-card__cta { gap: 10px; }
.nw-agent-card__cta svg { width: 14px; height: 14px; }

/* ============================================================
   4. WHY (feature cards)
   ============================================================ */
.nw-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 2.4vw, 28px);
}
.nw-why-card {
    position: relative;
    padding: 18px 18px;
    background: linear-gradient(180deg,
        rgba(20, 22, 31, 0.55),
        rgba(10, 11, 16, 0.50));
    border: 1px solid rgba(245, 177, 0, 0.14);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
}
.nw-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 177, 0, 0.40);
}
.nw-why-card__num {
    position: absolute;
    top: 14px; right: 16px;
    font-family: var(--vk-font-en);
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 177, 0, 0.45);
    letter-spacing: -0.02em;
    opacity: 0.85;
}
.nw-why-card__icon {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.15), rgba(245, 177, 0, 0.04));
    border: 1px solid rgba(245, 177, 0, 0.32);
    color: var(--vk-gold-2);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}
.nw-why-card:hover .nw-why-card__icon {
    background: var(--vk-grad-gold);
    color: #0A0500;
    transform: rotate(-4deg) scale(1.04);
}
.nw-why-card__icon svg { width: 20px; height: 20px; }
.nw-why-card__title {
    margin: 0 0 6px;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 16px;
    color: var(--vk-text);
}
.nw-why-card__desc {
    margin: 0;
    color: var(--vk-text-mid);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================================
   5. HOW TO START (steps)
   ============================================================ */
.nw-steps {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
}
@media (max-width: 980px) {
    .nw-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .nw-steps { grid-template-columns: 1fr; }
}
.nw-step {
    position: relative;
    padding: 22px 20px;
    border-right: 1px solid rgba(245, 177, 0, 0.12);
}
.nw-step:last-child { border-right: 0; }
@media (max-width: 980px) {
    .nw-step:nth-child(2n) { border-right: 0; }
    .nw-step { border-bottom: 1px solid rgba(245, 177, 0, 0.12); }
    .nw-step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
    .nw-step { border-right: 0; border-bottom: 1px solid rgba(245, 177, 0, 0.12); }
    .nw-step:last-child { border-bottom: 0; }
}
.nw-step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.18), rgba(245, 177, 0, 0.04));
    border: 1px solid rgba(245, 177, 0, 0.45);
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(245, 177, 0, 0.18);
}
.nw-step__title {
    margin: 0 0 6px;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--vk-text);
}
.nw-step__desc {
    margin: 0;
    color: var(--vk-text-mid);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================================
   6. LIVE ACTIVITY FEED
   ============================================================ */
.nw-live {
    position: relative;
}
.nw-live::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(60% 40% at 50% 0%, rgba(245, 177, 0, 0.08), transparent 70%);
    pointer-events: none;
}
.nw-live__feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    position: relative;
}
.nw-live__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(245, 177, 0, 0.14);
    border-radius: 12px;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.nw-live__row:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 177, 0, 0.40);
    background: rgba(245, 177, 0, 0.04);
}
.nw-live__avatar {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.20), rgba(245, 177, 0, 0.06));
    border: 1px solid rgba(245, 177, 0, 0.45);
    color: var(--vk-gold-2);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.nw-live__body { min-width: 0; }
.nw-live__who {
    display: inline-flex; align-items: center; gap: 6px;
    margin: 0 0 2px;
    color: var(--vk-text);
    font-size: 12.5px;
    font-weight: 600;
}
.nw-live__where {
    color: var(--vk-text-dim);
    font-size: 11px;
    font-weight: 500;
}
.nw-live__what {
    margin: 0;
    color: var(--vk-text-mid);
    font-size: 12px;
    line-height: 1.4;
}
.nw-live__what b {
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
}
.nw-live__time {
    color: var(--vk-text-dim);
    font-size: 11px;
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 4px;
}
.nw-live__dot {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.nw-live__dot::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--vk-gold);
}
.nw-live__row[data-kind="cash"]   .nw-live__dot { color: #FFD66B; }
.nw-live__row[data-kind="cash"]   .nw-live__dot::before { background: #FFD66B; }
.nw-live__row[data-kind="win"]    .nw-live__dot { color: #FFE6A3; }
.nw-live__row[data-kind="win"]    .nw-live__dot::before { background: #FFE6A3; }
.nw-live__row[data-kind="bonus"]  .nw-live__dot { color: #E63A48; }
.nw-live__row[data-kind="bonus"]  .nw-live__dot::before { background: #E63A48; box-shadow: 0 0 8px rgba(230, 58, 72, 0.6); }

.nw-live__foot {
    margin-top: 14px;
    text-align: center;
    color: var(--vk-text-dim);
    font-size: 12px;
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; justify-content: center;
}
.nw-live__foot::before, .nw-live__foot::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 177, 0, 0.18), transparent);
    max-width: 200px;
}

/* ============================================================
   7. TESTIMONIALS
   ============================================================ */
.nw-quotes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 2.4vw, 28px);
}
.nw-quote {
    position: relative;
    padding: 22px 22px 18px;
    background: linear-gradient(180deg,
        rgba(20, 22, 31, 0.65),
        rgba(10, 11, 16, 0.55));
    border: 1px solid rgba(245, 177, 0, 0.18);
    border-radius: 16px;
    transition: transform .35s ease, border-color .35s ease;
}
.nw-quote:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 177, 0, 0.45);
}
.nw-quote__mark {
    position: absolute;
    top: 12px; right: 18px;
    font-family: var(--vk-font-serif);
    font-style: italic;
    font-size: 60px;
    line-height: 1;
    color: rgba(245, 177, 0, 0.22);
}
.nw-quote__rating {
    display: inline-flex; gap: 3px;
    color: var(--vk-gold);
    margin-bottom: 12px;
}
.nw-quote__rating svg { width: 12px; height: 12px; }
.nw-quote blockquote {
    margin: 0 0 16px;
    color: var(--vk-text);
    font-family: var(--vk-font-bn);
    font-size: 13.5px;
    line-height: 1.65;
}
.nw-quote__foot {
    display: flex; align-items: center; gap: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(245, 177, 0, 0.18);
}
.nw-quote__avatar {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: var(--vk-grad-gold);
    color: #0A0500;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 11.5px;
    flex-shrink: 0;
}
.nw-quote__who { display: block; }
.nw-quote__who strong {
    display: block;
    color: var(--vk-text);
    font-size: 13px;
    font-weight: 700;
}
.nw-quote__who small {
    display: block;
    color: var(--vk-text-dim);
    font-size: 11.5px;
    margin-top: 2px;
}

/* ============================================================
   8. COMMUNITY (social cards)
   ============================================================ */
.nw-social__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 2vw, 22px);
}
.nw-social-card {
    position: relative;
    display: block;
    padding: 16px 16px 14px;
    background: linear-gradient(180deg,
        rgba(20, 22, 31, 0.6),
        rgba(10, 11, 16, 0.5));
    border: 1px solid rgba(245, 177, 0, 0.16);
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
}
.nw-social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 177, 0, 0.42);
}
.nw-social-card__top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.nw-social-card__icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.18), rgba(245, 177, 0, 0.04));
    border: 1px solid rgba(245, 177, 0, 0.32);
    color: var(--vk-gold-2);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .35s ease, color .35s ease;
}
.nw-social-card:hover .nw-social-card__icon {
    background: var(--vk-grad-gold);
    color: #0A0500;
}
.nw-social-card__icon svg { width: 18px; height: 18px; }
.nw-social-card__count {
    text-align: right;
    color: var(--vk-text);
    font-family: var(--vk-font-en);
    font-weight: 800;
    font-size: 14px;
}
.nw-social-card__count em {
    display: block;
    font-style: normal;
    color: var(--vk-text-dim);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}
.nw-social-card__title {
    margin: 0 0 4px;
    color: var(--vk-text);
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 14.5px;
}
.nw-social-card__desc {
    margin: 0 0 10px;
    color: var(--vk-text-mid);
    font-size: 12.5px;
    line-height: 1.55;
}
.nw-social-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap .25s ease;
}
.nw-social-card:hover .nw-social-card__cta { gap: 10px; }

/* ============================================================
   9. BLOG
   ============================================================ */
.nw-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 2.4vw, 28px);
}
.nw-blog-card {
    background: linear-gradient(180deg,
        rgba(20, 22, 31, 0.55),
        rgba(10, 11, 16, 0.48));
    border: 1px solid rgba(245, 177, 0, 0.14);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease;
}
.nw-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 177, 0, 0.40);
}
.nw-blog-card a {
    display: grid;
    grid-template-rows: auto 1fr;
    color: inherit;
    text-decoration: none;
}
.nw-blog-card__cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(245, 177, 0, 0.04);
}
.nw-blog-card__cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.nw-blog-card:hover .nw-blog-card__cover img { transform: scale(1.06); }
.nw-blog-card__cover-fallback {
    position: absolute; inset: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(245, 177, 0, 0.30);
}
.nw-blog-card__cat {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    background: rgba(10, 11, 16, 0.72);
    border: 1px solid rgba(245, 177, 0, 0.36);
    border-radius: 999px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.nw-blog-card__body { padding: 16px 16px 18px; }
.nw-blog-card__meta {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--vk-text-dim);
    font-size: 11px;
    margin-bottom: 8px;
}
.nw-blog-card__meta span { color: rgba(245, 177, 0, 0.50); }
.nw-blog-card__title {
    margin: 0 0 6px;
    color: var(--vk-text);
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.32;
}
.nw-blog-card__excerpt {
    margin: 0 0 12px;
    color: var(--vk-text-mid);
    font-size: 12.5px;
    line-height: 1.6;
}
.nw-blog-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap .25s ease;
}
.nw-blog-card:hover .nw-blog-card__cta { gap: 10px; }
.nw-blog-card__cta svg { width: 14px; height: 14px; }
.nw-blog__more {
    margin-top: 22px;
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   10. FAQ (accordion)
   ============================================================ */
.nw-faq__list {
    display: grid; gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}
.nw-faq__item {
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(245, 177, 0, 0.14);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s ease;
}
.nw-faq__item[open] { border-color: rgba(245, 177, 0, 0.40); }
.nw-faq__item summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    color: var(--vk-text);
    font-family: var(--vk-font-bn);
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}
.nw-faq__item summary::-webkit-details-marker { display: none; }
.nw-faq__chev {
    width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--vk-gold-2);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nw-faq__chev::before {
    content: "";
    width: 10px; height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nw-faq__item[open] .nw-faq__chev::before { transform: rotate(-135deg); }
.nw-faq__answer {
    padding: 0 20px 18px;
    color: var(--vk-text-mid);
    font-size: 13px;
    line-height: 1.7;
}
.nw-faq__answer p { margin: 0; }
.nw-faq__more {
    margin-top: 18px;
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   11. FINAL CTA
   ============================================================ */
.nw-final {
    position: relative;
    margin: clamp(28px, 4vw, 56px) auto 0;
    max-width: 1320px;
    padding: 0 clamp(16px, 4vw, 56px);
}
.nw-final__inner {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
    background: linear-gradient(135deg, #1A1208 0%, #0E0A04 60%);
    border: 1px solid rgba(245, 177, 0, 0.32);
    border-radius: clamp(16px, 2.4vw, 24px);
    text-align: center;
    isolation: isolate;
}
.nw-final__inner::before {
    content: "";
    position: absolute; inset: -40% -10% auto auto;
    width: 80%; height: 200%;
    background: radial-gradient(closest-side, rgba(245, 177, 0, 0.32), transparent 70%);
    transform: rotate(-12deg);
    z-index: -1;
}
.nw-final__inner::after {
    content: "";
    position: absolute; left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(245, 177, 0, 0.55) 30%,
        rgba(245, 177, 0, 1) 50%,
        rgba(245, 177, 0, 0.55) 70%, transparent);
}
.nw-final h2 {
    margin: 10px 0 10px;
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.15;
    color: var(--vk-text);
    letter-spacing: -0.012em;
}
.nw-final h2 em {
    font-style: normal;
    background: var(--vk-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nw-final p {
    margin: 0 auto 22px;
    max-width: 56ch;
    color: var(--vk-text-mid);
    font-size: clamp(13px, 1.05vw, 14.5px);
    line-height: 1.65;
}
.nw-final__buttons {
    display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
