/* Local typefaces - no remote font requests */
@font-face {
    font-family: "Sora Local";
    src: url("/ui-pack/typefaces/sora-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sora Local";
    src: url("/ui-pack/typefaces/sora-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sora Local";
    src: url("/ui-pack/typefaces/sora-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Literata Local";
    src: url("/ui-pack/typefaces/literata-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Literata Local";
    src: url("/ui-pack/typefaces/literata-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --nx-ink: #070807;
    --nx-panel: #101310;
    --nx-panel-2: #161b16;
    --nx-line: #243024;
    --nx-mist: #c9d0c4;
    --nx-foam: #f4f7ef;
    --nx-acid: #b6ff2e;
    --nx-acid-dim: #7db31f;
    --nx-warn: #f0c24b;
    --nx-radius: 4px;
    --nx-max: 1180px;
}

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

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: "Sora Local", "Segoe UI", sans-serif;
    line-height: 1.55;
    color: var(--nx-mist);
    max-width: 100%;
    overflow-x: clip;
    background:
        radial-gradient(1200px 480px at 12% -10%, rgba(182, 255, 46, 0.08), transparent 60%),
        radial-gradient(900px 420px at 100% 0%, rgba(120, 160, 70, 0.06), transparent 55%),
        linear-gradient(180deg, #0a0c0a 0%, var(--nx-ink) 40%, #050605 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: repeating-linear-gradient(
        -18deg,
        #fff 0 1px,
        transparent 1px 14px
    );
    z-index: 0;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

.nx-shell {
    position: relative;
    z-index: 1;
}

/* Masthead */
.nx-mast {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(10, 12, 10, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nx-line);
}

.nx-mast__strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 22px;
    max-width: calc(var(--nx-max) + 80px);
    margin: 0 auto;
}

.nx-mast__brand a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nx-mast__brand img {
    display: block;
    height: 38px;
    width: auto;
}

.nx-mast__actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.nx-mast__actions .nx-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.nx-btn:hover { transform: translateY(-1px); }

.nx-btn--solid {
    background: var(--nx-acid);
    color: #0b1205;
}

.nx-btn--ghost {
    background: transparent;
    color: var(--nx-foam);
    border-color: #334033;
}

.nx-burger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #121812;
    border: 1px solid rgba(182, 255, 46, 0.5);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.nx-burger span {
    display: block;
    width: 18px;
    height: 2px;
    flex-shrink: 0;
    background: var(--nx-acid);
    margin: 0;
    border-radius: 1px;
}

/* Horizontal rail menu under masthead */
.nx-rail {
    border-top: 1px solid rgba(36, 48, 36, 0.8);
    background: rgba(7, 9, 7, 0.88);
}

.nx-rail__list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    max-width: calc(var(--nx-max) + 80px);
    margin: 0 auto;
    padding: 0 14px;
}

.nx-rail__item { flex: 0 0 auto; }

.nx-rail__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: #b7c0b2;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.nx-rail__link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: var(--nx-acid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nx-rail__link:hover,
.nx-rail__link.is-live {
    color: var(--nx-acid);
}

.nx-rail__link:hover::after,
.nx-rail__link.is-live::after {
    transform: scaleX(1);
}

.nav-glyph {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: currentColor;
}

.nx-dimmer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1250;
}

/* Stage / page body */
.nx-stage {
    width: min(100% - 28px, var(--nx-max));
    margin: 0 auto;
    padding: 22px 0 40px;
    min-height: 48vh;
}

.nx-crumbs {
    margin: 4px 0 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
}

.nx-crumbs__link {
    color: #8a9484;
    text-decoration: none;
}

.nx-crumbs__sep { color: #4a5548; }

/* Banner slider shell */
.nx-slider {
    margin-bottom: 28px;
    position: relative;
}

.nx-slider__track {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--nx-line);
    background: var(--nx-panel);
}

.nx-slider__slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 0;
    align-items: center;
}

.nx-slider__media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background:
        linear-gradient(135deg, rgba(182, 255, 46, 0.08), transparent 50%),
        #0d110d;
}

.nx-slider__media picture {
    display: block;
    width: 100%;
}

.nx-slider__img {
    display: block;
    width: 100%;
    max-width: 768px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 768 / 240;
    object-fit: contain;
}

.nx-slider__copy {
    padding: 22px 24px;
    position: relative;
    z-index: 2;
}

.nx-slider__kicker {
    font-size: 15px;
    font-weight: 700;
    color: var(--nx-foam);
    margin-bottom: 8px;
    line-height: 1.35;
}

.nx-slider__offer {
    font-size: 22px;
    font-weight: 700;
    color: var(--nx-acid);
    margin-bottom: 16px;
}

.nx-slider__copy .nx-btn {
    display: inline-flex;
    margin-top: 4px;
}

.nx-slider__dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

.nx-slider__dot {
    width: 22px;
    height: 3px;
    background: #3a4638;
    border: 0;
    padding: 0;
}

.nx-slider__dot.is-on {
    background: var(--nx-acid);
}

/* Game rails */
.nx-railblock {
    margin-bottom: 30px;
}

.nx-railblock__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.nx-railblock__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--nx-foam);
    letter-spacing: 0.01em;
}

.nx-railblock__more {
    font-size: 12px;
    color: #9aa894;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.nx-railblock__more:hover {
    color: var(--nx-acid);
    border-bottom-color: var(--nx-acid);
}

.nx-slotlane {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 154px);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.nx-slot {
    scroll-snap-align: start;
    background: var(--nx-panel);
    border: 1px solid var(--nx-line);
    display: flex;
    flex-direction: column;
    animation: nxRise 0.45s ease both;
}

.nx-slot:nth-child(2) { animation-delay: 0.04s; }
.nx-slot:nth-child(3) { animation-delay: 0.08s; }
.nx-slot:nth-child(4) { animation-delay: 0.12s; }

@keyframes nxRise {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.nx-slot__visual {
    background: #0b0f0b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 6px 0;
}

.nx-slot__img {
    width: 100%;
    height: auto;
    aspect-ratio: 266 / 372;
    object-fit: contain;
    display: block;
}

.nx-slot__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
}

.nx-slot__actions .nx-btn {
    width: 100%;
    padding: 8px 4px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    clip-path: none;
}

.nx-slot__name {
    padding: 0 8px 10px;
    text-align: center;
    font-size: 12px;
    color: #d5ddcf;
}

/* Bonus stack */
.nx-bonus-stack {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}

.nx-bonus-stack .nx-railblock__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--nx-foam);
    margin-bottom: 4px;
    font-family: "Sora Local", sans-serif;
}

.nx-bonus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    border: 1px solid rgba(182, 255, 46, 0.18);
    background:
        radial-gradient(520px 180px at 0% 0%, rgba(182, 255, 46, 0.1), transparent 55%),
        linear-gradient(120deg, #131913, #0d110d 55%, #151c13);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nx-bonus:hover {
    border-color: rgba(182, 255, 46, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.nx-bonus__media {
    position: relative;
    min-height: 200px;
    background: #0b100b;
    overflow: hidden;
}

.nx-bonus__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(7, 10, 7, 0.75));
    pointer-events: none;
}

.nx-bonus__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    transition: transform 0.35s ease;
}

.nx-bonus:hover .nx-bonus__media img {
    transform: scale(1.04);
}

.nx-bonus__body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nx-bonus__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--nx-foam);
    font-family: "Sora Local", sans-serif;
    letter-spacing: -0.01em;
}

.nx-bonus__desc {
    font-size: 14px;
    line-height: 1.55;
    color: #aeb8a8;
}

.nx-bonus__value {
    color: #0b1205;
    font-weight: 700;
    font-size: 15px;
    align-self: flex-start;
    padding: 8px 12px;
    background: linear-gradient(135deg, #d4ff63, var(--nx-acid));
    box-shadow: 0 0 18px rgba(182, 255, 46, 0.22);
}

.nx-bonus__tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(182, 255, 46, 0.1);
    border: 1px solid rgba(182, 255, 46, 0.28);
    color: var(--nx-acid);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.nx-bonus__terms {
    font-size: 12px;
    color: #7f897a;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed rgba(36, 48, 36, 0.95);
}

/* Contact page shell */
.nx-contact {
    position: relative;
    margin: 12px auto 36px;
    max-width: 820px;
    padding: 8px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(20, 28, 16, 0.95), rgba(8, 11, 8, 0.98) 55%, rgba(12, 18, 10, 0.96));
    border: 1px solid rgba(182, 255, 46, 0.2);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(182, 255, 46, 0.08);
}

.nx-contact__aura {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -80px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 255, 46, 0.22), transparent 70%);
    pointer-events: none;
    animation: nx-miss-pulse 4s ease-in-out infinite;
}

.nx-contact .nx-prose {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    padding: 28px 26px 34px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nx-contact .nx-prose h1::after {
    display: none;
}

.nx-contact .nx-prose h1 {
    font-size: clamp(30px, 5vw, 42px);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--nx-foam), var(--nx-acid));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nx-contact .nx-prose > p:first-of-type {
    font-size: 16px;
    color: #d5ddcf;
    margin-bottom: 26px;
    max-width: 520px;
}

.nx-contact .nx-prose h2 {
    margin-top: 8px;
    padding-top: 22px;
    border-top: 1px solid rgba(36, 48, 36, 0.95);
    color: var(--nx-acid);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nx-contact .nx-prose h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.nx-contact .nx-prose h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 8px;
    padding: 8px 12px;
    background: rgba(182, 255, 46, 0.1);
    border: 1px solid rgba(182, 255, 46, 0.22);
    color: var(--nx-foam);
    font-size: 15px;
}

.nx-contact .nx-prose h3 + p {
    margin: 0 0 16px;
    padding: 16px 16px 16px 18px;
    background: rgba(10, 14, 10, 0.85);
    border: 1px solid var(--nx-line);
    border-left: 3px solid var(--nx-acid);
    color: #c9d2c3;
}

.nx-contact .nx-prose a[href^="mailto:"] {
    display: inline-flex;
    margin-top: 6px;
    padding: 10px 14px;
    background: var(--nx-acid);
    color: #0b1205;
    text-decoration: none;
    font-family: "Sora Local", sans-serif;
    font-weight: 700;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    box-shadow: 0 0 18px rgba(182, 255, 46, 0.28);
}

.nx-contact .nx-prose a[href^="mailto:"]:hover {
    transform: translateY(-1px);
}

/* Legal pages shell */
.nx-legal {
    position: relative;
    margin: 12px auto 36px;
    max-width: 920px;
    overflow: hidden;
    background:
        linear-gradient(165deg, rgba(18, 24, 16, 0.96), rgba(7, 10, 7, 0.98) 60%, rgba(11, 16, 10, 0.97));
    border: 1px solid rgba(182, 255, 46, 0.18);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(182, 255, 46, 0.07);
}

.nx-legal__aura {
    position: absolute;
    width: 280px;
    height: 280px;
    left: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 255, 46, 0.18), transparent 72%);
    pointer-events: none;
}

.nx-legal .nx-prose {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    padding: 30px 28px 36px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nx-legal .nx-prose h1 {
    font-size: clamp(28px, 4.5vw, 38px);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--nx-foam);
}

.nx-legal .nx-prose h1::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--nx-acid), transparent);
}

.nx-legal .nx-prose > p:first-of-type {
    font-size: 16px;
    color: #d2dbc9;
    margin-bottom: 22px;
}

.nx-legal .nx-prose h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: rgba(182, 255, 46, 0.08);
    border-left: 3px solid var(--nx-acid);
    color: var(--nx-foam);
    font-size: 18px;
}

.nx-legal .nx-prose h3 {
    margin-top: 20px;
    color: var(--nx-acid);
    font-size: 16px;
}

.nx-legal .nx-listbox {
    margin: 12px 0 18px;
    padding: 14px 16px 14px 18px;
    background: rgba(10, 14, 10, 0.75);
    border: 1px solid var(--nx-line);
}

.nx-legal .nx-listbox ul,
.nx-legal .nx-listbox ol {
    margin: 0;
}

.nx-legal .nx-listbox li {
    color: #c5cebe;
}

.nx-legal .nx-listbox li::marker {
    color: var(--nx-acid);
}

/* SEO / text */
.nx-prose {
    max-width: 920px;
    margin: 28px auto 10px;
    padding: 22px 22px 28px;
    font-family: "Literata Local", Georgia, serif;
    background:
        linear-gradient(180deg, rgba(16, 20, 14, 0.55), rgba(10, 13, 10, 0.35));
    border: 1px solid rgba(36, 48, 36, 0.9);
    box-shadow: inset 0 1px 0 rgba(182, 255, 46, 0.04);
}

.nx-prose h1 {
    font-family: "Sora Local", sans-serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--nx-foam);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nx-prose h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 12px;
    background: linear-gradient(90deg, var(--nx-acid), transparent);
}

.nx-prose h2 {
    font-family: "Sora Local", sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin: 30px 0 12px;
    color: var(--nx-foam);
    letter-spacing: -0.01em;
}

.nx-prose h3 {
    font-family: "Sora Local", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 22px 0 10px;
    color: #e4ecd9;
}

.nx-prose p {
    margin-bottom: 15px;
    color: #c3ccbc;
    line-height: 1.7;
    font-size: 15.5px;
}

.nx-prose img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border: 1px solid var(--nx-line);
}

.nx-scrollpane {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border: 1px solid var(--nx-line);
    background: rgba(8, 11, 8, 0.7);
}

.nx-prose table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    margin: 0;
    background: var(--nx-panel);
}

@media (min-width: 640px) {
    .nx-prose table {
        min-width: 560px;
    }
}

.nx-prose th,
.nx-prose td {
    padding: 12px 14px;
    border: 1px solid #2a342a;
    text-align: left;
    font-size: 14px;
}

.nx-prose th {
    background: linear-gradient(180deg, #1a241a, #152015);
    font-weight: 700;
    color: var(--nx-foam);
    font-family: "Sora Local", sans-serif;
}

.nx-prose tr:nth-child(even) td {
    background: rgba(182, 255, 46, 0.02);
}

.nx-prose ul,
.nx-prose ol {
    margin: 16px 0;
    padding-left: 26px;
}

.nx-prose li {
    margin-bottom: 8px;
    color: #c3ccbc;
    line-height: 1.55;
}

.nx-prose li::marker {
    color: var(--nx-acid);
}

.nx-prose a {
    color: var(--nx-acid);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s ease;
}

.nx-prose a:hover {
    color: #d4ff63;
}

.nx-prose blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 3px solid var(--nx-acid);
    background: rgba(18, 24, 16, 0.9);
    color: #d5ddcf;
    font-style: italic;
}

.nx-faq { margin: 20px 0; }

.nx-faq__item {
    border: 1px solid var(--nx-line);
    margin-bottom: 10px;
    background: rgba(13, 17, 13, 0.9);
    transition: border-color 0.18s ease;
}

.nx-faq__item:hover {
    border-color: rgba(182, 255, 46, 0.28);
}

.nx-faq__q {
    padding: 14px 16px;
    background: #172017;
    border-bottom: 1px solid var(--nx-line);
    color: var(--nx-foam);
    font-family: "Sora Local", sans-serif;
    font-weight: 600;
}

.nx-faq__a {
    padding: 14px 16px;
    color: #aeb8a8;
    line-height: 1.6;
}

.nx-howto {
    margin: 20px 0;
    padding: 18px;
    background: rgba(13, 17, 13, 0.95);
    border: 1px solid rgba(182, 255, 46, 0.16);
}

.nx-howto__list {
    list-style: none;
    counter-reset: nx-step;
}

.nx-howto__step {
    counter-increment: nx-step;
    padding: 13px 14px;
    margin-bottom: 8px;
    background: #0d110d;
    border-left: 3px solid var(--nx-acid);
    color: #c8d1c1;
}

.nx-howto__step::before {
    content: counter(nx-step) ".";
    font-weight: 700;
    margin-right: 8px;
    color: var(--nx-acid);
    font-family: "Sora Local", sans-serif;
}

.nx-listbox {
    margin: 16px 0;
    padding: 12px 14px 12px 16px;
    background: rgba(10, 14, 10, 0.55);
    border: 1px solid var(--nx-line);
}

.nx-listbox ul,
.nx-listbox ol { padding-left: 26px; }

/* Footer */
.nx-foot {
    position: relative;
    margin-top: 48px;
    background:
        linear-gradient(180deg, rgba(8, 12, 8, 0.4) 0%, #040604 28%, #020302 100%);
    border-top: 1px solid rgba(182, 255, 46, 0.18);
    padding: 0;
    overflow: hidden;
}

.nx-foot__glow {
    position: absolute;
    inset: -40% 10% auto;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(182, 255, 46, 0.12), transparent 70%);
    pointer-events: none;
}

.nx-foot__inner {
    position: relative;
    z-index: 1;
    max-width: var(--nx-max);
    margin: 0 auto;
    padding: 36px 18px 22px;
}

.nx-foot__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(36, 48, 36, 0.9);
}

.nx-foot__brand img {
    height: 36px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(182, 255, 46, 0.25));
}

.nx-foot__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.nx-foot__cta .nx-btn {
    min-height: 40px;
    padding: 9px 18px;
    white-space: nowrap;
}

.nx-btn--accent {
    background: linear-gradient(135deg, #d4ff63 0%, var(--nx-acid) 55%, #8fd41a 100%);
    color: #0b1205;
    box-shadow: 0 0 18px rgba(182, 255, 46, 0.22);
}

.nx-foot__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 28px 32px;
    margin-bottom: 28px;
}

.nx-foot__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nx-acid);
    margin-bottom: 14px;
    font-family: "Sora Local", sans-serif;
}

.nx-foot__links {
    list-style: none;
}

.nx-foot__links li { margin-bottom: 9px; }

.nx-foot__links a {
    color: #9aa894;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

.nx-foot__links a:hover {
    color: var(--nx-foam);
    padding-left: 4px;
}

.nx-foot__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nx-foot__social li { margin: 0; }

.nx-foot__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 40px;
    padding: 8px 12px;
    background: rgba(16, 19, 16, 0.9);
    border: 1px solid var(--nx-line);
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.nx-foot__social a:hover {
    border-color: rgba(182, 255, 46, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    padding-left: 12px;
}

.nx-foot__social img {
    max-height: 22px;
    width: auto;
    display: block;
}

.nx-foot__pay {
    margin-bottom: 24px;
    padding: 18px 16px;
    background:
        linear-gradient(180deg, rgba(16, 19, 16, 0.95), rgba(10, 13, 10, 0.98));
    border: 1px solid var(--nx-line);
    box-shadow: inset 0 1px 0 rgba(182, 255, 46, 0.06);
}

.nx-foot__pay-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c5d0bc;
    margin-bottom: 14px;
}

.nx-foot__pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nx-foot__pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 52px;
    padding: 8px 14px;
    background: #f4f7ef;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nx-foot__pay-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.nx-foot__pay-chip img {
    max-height: 28px;
    max-width: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nx-foot__base {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid #1a221a;
    font-size: 12px;
    color: #6f796c;
}

.nx-foot__base p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.55;
}

.nx-foot__safe {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.nx-foot__safe li {
    opacity: 0.88;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nx-foot__safe li:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nx-foot__safe img {
    max-width: 92px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .nx-foot__inner {
        padding: 28px 14px 18px;
    }

    .nx-foot__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .nx-foot__cta {
        width: 100%;
    }

    .nx-foot__cta .nx-btn {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
        text-align: center;
        justify-content: center;
        white-space: normal;
        line-height: 1.25;
    }

    .nx-foot__pay-chip {
        min-width: calc(33.333% - 8px);
        flex: 1 1 calc(33.333% - 8px);
    }

    .nx-slider__copy {
        padding: 16px 14px 18px;
    }

    .nx-slider__offer {
        font-size: 18px;
        word-break: break-word;
    }

    .nx-slider__copy .nx-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* App page hero */
.nx-apphero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    margin: 10px 0 28px;
    padding: 22px;
    overflow: hidden;
    background:
        radial-gradient(700px 280px at 12% 0%, rgba(182, 255, 46, 0.16), transparent 55%),
        linear-gradient(135deg, #121812 0%, #0a0e0a 48%, #101610 100%);
    border: 1px solid rgba(182, 255, 46, 0.22);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.nx-apphero__glow {
    position: absolute;
    inset: auto -20% -40% 40%;
    height: 240px;
    background: radial-gradient(circle, rgba(182, 255, 46, 0.14), transparent 70%);
    pointer-events: none;
}

.nx-apphero__device {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-apphero__phone {
    width: min(100%, 190px);
    aspect-ratio: 9 / 17;
    padding: 10px 9px 14px;
    border-radius: 28px;
    background: linear-gradient(180deg, #1a2218, #0b100b);
    border: 1px solid rgba(182, 255, 46, 0.35);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 18px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(182, 255, 46, 0.12);
    transform: rotate(-4deg);
    transition: transform 0.25s ease;
    overflow: hidden;
}

.nx-apphero__phone::before {
    content: "";
    display: block;
    width: 42%;
    height: 8px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: #243024;
}

.nx-apphero:hover .nx-apphero__phone {
    transform: rotate(-1deg) translateY(-4px);
}

.nx-apphero__phone img {
    width: 100%;
    height: calc(100% - 16px);
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.nx-appcard {
    position: relative;
    z-index: 1;
    margin: 0;
    border: 1px solid var(--nx-line);
    background: rgba(10, 14, 10, 0.88);
    overflow-x: auto;
    backdrop-filter: blur(4px);
}

.nx-appcard table {
    width: 100%;
    border-collapse: collapse;
    min-width: 360px;
}

.nx-appcard tr { border-bottom: 1px solid rgba(36, 48, 36, 0.9); }
.nx-appcard tr:last-child { border-bottom: none; }

.nx-appcard td {
    padding: 14px 14px;
    vertical-align: middle;
    color: #c8d1c1;
    font-size: 14px;
}

.nx-appcard__icon {
    width: 54px;
    text-align: center;
}

.nx-appcard__icon .app-info-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    padding: 6px;
    background: rgba(182, 255, 46, 0.1);
    border: 1px solid rgba(182, 255, 46, 0.28);
    color: var(--nx-acid);
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--nx-acid);
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-name-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    padding: 6px;
    background: #000;
    border: 1px solid rgba(182, 255, 46, 0.25);
    border-radius: 10px;
}

.app-name-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--nx-foam);
    font-family: "Sora Local", sans-serif;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #d4ff63, var(--nx-acid) 55%, #8fd41a);
    color: #0b1205;
    text-decoration: none;
    font-weight: 700;
    font-family: "Sora Local", sans-serif;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    box-shadow: 0 0 22px rgba(182, 255, 46, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.app-download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(182, 255, 46, 0.42);
}

@media (max-width: 768px) {
    .nx-apphero {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .nx-apphero__device {
        order: -1;
    }

    .nx-apphero__phone {
        width: min(160px, 48vw);
        transform: rotate(-2deg);
    }
}

.nx-miss {
    position: relative;
    text-align: center;
    padding: 88px 20px 96px;
    max-width: 640px;
    margin: 18px auto 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(182, 255, 46, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(16, 22, 14, 0.95), rgba(8, 11, 8, 0.98));
    border: 1px solid rgba(182, 255, 46, 0.22);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.35),
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(182, 255, 46, 0.08);
}

.nx-miss__orb {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 255, 46, 0.35), rgba(182, 255, 46, 0.02) 68%, transparent 72%);
    filter: blur(6px);
    animation: nx-miss-pulse 3.2s ease-in-out infinite;
    pointer-events: none;
}

.nx-miss__code {
    position: relative;
    font-size: clamp(72px, 14vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    color: var(--nx-acid);
    margin-bottom: 18px;
    font-family: "Sora Local", sans-serif;
    letter-spacing: -0.04em;
    text-shadow:
        0 0 24px rgba(182, 255, 46, 0.45),
        0 0 64px rgba(182, 255, 46, 0.2);
    animation: nx-miss-flicker 4.5s ease-in-out infinite;
}

.nx-miss__title {
    position: relative;
    font-size: clamp(20px, 3.4vw, 28px);
    font-weight: 700;
    color: var(--nx-foam);
    margin: 0 auto 14px;
    max-width: 520px;
    line-height: 1.25;
}

.nx-miss__text {
    position: relative;
    margin: 0 auto 28px;
    max-width: 460px;
    color: #b4c0ae;
    font-size: 15px;
    line-height: 1.6;
}

.nx-miss__cta {
    position: relative;
    min-width: 210px;
    min-height: 46px;
    font-size: 14px;
    box-shadow: 0 0 22px rgba(182, 255, 46, 0.28);
}

.nx-miss__cta:hover {
    box-shadow: 0 0 30px rgba(182, 255, 46, 0.42);
}

@keyframes nx-miss-pulse {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(0.92); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

@keyframes nx-miss-flicker {
    0%, 100% { opacity: 1; filter: brightness(1); }
    46% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.82; filter: brightness(1.25); }
    54% { opacity: 1; filter: brightness(1); }
}

/* Mobile drawer from left */
@media (max-width: 992px) {
    .nx-mast__strip {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 10px;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .nx-mast__brand {
        flex: 1 1 auto;
        min-width: 0;
        margin: 0;
    }

    .nx-mast__brand img {
        height: 30px;
        max-width: min(120px, 36vw);
        width: auto;
    }

    .nx-burger {
        display: flex;
        position: static;
        transform: none;
        z-index: 1400;
        flex: 0 0 40px;
    }

    .nx-mast__actions {
        position: static;
        transform: none;
        gap: 6px;
        margin-left: 0;
        flex: 0 0 auto;
        z-index: 2;
    }

    .nx-mast__actions .nx-btn {
        padding: 8px 10px;
        font-size: 11px;
        clip-path: none;
        min-height: 36px;
    }

    .nx-mast__actions .nx-btn--ghost,
    .nx-mast__actions .nx-btn--solid {
        display: inline-flex !important;
    }

    .nx-mast__actions .nx-btn--solid {
        background: var(--nx-acid);
        color: #0b1205;
    }

    .nx-rail {
        position: fixed;
        left: 0;
        top: 0;
        width: min(320px, 86vw);
        height: 100vh;
        background: #0d110d;
        border-right: 1px solid var(--nx-line);
        border-top: none;
        transform: translateX(-105%);
        transition: transform 0.22s ease;
        z-index: 1300;
        overflow-y: auto;
        padding-top: 64px;
    }

    .nx-rail.is-open { transform: translateX(0); }

    .nx-rail__list {
        flex-direction: column;
        overflow: visible;
        padding: 8px 0;
    }

    .nx-rail__link {
        width: 100%;
        padding: 14px 18px;
    }

    .nx-rail__link::after { display: none; }

    .nx-rail__link.is-live,
    .nx-rail__link:hover {
        background: #152015;
        box-shadow: inset 3px 0 0 var(--nx-acid);
    }

    .nx-slider__slide {
        grid-template-columns: 1fr;
    }

    .nx-slider__img {
        max-width: 250px;
        aspect-ratio: 1 / 1;
    }

    .nx-bonus {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nx-stage {
        width: min(100% - 18px, var(--nx-max));
        padding-top: 14px;
    }

    .nx-slotlane {
        grid-auto-columns: minmax(120px, 138px);
        gap: 8px;
    }

    .nx-mast__brand img {
        height: 28px;
        max-width: min(96px, 28vw);
        width: auto;
    }

    .nx-mast__actions .nx-btn {
        padding: 6px 8px;
        font-size: 10px;
    }

    .nx-prose h1 { font-size: 24px; }
    .nx-prose h2 { font-size: 20px; }
    .nx-prose h3 { font-size: 17px; }

    .nx-scrollpane,
    .nx-appcard {
        overflow-x: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nx-slot { animation: none; }
    .nx-btn { transition: none; }
    .nx-miss__orb,
    .nx-miss__code { animation: none; }
    html { scroll-behavior: auto; }
}
/* bust 1785619522 */
