/* Intro Video Styles */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.video-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-video {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* On mobile: make video appear larger by cropping to fill more screen */
@media (max-width: 768px) {
    .intro-video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }
}