:root {
    --ink: #1a1029;
    --muted: rgba(26, 16, 41, .62);
    --p1: #7c3aed;
    --p2: #a78bfa;
    --stroke: rgba(124, 58, 237, .18);
    --shadow: 0 22px 70px rgba(26, 16, 41, .10);
    --shadowH: 0 30px 110px rgba(26, 16, 41, .18);
}

/* CRITICAL: Override body overflow from main.css for this page */
body:has(.vv2) {
    overflow: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
}

/* SECTION */
.vv2 {
    position: relative;
    padding: 12px 14px 60px;
    /* Added more bottom padding */
    overflow-x: hidden;
    overflow-y: visible;
    /* Changed to visible - let body handle scroll */
    background:
        radial-gradient(980px 560px at 50% 0%,
            rgba(124, 58, 237, .16),
            rgba(247, 242, 255, 1) 64%),
        radial-gradient(760px 460px at 12% 45%,
            rgba(167, 139, 250, .12),
            transparent 60%),
        radial-gradient(760px 460px at 88% 55%,
            rgba(124, 58, 237, .10),
            transparent 60%);
    min-height: 100vh;
    /* Min height, not fixed */
    height: auto;
    /* Auto height to fit content */
}

.vv2-wrap {
    max-width: 960px;
    /* Reduced width to shrink images & height */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ... back button unchanged ... */
.vv2-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(26, 16, 41, .72);
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, .14);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    font-size: 13px;
}

.vv2-back:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, .24);
    background: rgba(255, 255, 255, .70);
}

/* ===== TOP BLOCK (VV5) ===== */
:root {
    --glass: rgba(255, 255, 255, .62);
}

.vv5-top {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    padding: 22px 18px 12px;
    position: relative;
    z-index: 3;
}

/* ===== HERO MARK ===== */
.vv5-mark {
    display: grid;
    place-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

/* A floating animated core - no box background */
.vv5-markCard {
    width: min(320px, 88vw);
    height: 160px;
    position: relative;
    overflow: visible;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translateZ(0);
    perspective: 900px;
    animation: vv5-float 4.2s ease-in-out infinite;
}

@keyframes vv5-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Moving blob behind */
.vv5-blob {
    position: absolute;
    inset: -45%;
    background:
        radial-gradient(closest-side at 28% 35%, rgba(167, 139, 250, .55), transparent 62%),
        radial-gradient(closest-side at 72% 40%, rgba(124, 58, 237, .52), transparent 64%),
        radial-gradient(closest-side at 55% 75%, rgba(255, 255, 255, .36), transparent 62%),
        conic-gradient(from 200deg,
            rgba(124, 58, 237, .28),
            rgba(167, 139, 250, .34),
            rgba(124, 58, 237, .20),
            rgba(167, 139, 250, .28),
            rgba(124, 58, 237, .28));
    filter: blur(20px) saturate(1.1);
    opacity: .95;
    animation: vv5-blobMove 5.4s ease-in-out infinite;
}

@keyframes vv5-blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(14px, -10px) scale(1.04);
    }

    66% {
        transform: translate(-14px, 12px) scale(1.05);
    }
}

/* ===== TV/MONITOR SCREEN ===== */
.vv5-screen {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vv5-screen-frame {
    width: 120px;
    height: 80px;
    background: linear-gradient(145deg,
            rgba(40, 30, 60, 0.95) 0%,
            rgba(26, 16, 41, 0.98) 100%);
    border-radius: 8px;
    border: 3px solid rgba(124, 58, 237, 0.4);
    box-shadow:
        0 0 30px rgba(124, 58, 237, 0.3),
        0 15px 40px rgba(26, 16, 41, 0.4),
        inset 0 0 20px rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
    animation: vv5-screenGlow 3s ease-in-out infinite;
}

@keyframes vv5-screenGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3), 0 15px 40px rgba(26, 16, 41, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.5), 0 15px 40px rgba(26, 16, 41, 0.4);
    }
}

/* Color bars (TV test pattern style) */
.vv5-color-bars {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 8px;
    display: flex;
    gap: 2px;
    opacity: 0;
    animation: vv5-barsShow 4s ease-in-out infinite;
}

.vv5-color-bars span {
    flex: 1;
    border-radius: 2px;
}

.vv5-color-bars span:nth-child(1) {
    background: #ff6b6b;
}

.vv5-color-bars span:nth-child(2) {
    background: #ffd93d;
}

.vv5-color-bars span:nth-child(3) {
    background: #6bcb77;
}

.vv5-color-bars span:nth-child(4) {
    background: #4d96ff;
}

.vv5-color-bars span:nth-child(5) {
    background: #9b59b6;
}

.vv5-color-bars span:nth-child(6) {
    background: #ff6b9d;
}

@keyframes vv5-barsShow {

    0%,
    40%,
    100% {
        opacity: 0;
    }

    45%,
    55% {
        opacity: 1;
    }
}

/* Screen content - image icon */
.vv5-screen-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.vv5-image-icon {
    position: relative;
    width: 50px;
    height: 35px;
}

/* Mountain shape */
.vv5-mountain {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 22px solid rgba(124, 58, 237, 0.6);
    animation: vv5-mountainPulse 2s ease-in-out infinite;
}

.vv5-mountain::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -22px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid rgba(167, 139, 250, 0.5);
}

@keyframes vv5-mountainPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Sun */
.vv5-sun {
    position: absolute;
    top: 2px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 200, 100, 0.9) 0%,
            rgba(255, 150, 50, 0.7) 100%);
    box-shadow: 0 0 15px rgba(255, 200, 100, 0.6);
    animation: vv5-sunPulse 2s ease-in-out infinite;
}

@keyframes vv5-sunPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 200, 100, 0.6);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(255, 200, 100, 0.8);
    }
}

/* Scanline effect */
.vv5-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(167, 139, 250, 0.4),
            rgba(255, 255, 255, 0.3),
            rgba(167, 139, 250, 0.4),
            transparent);
    animation: vv5-scanlineMove 2s linear infinite;
}

@keyframes vv5-scanlineMove {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Screen stand */
.vv5-screen-stand {
    width: 30px;
    height: 8px;
    background: linear-gradient(to bottom,
            rgba(124, 58, 237, 0.4),
            rgba(80, 40, 150, 0.3));
    border-radius: 0 0 4px 4px;
    margin-top: -2px;
}

/* ===== CAMERA FLASH EFFECTS ===== */
.vv5-flash {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 20%,
            transparent 60%);
    opacity: 0;
    animation: vv5-flashBurst 4s ease-out infinite;
    pointer-events: none;
}

.vv5-flash-2 {
    animation-delay: 2s;
}

@keyframes vv5-flashBurst {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    92% {
        opacity: 1;
        transform: scale(1);
    }

    95% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

/* ===== FLOATING STARS ===== */
.vv5-float-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vv5-star {
    position: absolute;
    font-size: 14px;
    color: rgba(167, 139, 250, 0.7);
    animation: vv5-starTwinkle 2s ease-in-out infinite;
}

.vv5-star:nth-child(1) {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.vv5-star:nth-child(2) {
    top: 15%;
    right: 8%;
    animation-delay: 0.7s;
    font-size: 10px;
}

.vv5-star:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 1.4s;
    font-size: 12px;
}

@keyframes vv5-starTwinkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

/* ===== AMBIENT GLOW ===== */
.vv5-ambient {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(124, 58, 237, 0.15) 0%,
            rgba(167, 139, 250, 0.08) 40%,
            transparent 70%);
    filter: blur(30px);
    z-index: -1;
    animation: vv5-ambientPulse 4s ease-in-out infinite;
}

@keyframes vv5-ambientPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.vv5-label {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .14em;
    color: rgba(26, 16, 41, .52);
}

/* ===== TEXT ===== */
.vv5-title {
    margin: 10px 0 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 950;
    font-size: clamp(48px, 6.4vw, 86px);
    letter-spacing: -0.04em;
    color: var(--ink);
    text-shadow: 0 16px 40px rgba(26, 16, 41, .12);
}

.vv5-sub {
    margin: 14px auto 0;
    max-width: 900px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

/* ===== CHIPS (fixed: pills, not ugly boxes) ===== */
.vv5-chips {
    margin: 16px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 980px;
}

.vv5-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, .16);
    background: rgba(255, 255, 255, .70);
    color: rgba(26, 16, 41, .76);
    font-weight: 900;
    letter-spacing: .01em;
    box-shadow: 0 14px 40px rgba(26, 16, 41, .06);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vv5-chip::after {
    content: "";
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .50) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .16) 55%,
            transparent 70%);
    opacity: 0;
    transform: translateX(-24%);
    pointer-events: none;
}

.vv5-chip:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(124, 58, 237, .26);
    box-shadow: 0 22px 70px rgba(26, 16, 41, .10);
}

.vv5-chip:hover::after {
    opacity: .95;
    animation: vv5-shine .75s ease-out 1;
}

@keyframes vv5-shine {
    0% {
        transform: translateX(-30%);
        opacity: 0;
    }

    20% {
        opacity: .95;
    }

    100% {
        transform: translateX(30%);
        opacity: 0;
    }
}

/* ===== PANEL ===== */
.vv5-panel {
    margin: 16px auto 0;
    max-width: 920px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(124, 58, 237, .14);
    background: rgba(255, 255, 255, .68);
    color: rgba(26, 16, 41, .72);
    line-height: 1.7;
    box-shadow: 0 18px 55px rgba(26, 16, 41, .06);
    backdrop-filter: blur(10px);
}

@media (prefers-reduced-motion: reduce) {

    .vv5-markCard,
    .vv5-blob,
    .vv5-ring,
    .vv5-ring2,
    .vv5-sparks,
    .vv5-glass,
    .vv5-icon {
        animation: none !important;
    }
}

.vv2-title {
    margin: 0;
    display: inline-grid;
    place-items: center;
    position: relative;
    line-height: 1;
}

.vv2-titleFill {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 950;
    font-size: clamp(34px, 4.5vw, 60px);
    /* Compact title */
    letter-spacing: -0.04em;
    color: var(--ink);
    text-shadow: 0 16px 40px rgba(26, 16, 41, .12);
}

.vv2-titleGlow {
    position: absolute;
    inset: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 950;
    font-size: clamp(34px, 4.5vw, 60px);
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--p1), var(--p2), var(--p1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(14px);
    opacity: .18;
    pointer-events: none;
    animation: vv2-titleGlow 3.6s ease-in-out infinite;
}

/* ... animations unchanged ... */
.vv2-title::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -14px;
    height: 12px;
    border-radius: 999px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(124, 58, 237, .24),
            rgba(167, 139, 250, .18),
            rgba(124, 58, 237, .24),
            transparent);
    filter: blur(1px);
    opacity: .85;
    animation: vv2-underline 3.2s ease-in-out infinite;
}

@keyframes vv2-titleGlow {

    0%,
    100% {
        opacity: .14;
    }

    50% {
        opacity: .26;
    }
}

@keyframes vv2-underline {

    0%,
    100% {
        transform: scaleX(.92);
        opacity: .55;
    }

    50% {
        transform: scaleX(1.06);
        opacity: .95;
    }
}

.vv2-sub {
    margin: 12px auto 0;
    max-width: 760px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.vv2-feature {
    margin: 20px auto 0;
    max-width: 760px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(124, 58, 237, .14);
    border-radius: 16px;
    padding: 14px 18px 12px;
    box-shadow: 0 12px 40px rgba(26, 16, 41, .06);
    backdrop-filter: blur(10px);
    text-align: left;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

/* ... feature rest unchanged ... */
.vv2-feature::before {
    content: "";
    position: absolute;
    inset: -30% -30%;
    background:
        linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .62) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .20) 55%,
            transparent 70%);
    opacity: .0;
    transform: translateX(-24%);
    pointer-events: none;
}

.vv2-feature:hover::before {
    opacity: .9;
    animation: vv2-shine .75s ease-out 1;
}

.vv2-feature h3 {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: .02em;
    color: rgba(124, 58, 237, .90);
    font-weight: 950;
}

.vv2-feature p {
    margin: 0;
    color: rgba(26, 16, 41, .78);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== GALLERY ===== */
.vv2-gallery {
    margin: 22px auto 0;
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vv2-shot {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, .14);
    box-shadow: 0 12px 40px rgba(26, 16, 41, .08);
    aspect-ratio: 16 / 10;
    position: relative;
    transform: translateZ(0);
    cursor: url('../images/chain-cursor.svg') 12 12, auto !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    background: rgba(255, 255, 255, .55);
}

/* ... rest of gallery unchanged ... */
.vv2-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0) scale(1);
    transition: transform .18s ease, filter .18s ease;
    will-change: transform;
    animation: vv2-float 7s ease-in-out infinite;
}

/* Hover: lift + zoom (small) */
.vv2-shot:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadowH);
    border-color: rgba(124, 58, 237, .26);
    z-index: 2;
}

.vv2-shot:hover img {
    transform: scale(1.08);
    filter: saturate(1.05) contrast(1.02);
}

/* Shine sweep */
.vv2-shot::after {
    content: "";
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .55) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .20) 55%,
            transparent 70%);
    opacity: 0;
    transform: translateX(-24%);
    pointer-events: none;
}

.vv2-shot:hover::after {
    opacity: .95;
    animation: vv2-shine .75s ease-out 1;
}

@keyframes vv2-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.01);
    }
}

@keyframes vv2-shine {
    0% {
        transform: translateX(-30%);
        opacity: 0;
    }

    20% {
        opacity: .95;
    }

    100% {
        transform: translateX(30%);
        opacity: 0;
    }
}

/* CTA */
.vv2-cta {
    margin-top: 24px;
    display: grid;
    place-items: center;
}

.vv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    min-width: min(300px, 80vw);
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 255, 255, .92);
    color: rgba(0, 0, 0, .86);
    font-weight: 950;
    font-size: 14px;
    letter-spacing: .06em;
    box-shadow: 0 20px 70px rgba(124, 58, 237, .18);
    border: 1px solid rgba(124, 58, 237, .16);
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

/* ... btn rest unchanged ... */
.vv2-btn::before {
    content: "";
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .72) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .26) 55%,
            transparent 70%);
    opacity: 0;
    transform: translateX(-24%);
    pointer-events: none;
}

.vv2-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 120px rgba(124, 58, 237, .22);
}

.vv2-btn:hover::before {
    opacity: .95;
    animation: vv2-shine .75s ease-out 1;
}

.vv2-btnLabel {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 980px) {
    .vv2-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .vv2-gallery {
        grid-template-columns: 1fr;
    }

    .vv2-orb {
        width: min(420px, 92vw);
    }
}

/* ===== BACKGROUND AMBIENCE ===== */
.vv2-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.vv2-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(28px);
    opacity: .55;
    mix-blend-mode: multiply;
    animation: vv2-blobFloat 14s ease-in-out infinite;
}

.vv2-blob.b1 {
    width: 620px;
    height: 420px;
    left: 50%;
    top: -200px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(124, 58, 237, .18), transparent 70%);
}

.vv2-blob.b2 {
    width: 520px;
    height: 380px;
    left: -200px;
    top: 42%;
    background: radial-gradient(closest-side, rgba(167, 139, 250, .16), transparent 70%);
    animation-duration: 16s;
}

.vv2-blob.b3 {
    width: 560px;
    height: 400px;
    right: -240px;
    top: 58%;
    background: radial-gradient(closest-side, rgba(124, 58, 237, .14), transparent 70%);
    animation-duration: 18s;
}

.vv2-dots {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(2px 2px at 16% 22%, rgba(124, 58, 237, .18), transparent 60%),
        radial-gradient(2px 2px at 28% 70%, rgba(167, 139, 250, .18), transparent 60%),
        radial-gradient(2px 2px at 62% 26%, rgba(124, 58, 237, .16), transparent 60%),
        radial-gradient(2px 2px at 78% 58%, rgba(167, 139, 250, .14), transparent 60%),
        radial-gradient(2px 2px at 48% 48%, rgba(124, 58, 237, .12), transparent 60%);
    opacity: .55;
    animation: vv2-dots 9s ease-in-out infinite;
    filter: blur(.15px);
}

.vv2-sheen {
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .10) 45%,
            rgba(167, 139, 250, .08) 50%,
            rgba(255, 255, 255, .06) 55%,
            transparent 70%);
    opacity: .0;
    transform: translateX(-30%);
    animation: vv2-sheen 7.6s ease-in-out infinite;
}

@keyframes vv2-blobFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(12px) translateX(12px) scale(1.03);
    }
}

@keyframes vv2-dots {

    0%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    50% {
        transform: translateY(10px);
        opacity: .70;
    }
}

@keyframes vv2-sheen {
    0% {
        opacity: 0;
        transform: translateX(-34%);
    }

    20% {
        opacity: .55;
    }

    55% {
        opacity: .25;
    }

    100% {
        opacity: 0;
        transform: translateX(34%);
    }
}

/* ===== LIGHTBOX ===== */
.vv2-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(18, 10, 28, .95) !important;
    backdrop-filter: blur(14px);
    display: none;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    padding: 15px !important;
    overflow: hidden !important;
}

.vv2-lightbox.is-open {
    display: flex !important;
}

.vv2-lightImg {
    max-width: 88vw !important;
    max-height: 80vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px;
    box-shadow: 0 40px 140px rgba(0, 0, 0, .65);
    border: 1px solid rgba(255, 255, 255, .12);
    margin: auto !important;
    display: block !important;
}

.vv2-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92);
    font-size: 24px;
    line-height: 1;
    cursor: url('../images/chain-cursor.svg') 12 12, auto !important;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
    transition: transform .18s ease, background .18s ease;
    z-index: 10000;
}

.vv2-close:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, .16);
}

/* Mobile lightbox specific */
@media (max-width: 768px) {
    .vv2-lightbox {
        padding: 10px !important;
    }

    .vv2-lightImg {
        max-width: 95vw !important;
        max-height: 75vh !important;
        object-fit: contain !important;
    }

    .vv2-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vv2 * {
        animation: none !important;
        transition: none !important;
    }
}