.video-gallery {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-main {
    position: relative;
    width: 100%;
    /* هذا الكود يضمن نسبة عرض إلى طول صحيحة للفيديو الرئيسي */
    padding-bottom: 56.25%;
    background: #000;
    margin-bottom: 15px;
}
.video-main iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnails-wrapper {
    max-width: 100%;
}

.video-thumbnails {
    margin-top: 15px;
}

.swiper-slide {
    width: 100%;
}

.video-thumbnails iframe {
    /* هذا الكود يحل مشكلة طول الفيديوهات المصغرة */
    width: 100%;
    height: auto; /* يجعل الارتفاع يتناسب مع العرض */
    pointer-events: none;
}

.thumb-card {
    /* هذا الكود يضمن نسبة عرض إلى طول صحيحة للفيديوهات المصغرة */
    position: relative;
    padding-bottom: 56.25%;
    cursor: pointer;
}
.thumb-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ✅ إعلان يطفو فوق الفيديو */
.vg-ad-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    display: none;
    background: rgba(0,0,0,0.7);
    padding: 8px;
    border-radius: 6px;
}
.vg-ad-overlay img {
    max-width: 200px;
    height: auto;
    display: block;
}