.video-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* HTML5 Video Container - Responsive 16:9 */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin: 25px 0;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    cursor: pointer;
}

/* YouTube Video Container - Responsive 16:9 */
.video-wrapper-outer {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.video-wrapper-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: #000;
}

#yt1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .video-section {
        margin: 30px auto;
        padding: 0 15px;
    }

    .video-container,
    .video-wrapper-inner {
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        margin: 20px auto;
        padding: 0 10px;
    }
}