/* VIDEO SCROLL SECTION */
.video-scroll-section {
    height: 400vh;
    position: relative;
    background: #000;
    z-index: 20;
}

.video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.video-frame {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #0a0a0a, #000);
    overflow: hidden;
}

.video-grid {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(196, 244, 59, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 244, 59, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(60deg) translateY(0);
    transform-style: preserve-3d;
    will-change: transform;
}

.video-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    opacity: 0;
    will-change: top, opacity;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(transparent 40%, #000 100%);
    pointer-events: none;
    z-index: 2;
}

.video-text {
    position: relative;
    z-index: 5;
    text-align: center;
    mix-blend-mode: hard-light;
}

.video-title {
    font-family: var(--mono);
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.8);
    will-change: opacity, transform;
}

.video-code {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
    white-space: pre-wrap;
    line-height: 1.4;
    z-index: 1;
}