/* ================================
   VIDEO INTRO OVERLAY
   Fullscreen video that plays before
   page content is revealed
   ================================ */

.video-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-intro-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-intro-skip {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 100000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.video-intro-skip:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Progress bar at bottom */
.video-intro-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #fff;
    z-index: 100000;
    transition: width 0.1s linear;
}

/* Fade out animation */
.video-intro-overlay.fade-out {
    animation: introFadeOut 0.8s ease forwards;
}

@keyframes introFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* Page content hidden initially */
.page-content-hidden {
    opacity: 0;
}

/* Page content reveal */
.page-content-reveal {
    animation: pageReveal 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes pageReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-intro-skip {
        bottom: 24px;
        right: 24px;
        padding: 10px 22px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .video-intro-skip {
        bottom: 16px;
        right: 16px;
        padding: 8px 18px;
        font-size: 11px;
    }
}
