/* ============================================
   VIDEO SECTION (STRATEGIC)
   ============================================ */
.video-section {
    background: #0A0A0A;
    padding: 100px 0;
    position: relative;
}

.video-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Before Video */
.video-intro {
    margin-bottom: 48px;
}

.video-eyebrow {
    display: inline-block;
    color: #00ff88;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.video-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
}

.video-title .text-highlight,
.video-outro-title .text-highlight {
    color: #00ff88;
}

.video-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b92a8;
    max-width: 650px;
    margin: 0 auto;
}

/* Video Container */
.video-container {
    margin: 0 auto 48px;
    max-width: 800px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #00ff88;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* After Video */
.video-outro {
    margin-top: 48px;
    margin-bottom: 60px;
}

.video-outro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 16px;
}

.video-outro-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b92a8;
    max-width: 600px;
    margin: 0 auto;
}

/* Transition Arrow */
.video-transition {
    margin-top: 40px;
}

.arrow-bounce {
    display: inline-block;
    font-size: 40px;
    color: #00ff88;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-title {
        font-size: 28px;
    }

    .video-subtitle,
    .video-outro-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .video-outro-title {
        font-size: 24px;
    }

    .video-container {
        max-width: 100%;
        padding: 0 16px;
    }

    .arrow-bounce {
        font-size: 32px;
    }
}