.vc-8b-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    user-select: none;
    background: #000;
    min-height: 400px;
}

.vc-8b-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px;
}

.vc-8b-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    min-height: 400px;
}

.vc-8b-slide {
    flex: 0 0 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    opacity: 0.4;
    transition: opacity 0.4s ease;
    min-height: 400px;
}

.vc-8b-slide.active {
    opacity: 1;
}

.vc-8b-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #000;
}

.vc-8b-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 400px;
}

/* Nav Buttons */
.vc-8b-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 10;
    outline: none;
}

.vc-8b-nav span {
    font-size: 16px;
    display: inline-block;
}

.vc-8b-prev {
    left: 15px;
}

.vc-8b-next {
    right: 15px;
}

.vc-8b-nav:hover {
    transform: translateY(-50%) scale(1.08);
}

.vc-8b-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* RTL Support */
body.rtl .vc-8b-track {
    flex-direction: row;
}

body.rtl .vc-8b-prev {
    left: auto;
    right: 15px;
}

body.rtl .vc-8b-next {
    right: auto;
    left: 15px;
}
