.video-swiper {
    width: 100%;
    height: 100%;
}

.video-swiper .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pagination dots */
.video-swiper-pagination {
    z-index: 40 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center;
}

.video-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #D7A04B;
    transform: scale(1.2);
}

/* Navigation buttons - MUST be above slide content */
.video-swiper-button-prev,
.video-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40 !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 30, 36, 0.8);
    border: 2px solid rgba(215, 160, 75, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto !important;
}

.video-swiper-button-prev {
    left: 16px;
}

.video-swiper-button-next {
    right: 16px;
}

.video-swiper-button-prev:hover,
.video-swiper-button-next:hover {
    background: rgba(29, 30, 36, 0.95);
    border-color: #D7A04B;
}

.video-swiper-button-prev svg,
.video-swiper-button-next svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    pointer-events: none;
}

.video-swiper-button-prev:hover svg,
.video-swiper-button-next:hover svg {
    color: #D7A04B;
}

@media (min-width: 768px) {

    .video-swiper-button-prev,
    .video-swiper-button-next {
        width: 56px;
        height: 56px;
        border-width: 3px;
    }

    .video-swiper-button-prev {
        left: 24px;
    }

    .video-swiper-button-next {
        right: 24px;
    }

    .video-swiper-button-prev svg,
    .video-swiper-button-next svg {
        width: 32px;
        height: 32px;
    }
}

/* Modal border */
#video-modal .bg-black {
    border: 1.5px solid #D7A04B;
}