/* ================= LAUNCH VIDEO SECTION ================= */
.launch-video-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #1d3557 0%, #0f2a4a 100%);
    color: #fff;
    text-align: center;
}

.video-header h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #fff;
}

.video-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.video-wrapper {
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 8px solid rgba(255,255,255,0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .launch-video-section {
        padding: 70px 15px;
    }
    .video-header h2 {
        font-size: 2rem;
    }
}