@font-face {
    font-family: 'Work Sans';
    src: url('/assets/fonts/work-sans-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('/assets/fonts/work-sans-v24-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-v31-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-v31-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --nv-void-deep: #1A0F2E;
    --nv-purple-rich: #6B2C91;
    --nv-magenta-vivid: #8B3A9C;
    --nv-pink-electric: #E91E8C;
    --nv-gold-shine: #FFD700;
    --nv-tangerine-bright: #FF6B35;
    --nv-cyan-neon: #00FFFF;
    --nv-mint-glow: #40E0D0;
    --nv-pearl-soft: #F5F5F5;
    --nv-mist-cool: #B8B8C8;
    --nv-shadow-violet: #2D1B3D;
    --nv-overlay-dark: rgba(26, 15, 46, 0.94);
    --nv-glow-pink: rgba(233, 30, 140, 0.22);
    --font-heading: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Work Sans', -apple-system, sans-serif;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --size-h1: clamp(2.5rem, 6.5vw, 5rem);
    --size-h2: clamp(1.875rem, 5vw, 3.25rem);
    --size-h3: clamp(1.5rem, 3.5vw, 2.375rem);
    --size-h4: clamp(1.25rem, 2.75vw, 1.75rem);
    --size-h5: clamp(1.125rem, 2.25vw, 1.5rem);
    --size-h6: clamp(1rem, 2vw, 1.25rem);
    --size-body: 1.125rem;
    --size-small: 0.9375rem;
    --ico-xs: 0.875rem;
    --ico-sm: 1.125rem;
    --ico-md: 1.625rem;
    --ico-lg: 2.25rem;
    --ico-xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-body);
    font-weight: var(--fw-normal);
    line-height: 1.7;
    color: var(--nv-pearl-soft);
    background: linear-gradient(165deg, var(--nv-void-deep) 0%, var(--nv-purple-rich) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-family: var(--font-heading);
    font-size: var(--size-h1);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--nv-pearl-soft);
    margin-bottom: 2rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: var(--fw-semibold);
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--nv-cyan-neon);
    margin-bottom: 1.625rem;
}

h3 {
    font-family: var(--font-heading);
    font-size: var(--size-h3);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
    letter-spacing: -0.012em;
    color: var(--nv-gold-shine);
    margin-bottom: 1.375rem;
}

h4 {
    font-family: var(--font-body);
    font-size: var(--size-h4);
    font-weight: var(--fw-medium);
    line-height: 1.4;
    color: var(--nv-pearl-soft);
    margin-bottom: 1.125rem;
}

h5 {
    font-family: var(--font-body);
    font-size: var(--size-h5);
    font-weight: var(--fw-medium);
    line-height: 1.45;
    color: var(--nv-pearl-soft);
    margin-bottom: 1rem;
}

h6 {
    font-family: var(--font-body);
    font-size: var(--size-h6);
    font-weight: var(--fw-medium);
    line-height: 1.5;
    color: var(--nv-mist-cool);
    margin-bottom: 0.875rem;
}

p {
    font-size: var(--size-body);
    line-height: 1.8;
    color: var(--nv-mist-cool);
    margin-bottom: 1.375rem;
}

small {
    font-size: var(--size-small);
    line-height: 1.65;
    color: var(--nv-mist-cool);
}

img, picture, video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nv-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.875rem;
}

.nv-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -0.125em;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
}

.nv-icon-xs { width: 14px; height: 14px; }
.nv-icon-sm { width: 16px; height: 16px; }
.nv-icon-md { width: 20px; height: 20px; }
.nv-icon-lg { width: 24px; height: 24px; }
.nv-icon-xl { width: 28px; height: 28px; }

.nv-icon-light { filter: brightness(0) invert(1); }
.nv-icon-dark { filter: brightness(0) saturate(100%); }
.nv-icon-muted { filter: brightness(0) saturate(100%) invert(55%); }
.nv-icon-primary { filter: brightness(0) saturate(100%) invert(32%) sepia(92%) saturate(2250%) hue-rotate(200deg) brightness(98%) contrast(102%); }
.nv-icon-accent { filter: brightness(0) saturate(100%) invert(35%) sepia(55%) saturate(3100%) hue-rotate(265deg) brightness(102%) contrast(104%); }
.nv-icon-cool { filter: brightness(0) saturate(100%) invert(49%) sepia(88%) saturate(1400%) hue-rotate(140deg) brightness(98%) contrast(101%); }
.nv-icon-warm { filter: brightness(0) saturate(100%) invert(74%) sepia(64%) saturate(540%) hue-rotate(2deg) brightness(104%) contrast(98%); }
.nv-icon-danger { filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(5200%) hue-rotate(345deg) brightness(102%) contrast(106%); }
.nv-icon-success { filter: brightness(0) saturate(100%) invert(46%) sepia(88%) saturate(1500%) hue-rotate(85deg) brightness(96%) contrast(104%); }

.nv-btn {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    padding: 1.125rem 2.75rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nv-btn-split {
    background: linear-gradient(to bottom,
    rgba(233, 30, 140, 1) 0%,
    rgba(233, 30, 140, 0.85) 48%,
    rgba(139, 58, 156, 1) 52%,
    rgba(139, 58, 156, 0.9) 100%);
    color: var(--nv-pearl-soft);
}

.nv-btn-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48%;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 100%);
    transition: height 0.4s ease;
}

.nv-btn-split:hover::before { height: 62%; }
.nv-btn-split:hover { box-shadow: 0 0 20px rgba(233, 30, 140, 0.4); }

.nv-btn-shadow {
    background: linear-gradient(135deg, var(--nv-pink-electric) 0%, var(--nv-magenta-vivid) 100%);
    color: var(--nv-pearl-soft);
}

.nv-btn-shadow:hover {
    background: linear-gradient(135deg, var(--nv-magenta-vivid) 0%, var(--nv-pink-electric) 100%);
    box-shadow: 0 0 25px rgba(233, 30, 140, 0.5);
}

.nv-btn-inset {
    background: linear-gradient(125deg, var(--nv-cyan-neon) 0%, var(--nv-mint-glow) 100%);
    color: var(--nv-void-deep);
    transition: all 0.12s ease;
}

.nv-btn-inset:active {
    box-shadow: inset 0 3px 10px rgba(26, 15, 46, 0.5);
    transform: scale(0.97) translateY(2px);
}

.nv-btn-outline {
    background: transparent;
    color: var(--nv-cyan-neon);
}

.nv-btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.nv-btn-ghost {
    background: rgba(245, 245, 245, 0.08);
    color: var(--nv-pearl-soft);
    backdrop-filter: blur(6px);
}

.nv-btn-ghost:hover {
    background: rgba(245, 245, 245, 0.15);
    box-shadow: 0 0 15px rgba(245, 245, 245, 0.2);
}

.nv-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nv-age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nv-age-gate__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(12px);
}

.nv-age-gate__modal {
    position: relative;
    width: min(92vw, 520px);
    max-height: 82vh;
    background: rgba(45, 27, 61, 0.95);
    backdrop-filter: blur(24px);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg,
    rgba(0, 255, 255, 0.4) 0%,
    rgba(233, 30, 140, 0.3) 50%,
    rgba(0, 255, 255, 0.4) 100%) 1;
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 16px 64px rgba(0, 255, 255, 0.2), 0 8px 32px rgba(233, 30, 140, 0.15);
    overflow-y: auto;
}

.nv-age-gate__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.nv-age-gate__title {
    font-size: 1.75rem;
    margin: 0;
}

.nv-age-gate__badge { max-width: 60px; }

.nv-age-gate__subtitle {
    font-size: 1rem;
    color: var(--nv-mist-cool);
    margin: 0 0 1.25rem;
}

.nv-age-gate__rules {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.nv-age-rule {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(26, 15, 46, 0.5);
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.nv-age-rule__text {
    font-size: 0.9375rem;
    font-weight: var(--fw-medium);
    color: var(--nv-pearl-soft);
}

.nv-age-gate__pill {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 1.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    color: var(--nv-pearl-soft);
    text-align: center;
    margin-bottom: 1rem;
}

.nv-age-gate__legal {
    font-size: 0.9rem;
    color: rgba(184, 184, 200, 0.8);
    text-align: center;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.nv-age-gate__link {
    color: var(--nv-cyan-neon);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.nv-age-gate__link:hover { color: var(--nv-gold-shine); }

.nv-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nv-age-gate__btn {
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-age-gate__btn--enter {
    background: linear-gradient(135deg, var(--nv-pink-electric) 0%, var(--nv-magenta-vivid) 100%);
    color: var(--nv-pearl-soft);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
}

.nv-age-gate__btn--enter:hover {
    background: linear-gradient(135deg, var(--nv-magenta-vivid) 0%, var(--nv-pink-electric) 100%);
    box-shadow: 0 6px 24px rgba(233, 30, 140, 0.5);
    transform: translateY(-2px);
}

.nv-age-gate__btn--enter:active {
    transform: translateY(0);
    box-shadow: inset 0 3px 10px rgba(26, 15, 46, 0.4);
}

.nv-age-gate__btn--exit {
    background: transparent;
    color: var(--nv-mist-cool);
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.nv-age-gate__btn--exit:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: var(--nv-cyan-neon);
    color: var(--nv-cyan-neon);
}

.nv-header {
    position: relative;
    z-index: 1000;
    background: transparent;
}

.nv-header__safety-dock {
    background: rgba(26, 15, 46, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 2px 0 0 rgba(0, 255, 255, 0.15);
    padding: 0.625rem 0;
}

.nv-safety-dock__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nv-safety-dock__indicators {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.875rem;
}

.nv-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: var(--fw-medium);
    color: var(--nv-pearl-soft);
    background: rgba(0, 255, 255, 0.06);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.nv-indicator i {
    color: var(--nv-cyan-neon);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.nv-indicator__text {
    letter-spacing: 0.02em;
    font-weight: 500;
}

.nv-safety-dock__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nv-safety-dock__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: var(--fw-medium);
    color: var(--nv-pearl-soft);
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.nv-safety-dock__link i { color: var(--nv-pink-electric); }

.nv-safety-dock__link:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.nv-age-badge { display: flex; align-items: center; }

.nv-age-badge__image {
    width: 3rem;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.nv-header__main {
    background: rgba(45, 27, 61, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(233, 30, 140, 0.3);
    padding: 1rem 0;
}

.nv-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.nv-header__brand { display: flex; flex-direction: column; }

.nv-logo { display: flex; align-items: center; gap: 0.875rem; }

.nv-logo__image {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.nv-logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--nv-cyan-neon);
    letter-spacing: -0.02em;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.nv-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nv-nav__metro-line {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding: 0.5rem 0;
}

.nv-nav__metro-line::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 255, 255, 0.3) 10%,
    rgba(0, 255, 255, 0.3) 90%,
    transparent 100%);
    z-index: 0;
}

.nv-nav__station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.nv-nav__lantern {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(184, 184, 200, 0.5);
    border: 2px solid rgba(184, 184, 200, 0.3);
    transition: all 0.3s ease;
}

.nv-nav__label {
    font-size: 0.9375rem;
    font-weight: var(--fw-medium);
    color: var(--nv-mist-cool);
    transition: all 0.3s ease;
}

.nv-nav__station:hover .nv-nav__lantern {
    background: var(--nv-cyan-neon);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.nv-nav__station:hover .nv-nav__label { color: var(--nv-pearl-soft); }

.nv-header__actions { display: flex; align-items: center; }

.nv-ticket {
    position: relative;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--nv-pink-electric) 0%, var(--nv-magenta-vivid) 100%);
    border-radius: 0.5rem;
    clip-path: polygon(
            0.5rem 0, calc(100% - 0.5rem) 0,
            100% 0.5rem, 100% calc(100% - 0.5rem),
            calc(100% - 0.5rem) 100%, 0.5rem 100%,
            0 calc(100% - 0.5rem), 0 0.5rem
    );
    transition: all 0.3s ease;
    overflow: hidden;
}

.nv-ticket__content {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
}

.nv-ticket__content i { color: var(--nv-pearl-soft); }

.nv-ticket__text {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: var(--fw-semibold);
    color: var(--nv-pearl-soft);
    letter-spacing: 0.03em;
}

.nv-ticket:hover {
    background: linear-gradient(135deg, var(--nv-magenta-vivid) 0%, var(--nv-pink-electric) 100%);
    box-shadow: 0 0 25px rgba(233, 30, 140, 0.5);
}

.nv-hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    width: 2.75rem;
    height: 2.75rem;
}

.nv-hamburger__line {
    width: 1.5rem;
    height: 0.1875rem;
    background: var(--nv-cyan-neon);
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.nv-hamburger.active .nv-hamburger__line:nth-child(1) { transform: translateY(0.5625rem) rotate(45deg); }
.nv-hamburger.active .nv-hamburger__line:nth-child(2) { opacity: 0; }
.nv-hamburger.active .nv-hamburger__line:nth-child(3) { transform: translateY(-0.5625rem) rotate(-45deg); }

.nv-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 15, 46, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nv-mobile-overlay.active { opacity: 1; pointer-events: all; }

.nv-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: linear-gradient(165deg, rgba(26, 15, 46, 0.98) 0%, rgba(45, 27, 61, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg,
    var(--nv-cyan-neon) 0%,
    var(--nv-pink-electric) 50%,
    var(--nv-gold-shine) 100%) 1;
    box-shadow: -8px 0 32px rgba(0, 255, 255, 0.3), -4px 0 16px rgba(233, 30, 140, 0.2);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nv-mobile-drawer.active { transform: translateX(0); }

.nv-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
}

.nv-mobile-drawer__brand { display: flex; align-items: center; gap: 0.75rem; }

.nv-mobile-drawer__logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.nv-mobile-drawer__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--nv-cyan-neon);
    letter-spacing: -0.02em;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}

.nv-mobile-drawer__close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--nv-cyan-neon);
    border-radius: 50%;
    color: var(--nv-cyan-neon);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-mobile-drawer__close:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.nv-glow-separator {
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 255, 255, 0.4) 20%,
    rgba(233, 30, 140, 0.4) 50%,
    rgba(0, 255, 255, 0.4) 80%,
    transparent 100%);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    margin: 0 1.5rem;
}

.nv-mobile-drawer__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem;
    gap: 0.5rem;
}

.nv-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(245, 245, 245, 0.04);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.nv-mobile-nav-link__lantern {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(184, 184, 200, 0.5);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.nv-mobile-nav-link__text {
    font-size: 1.0625rem;
    font-weight: var(--fw-medium);
    color: var(--nv-mist-cool);
    transition: all 0.2s ease;
}

.nv-mobile-nav-link:active {
    background: rgba(0, 255, 255, 0.12);
    box-shadow: inset 0 2px 8px rgba(26, 15, 46, 0.4);
    transform: scale(0.98);
}

.nv-mobile-nav-link:active .nv-mobile-nav-link__lantern {
    background: var(--nv-cyan-neon);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nv-mobile-nav-link:active .nv-mobile-nav-link__text { color: var(--nv-cyan-neon); }

.nv-mobile-drawer__cta { padding: 1.5rem 1.5rem 2rem; }

.nv-mobile-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--nv-pink-electric) 0%, var(--nv-magenta-vivid) 100%);
    border-radius: 2rem;
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: var(--fw-semibold);
    color: var(--nv-pearl-soft);
    transition: all 0.3s ease;
}

.nv-mobile-cta-btn i { font-size: 1rem; }

.nv-mobile-cta-btn:active {
    background: linear-gradient(135deg, var(--nv-magenta-vivid) 0%, var(--nv-pink-electric) 100%);
    box-shadow: inset 0 3px 12px rgba(26, 15, 46, 0.5);
    transform: scale(0.97);
}

.nv-main { position: relative; }

.nv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.nv-hero__bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.nv-hero__waves-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: nv-wave-float 4s ease-in-out infinite;
}

.nv-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 50%, transparent 0%, rgba(26, 15, 46, 0.4) 60%);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.nv-hero__charms {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.nv-charm {
    position: absolute;
    width: auto;
    opacity: 0.8;
}

.nv-charm--lantern-1 {
    top: 15%;
    right: 12%;
    height: 80px;
    animation: nv-sway 8s ease-in-out infinite;
}

.nv-charm--lantern-2 {
    bottom: 20%;
    right: 8%;
    height: 60px;
    animation: nv-sway 9s ease-in-out infinite 1s;
}

.nv-charm--sparkle-1 {
    top: 25%;
    right: 25%;
    height: 32px;
    animation: nv-twinkle 3s ease-in-out infinite;
}

.nv-charm--sparkle-2 {
    top: 50%;
    right: 18%;
    height: 28px;
    animation: nv-twinkle 3.5s ease-in-out infinite 0.5s;
}

.nv-charm--sparkle-3 {
    bottom: 30%;
    right: 35%;
    height: 24px;
    animation: nv-twinkle 4s ease-in-out infinite 1s;
}

.nv-charm--citrus {
    top: 35%;
    right: 10%;
    height: 50px;
    animation: nv-float-y 10s ease-in-out infinite;
}

.nv-charm--chip-1 {
    top: 60%;
    right: 30%;
    height: 40px;
    animation: nv-float-y 11s ease-in-out infinite 1.5s;
}

.nv-charm--chip-2 {
    bottom: 15%;
    right: 20%;
    height: 45px;
    animation: nv-float-y 9s ease-in-out infinite 2s;
}

.nv-hero__content {
    position: relative;
    z-index: 4;
    max-width: 600px;
    margin-left: 0;
    margin-top: 8vh;
}

.nv-hero__title { margin-bottom: 1.5rem; }

.nv-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--nv-cyan-neon);
    margin-bottom: 2.5rem;
}

.nv-hero__actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.nv-hero__disclaimer {
    font-size: 0.875rem;
    color: rgba(184, 184, 200, 0.8);
    margin: 0;
}

.nv-btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

@keyframes nv-wave-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes nv-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes nv-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes nv-twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .nv-hero__waves-image,
    .nv-charm {
        animation: none;
    }
}

.nv-truth {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--nv-void-deep) 0%, var(--nv-shadow-violet) 100%);
    position: relative;
}

.nv-truth__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.nv-truth__title { margin-bottom: 1rem; }

.nv-truth__subtitle {
    font-size: 1.125rem;
    color: var(--nv-mist-cool);
    margin: 0;
}

.nv-truth__panel {
    background: rgba(45, 27, 61, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg,
    rgba(0, 255, 255, 0.3) 0%,
    rgba(233, 30, 140, 0.2) 50%,
    rgba(0, 255, 255, 0.3) 100%) 1;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1), 0 4px 16px rgba(233, 30, 140, 0.08);
}

.nv-truth__mode-switch {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: rgba(26, 15, 46, 0.5);
    padding: 0.5rem;
    border-radius: 1rem;
}

.nv-mode-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: var(--fw-semibold);
    color: var(--nv-mist-cool);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-mode-tab:hover {
    background: rgba(0, 255, 255, 0.08);
    color: var(--nv-pearl-soft);
}

.nv-mode-tab--active {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: var(--nv-cyan-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.nv-truth__content {
    position: relative;
    min-height: 4rem;
    margin-bottom: 3rem;
}

.nv-mode-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--nv-mist-cool);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    margin: 0;
}

.nv-mode-content--active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nv-truth__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.nv-truth-card {
    background: rgba(26, 15, 46, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}

.nv-truth-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
}

.nv-truth-card__icon { margin-bottom: 1.25rem; }

.nv-truth-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.nv-truth-card__text {
    font-size: 0.9375rem;
    color: var(--nv-mist-cool);
    margin: 0;
}

.nv-truth__footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
}

.nv-truth__link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: var(--fw-medium);
    color: var(--nv-cyan-neon);
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.nv-truth__link:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.nv-stage {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--nv-shadow-violet) 0%, var(--nv-void-deep) 100%);
    position: relative;
}

.nv-stage__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.nv-stage__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nv-gold-shine);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 1.5rem;
}

.nv-stage__title { margin-bottom: 1rem; }

.nv-stage__subtitle {
    font-size: 1.25rem;
    color: var(--nv-mist-cool);
    margin: 0;
}

.nv-stage__deck {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(45, 27, 61, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg,
    rgba(0, 255, 255, 0.4) 0%,
    rgba(233, 30, 140, 0.3) 50%,
    rgba(255, 215, 0, 0.4) 100%) 1;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.15), 0 4px 16px rgba(233, 30, 140, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nv-stage__deck.theater-mode {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    max-height: 95vh;
    z-index: 1300;
    border-image: linear-gradient(135deg,
    rgba(0, 255, 255, 0.6) 0%,
    rgba(233, 30, 140, 0.5) 50%,
    rgba(255, 215, 0, 0.6) 100%) 1;
    box-shadow: 0 16px 64px rgba(0, 255, 255, 0.3), 0 8px 32px rgba(233, 30, 140, 0.2);
}

.nv-stage__frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--nv-void-deep);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.nv-stage__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.nv-stage__placeholder.hidden { display: none; }

.nv-stage__placeholder-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.nv-stage__preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nv-stage__placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 15, 46, 0.4) 0%, rgba(26, 15, 46, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-stage__play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--nv-pink-electric) 0%, var(--nv-magenta-vivid) 100%);
    border: none;
    padding: 2rem 3rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--nv-pearl-soft);
}

.nv-stage__play-btn:hover {
    background: linear-gradient(135deg, var(--nv-magenta-vivid) 0%, var(--nv-pink-electric) 100%);
    box-shadow: 0 0 40px rgba(233, 30, 140, 0.6);
    transform: scale(1.05);
}

.nv-stage__loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nv-void-deep);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.nv-stage__loader.active { display: flex; }

.nv-stage__loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 255, 0.2);
    border-top-color: var(--nv-cyan-neon);
    border-radius: 50%;
    animation: nv-spin 1s linear infinite;
}

.nv-stage__loader-text {
    font-size: 1.125rem;
    color: var(--nv-mist-cool);
    margin: 0;
}

.nv-stage__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nv-stage__iframe.loaded { opacity: 1; }

.nv-stage__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
}

.nv-stage__controls.hidden { display: none; }

.nv-stage__controls-left { display: flex; gap: 0.75rem; }

.nv-control-btn {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nv-control-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.nv-control-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 15, 46, 0.95);
    color: var(--nv-pearl-soft);
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--nv-cyan-neon);
}

.nv-control-btn:hover::after { opacity: 1; }

.nv-control-btn.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--nv-gold-shine);
}

.nv-stage__controls-right { flex: 1; text-align: right; }

.nv-stage__disclaimer-small {
    font-size: 0.75rem;
    color: rgba(184, 184, 200, 0.8);
    margin: 0;
}

.nv-stage__footer { text-align: center; margin-top: 2.5rem; }

.nv-stage__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    color: var(--nv-mist-cool);
    padding: 0.625rem 1.25rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.nv-stage__link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--nv-cyan-neon);
    color: var(--nv-cyan-neon);
}

.nv-theater-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1250;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nv-theater-overlay.active { opacity: 1; pointer-events: all; }

@keyframes nv-spin { to { transform: rotate(360deg); } }

.nv-pace {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--nv-void-deep) 0%, var(--nv-shadow-violet) 100%);
    position: relative;
}

.nv-pace__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.nv-pace__title { margin-bottom: 1rem; }

.nv-pace__subtitle {
    font-size: 1.25rem;
    color: var(--nv-mist-cool);
    margin: 0;
}

.nv-pace__panel {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(45, 27, 61, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg,
    rgba(0, 255, 255, 0.3) 0%,
    rgba(233, 30, 140, 0.2) 50%,
    rgba(0, 255, 255, 0.3) 100%) 1;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1), 0 4px 16px rgba(233, 30, 140, 0.08);
}

.nv-pace__meter-section { margin-bottom: 3rem; }

.nv-pace__meter-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.nv-pace-meter { position: relative; padding: 2rem 0; }

.nv-pace-meter__track {
    position: absolute;
    top: 29.5%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
    rgba(0, 255, 255, 0.2) 0%,
    rgba(233, 30, 140, 0.2) 50%,
    rgba(0, 255, 255, 0.2) 100%);
    transform: translateY(-50%);
}

.nv-pace-meter__stations {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 10%;
}

.nv-pace-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.nv-pace-station__dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(184, 184, 200, 0.5);
    border: 2px solid rgba(184, 184, 200, 0.3);
    transition: all 0.3s ease;
}

.nv-pace-station--active .nv-pace-station__dot {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--nv-cyan-neon);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
    animation: nv-pace-pulse 2s ease-in-out infinite;
}

.nv-pace-station:hover .nv-pace-station__dot {
    background: var(--nv-cyan-neon);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.nv-pace-station__label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--nv-mist-cool);
    transition: all 0.3s ease;
}

.nv-pace-station--active .nv-pace-station__label { color: var(--nv-cyan-neon); }

.nv-pace-station__time {
    font-size: 0.875rem;
    color: rgba(184, 184, 200, 0.7);
    transition: all 0.3s ease;
}

.nv-pace-station--active .nv-pace-station__time { color: var(--nv-mist-cool); }

.nv-pace-meter__indicator {
    position: absolute;
    top: 31%;
    left: 10%;
    width: 3rem;
    height: 3rem;
    margin-left: -1.5rem;
    margin-top: -1.5rem;
    border: 2px solid var(--nv-cyan-neon);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
}

.nv-pace__meter-description {
    text-align: center;
    font-size: 1rem;
    color: var(--nv-mist-cool);
    margin-top: 2rem;
    min-height: 1.5rem;
    transition: opacity 0.3s ease;
}

.nv-pace__separator {
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 255, 255, 0.3) 20%,
    rgba(233, 30, 140, 0.3) 50%,
    rgba(0, 255, 255, 0.3) 80%,
    transparent 100%);
    margin: 0 -3rem 3rem;
}

.nv-pace__rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nv-pace-rule { text-align: center; }

.nv-pace-rule__icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.nv-pace-rule__title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.nv-pace-rule__text {
    font-size: 0.9375rem;
    color: var(--nv-mist-cool);
    margin: 0;
}

.nv-pace__footer {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.nv-pace__footer-text {
    font-size: 0.875rem;
    color: rgba(184, 184, 200, 0.8);
    margin: 0;
}

@keyframes nv-pace-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.6); }
}

.nv-footer {
    background: linear-gradient(180deg, var(--nv-shadow-violet) 0%, var(--nv-void-deep) 100%);
    margin-top: 6rem;
}

.nv-footer__safety-strip {
    background: rgba(26, 15, 46, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 255, 255, 0.3) 20%,
    rgba(233, 30, 140, 0.3) 50%,
    rgba(0, 255, 255, 0.3) 80%,
    transparent 100%) 1;
    box-shadow: 0 -2px 20px rgba(0, 255, 255, 0.1);
    padding: 1rem 0;
}

.nv-safety-strip__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nv-safety-strip__badge { flex-shrink: 0; }

.nv-safety-strip__badge-img {
    width: 2.5rem;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.nv-safety-strip__text {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    color: var(--nv-pearl-soft);
    letter-spacing: 0.02em;
}

.nv-safety-strip__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    color: var(--nv-cyan-neon);
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nv-safety-strip__link:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.nv-footer__main { padding: 4rem 0 3rem; }

.nv-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.nv-footer__brand { display: flex; flex-direction: column; gap: 1.25rem; }

.nv-footer__logo { display: flex; align-items: center; gap: 0.875rem; }

.nv-footer__logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.nv-footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: var(--fw-bold);
    color: var(--nv-cyan-neon);
    letter-spacing: -0.02em;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}

.nv-footer__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--nv-mist-cool);
    max-width: 420px;
    margin: 0;
}

.nv-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.nv-footer__column-title {
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nv-gold-shine);
    margin-bottom: 1.25rem;
}

.nv-footer__nav { display: flex; flex-direction: column; gap: 0.75rem; }

.nv-footer__link {
    font-size: 0.9375rem;
    color: var(--nv-mist-cool);
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.nv-footer__link:hover {
    color: var(--nv-cyan-neon);
    transform: translateX(3px);
}

.nv-footer__resources {
    background: rgba(26, 15, 46, 0.5);
    backdrop-filter: blur(12px);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
}

.nv-resources__wrapper { text-align: center; }

.nv-resources__title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.nv-resources__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.nv-resource-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    color: var(--nv-pearl-soft);
    padding: 0.625rem 1.25rem;
    background: rgba(45, 27, 61, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.nv-resource-pill--hidden { display: none; }
.nv-resources__list.expanded .nv-resource-pill--hidden { display: inline-flex; }

.nv-resource-pill:hover {
    background: rgba(0, 255, 255, 0.12);
    border-color: var(--nv-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
    transform: translateY(-1px);
}

.nv-resources__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    color: var(--nv-cyan-neon);
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-resources__toggle:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: var(--nv-cyan-neon);
}

.nv-resources__toggle-icon { transition: transform 0.3s ease; }
.nv-resources__toggle.expanded .nv-resources__toggle-icon { transform: rotate(180deg); }

.nv-footer__bottom {
    padding: 1.5rem 0;
    background: rgba(10, 15, 20, 0.5);
}

.nv-footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nv-footer__copyright {
    font-size: 0.875rem;
    color: var(--nv-mist-cool);
}

.nv-footer__disclaimer {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(184, 184, 200, 0.7);
}

.nv-footer__legal-links { display: flex; align-items: center; gap: 0.75rem; }

.nv-footer__legal-link {
    font-size: 0.875rem;
    color: var(--nv-mist-cool);
    transition: color 0.3s ease;
}

.nv-footer__legal-link:hover { color: var(--nv-cyan-neon); }

.nv-footer__separator {
    color: rgba(184, 184, 200, 0.5);
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .nv-nav { display: none; }
    .nv-hamburger { display: flex; }
    .nv-header__actions { display: none; }
    .nv-charm--lantern-1 { height: 60px; right: 8%; }
    .nv-charm--lantern-2, .nv-charm--chip-2 { display: none; }
    .nv-charm--citrus { height: 40px; }
    .nv-truth__panel { padding: 2.5rem 2rem; }
    .nv-truth__grid { gap: 1.25rem; }
    .nv-truth-card { padding: 1.75rem 1.5rem; }
    .nv-stage__deck { padding: 1.5rem; }
    .nv-stage__controls { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .nv-stage__controls-right { width: 100%; text-align: center; }
    .nv-control-btn:first-child { display: none; }
    .nv-pace__panel { padding: 2.5rem 2rem; }
    .nv-pace__rules { gap: 1.5rem; }
    .nv-footer__grid { grid-template-columns: 1fr; gap: 3rem; }
    .nv-footer__links { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
    .nv-age-gate__modal { padding: 1.5rem 1.25rem; max-height: 85vh; }
    .nv-age-gate__title { font-size: 1.5rem; }
    .nv-age-gate__subtitle { font-size: 0.9375rem; margin-bottom: 1rem; }
    .nv-age-gate__rules { gap: 0.375rem; margin-bottom: 1rem; }
    .nv-age-rule { padding: 0.5rem 0.875rem; }
    .nv-age-rule__text { font-size: 0.875rem; }
    .nv-age-gate__pill { padding: 0.625rem 1rem; font-size: 0.8125rem; margin-bottom: 0.875rem; }
    .nv-age-gate__legal { font-size: 0.6875rem; margin-bottom: 1.25rem; }
    .nv-age-gate__btn--enter { padding: 0.875rem 1.75rem; font-size: 1.0625rem; }
    .nv-age-gate__btn--exit { padding: 0.625rem 1.25rem; font-size: 0.9375rem; }
    .nv-safety-dock__wrapper { flex-direction: column; gap: 0.875rem; padding: 0.5rem 0; }
    .nv-safety-dock__right { width: 100%; justify-content: space-between; }
    .nv-safety-dock__indicators { width: 100%; justify-content: flex-start; gap: 0.75rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .nv-safety-dock__indicators::-webkit-scrollbar { display: none; }
    .nv-indicator { flex-shrink: 0; padding: 0.5rem 0.875rem; font-size: 0.75rem; }
    .nv-age-badge__image { width: 2.5rem; }
    .nv-logo__image { width: 2.5rem; height: 2.5rem; }
    .nv-logo__text { font-size: 1.25rem; }
    .nv-mobile-drawer { width: 280px; }
    .nv-hero { min-height: 85vh; }
    .nv-hero__content { max-width: 100%; margin-left: 0; margin-top: 4vh; text-align: center; }
    .nv-hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
    .nv-hero__subtitle { font-size: 1.0625rem; }
    .nv-hero__actions { flex-direction: column; gap: 1rem; }
    .nv-btn-lg { width: 100%; padding: 1.125rem 2rem; }
    .nv-charm--sparkle-2, .nv-charm--sparkle-3, .nv-charm--chip-1 { display: none; }
    .nv-charm--lantern-1 { top: 10%; right: 5%; height: 50px; }
    .nv-charm--sparkle-1 { top: 20%; right: 10%; height: 24px; }
    .nv-charm--citrus { top: 70%; right: 8%; height: 35px; }
    .nv-truth { padding: 4rem 0; }
    .nv-truth__header { margin-bottom: 2.5rem; }
    .nv-truth__panel { padding: 2rem 1.5rem; }
    .nv-truth__mode-switch { flex-direction: column; gap: 0.75rem; }
    .nv-mode-tab { padding: 0.875rem 1.25rem; }
    .nv-truth__content { min-height: 5rem; margin-bottom: 2.5rem; }
    .nv-mode-content { font-size: 1rem; }
    .nv-truth__grid { grid-template-columns: 1fr; gap: 1rem; }
    .nv-truth-card { padding: 1.5rem 1.25rem; }
    .nv-truth-card__title { font-size: 1.125rem; }
    .nv-stage { padding: 4rem 0; }
    .nv-stage__header { margin-bottom: 2.5rem; }
    .nv-stage__label { font-size: 0.75rem; padding: 0.375rem 1rem; }
    .nv-stage__subtitle { font-size: 1.0625rem; }
    .nv-stage__deck { padding: 1.25rem; }
    .nv-stage__play-btn { padding: 1.5rem 2.5rem; font-size: 1.125rem; }
    .nv-stage__controls-left { width: 100%; justify-content: center; }
    .nv-stage__disclaimer-small { font-size: 0.6875rem; }
    .nv-pace { padding: 4rem 0; }
    .nv-pace__header { margin-bottom: 2.5rem; }
    .nv-pace__subtitle { font-size: 1.0625rem; }
    .nv-pace__panel { padding: 2rem 1.5rem; }
    .nv-pace__meter-section { margin-bottom: 2.5rem; }
    .nv-pace__meter-title { font-size: 1.25rem; margin-bottom: 2rem; }
    .nv-pace-meter { padding: 1.5rem 0; }
    .nv-pace-meter__track { left: 5%; right: 5%; }
    .nv-pace-meter__stations { padding: 0 5%; }
    .nv-pace-station { gap: 0.5rem; }
    .nv-pace-station__label { font-size: 0.9375rem; }
    .nv-pace-station__time { font-size: 0.75rem; }
    .nv-pace-meter__indicator { width: 2.5rem; height: 2.5rem; margin-left: -1.25rem; margin-top: -1.25rem; }
    .nv-pace__meter-description { font-size: 0.9375rem; margin-top: 1.5rem; }
    .nv-pace__separator { margin: 0 -1.5rem 2.5rem; }
    .nv-pace__rules { grid-template-columns: 1fr; gap: 2rem; }
    .nv-pace-rule__title { font-size: 1rem; }
    .nv-pace-rule__text { font-size: 0.875rem; }
    .nv-pace__footer { margin-top: 2.5rem; }
    .nv-footer { margin-top: 4rem; }
    .nv-safety-strip__content { flex-direction: column; gap: 1rem; text-align: center; }
    .nv-safety-strip__text { font-size: 0.8125rem; }
    .nv-footer__main { padding: 3rem 0 2rem; }
    .nv-footer__description { font-size: 0.875rem; }
    .nv-footer__links { grid-template-columns: 1fr; gap: 2rem; }
    .nv-footer__resources { padding: 2rem 0; }
    .nv-resources__list { gap: 0.5rem; }
    .nv-resource-pill { font-size: 0.8125rem; padding: 0.5rem 1rem; }
    .nv-footer__bottom-content { flex-direction: column; text-align: center; gap: 0.75rem; }
    .nv-footer__disclaimer { order: -1; }
}

@media (max-width: 390px) {
    .nv-age-gate__modal { padding: 1.25rem 1rem; }
    .nv-age-gate__title { font-size: 1.375rem; }
    .nv-age-gate__badge { font-size: 0.8125rem; padding: 0.3125rem 0.75rem; }
}