/* ════ VIDEO SECTION ════ */
.video-section {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/imgs/bgs/bgArrow.svg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.12) saturate(1.5);
    will-change: transform;
}

.v-orb-l {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.38) 0%, transparent 70%);
    left: -200px;
    top: -100px;
    filter: blur(80px);
    animation: orbFloat1 11s ease-in-out infinite;
}

.v-orb-r {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 50, 157, 0.5) 0%, transparent 70%);
    right: -150px;
    bottom: -100px;
    filter: blur(70px);
    animation: orbFloat2 9s ease-in-out infinite;
}

.video-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 5rem;
    max-width: 1100px;
    width: 100%;
}

.vtag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--light);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.vtag::before,
.vtag::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--light);
}

.video-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 7.5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.video-section h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--light);
}

.video-section p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.video-player-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 40px 120px rgba(0, 0, 50, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.42) saturate(1.4);
    transform: scale(1.03);
    transition: transform 0.6s;
}

.video-player-wrap:hover .video-placeholder {
    transform: scale(1.07);
}

.v-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 50, 157, 0.55) 0%, rgba(10, 42, 102, 0.2) 100%);
}

.v-liq-border {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1.5px solid rgba(94, 174, 255, 0.3);
    animation: vPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(94, 174, 255, 0);
        border-color: rgba(94, 174, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px 10px rgba(94, 174, 255, 0.12);
        border-color: rgba(94, 174, 255, 0.65);
    }
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    z-index: 5;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(255, 255, 255, 0.2);
}

.play-btn svg {
    margin-left: 4px;
}

.play-btn::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: ring 2.5s ease-out infinite;
}

.play-btn::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    animation: ring 2.5s ease-out 0.5s infinite;
}

@keyframes ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}


/* ════ RESPONSIVE ════ */
@media (max-width: 1024px) {
    .video-inner {
        padding: 5rem 3rem;
    }

    .video-player-wrap {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .video-section {
        min-height: unset;
    }

    .video-inner {
        padding: 4rem 1.5rem;
    }

    .v-orb-l,
    .v-orb-r {
        width: 300px;
        height: 300px;
    }

    .play-btn {
        width: 64px;
        height: 64px;
    }

}

@media (max-width: 480px) {
    .video-inner {
        padding: 3rem 1.25rem;
    }

    .video-player-wrap {
        border-radius: 16px;
    }

    .v-liq-border {
        border-radius: 16px;
    }

    .play-btn {
        width: 54px;
        height: 54px;
    }

    .play-btn::before {
        inset: -8px;
    }

    .play-btn::after {
        inset: -16px;
    }
}