.nv-access-gate {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.48), rgba(10, 10, 10, 0.88)),
        url("/assets/images/IMG_2985-scaled.jpg") center 62% / cover no-repeat;
}

.nv-access-gate::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 169, 110, 0.2), transparent 32%),
        radial-gradient(circle at bottom left, rgba(232, 213, 176, 0.16), transparent 28%);
    pointer-events: none;
}

.nv-access-shell {
    position: relative;
    width: min(100%, 460px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    color: var(--white);
    background: rgba(10, 10, 10, 0.52);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.nv-access-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nv-access-brand::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(201, 169, 110, 0.65);
}

.nv-access-kicker {
    display: block;
    margin-bottom: 0.85rem;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nv-access-title {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.nv-access-text {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.nv-access-form {
    display: grid;
    gap: 0.9rem;
}

.nv-access-label {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nv-access-input {
    width: 100%;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    outline: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.nv-access-input:focus {
    border-color: rgba(201, 169, 110, 0.8);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12);
}

.nv-access-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.nv-access-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    margin-top: 0.2rem;
    border: none;
    border-radius: 999px;
    color: var(--black);
    background: var(--gold-light);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.nv-access-button:hover {
    transform: translateY(-1px);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(232, 213, 176, 0.18);
}

.nv-access-error {
    min-height: 1.4rem;
    color: #ffc1c1;
    font-size: 0.84rem;
    line-height: 1.4;
}

.nv-access-foot {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.76rem;
    line-height: 1.6;
}

html.nv-site-locked body {
    overflow: hidden;
    background: var(--black);
}

html.nv-site-locked body > *:not(.nv-access-gate) {
    visibility: hidden;
}

html.nv-site-unlocked .nv-access-gate {
    display: none !important;
}

@media (max-width: 640px) {
    .nv-access-shell {
        padding: 1.5rem;
        border-radius: 24px;
    }
}
