/* Video Section V2 - Title Outside & Clean Player */
.video-section-v2 {
    padding: 6rem 0 0;
    background: var(--bg-dark);
}

.video-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
}

.video-full-wrapper {
    width: 100%;
    height: 85vh;
    /* Large cinematic height */
    position: relative;
    overflow: hidden;
    /* This crops the "oversized" iframe */
    background: #000;
    margin-top: 3rem;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.local-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This perfectly fills the container regardless of aspect ratio */
}

.video-scroll-indicator {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 6px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .video-section-title {
        font-size: 2.5rem;
    }

    .video-full-wrapper {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .video-section-v2 {
        padding: 4rem 0 0;
        height: auto;
    }

    .video-section-v2 .container {
        position: static;
        transform: none;
        padding: 0 1.5rem;
        margin-bottom: 2rem !important;
    }

    .video-section-title {
        font-size: 2rem;
        color: var(--text-main);
        text-shadow: none;
    }

    .video-full-wrapper {
        height: 50vh;
        width: 100%;
        margin-top: 1rem;
    }

    .local-video-player {
        height: 100%;
    }
}