.bv-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

.bv-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bv-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.bv-lightbox-content img,
.bv-lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.bv-lightbox-close,
.bv-lightbox-prev,
.bv-lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.bv-lightbox-close {
    top: 1rem;
    right: 1rem;
}

.bv-lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.bv-lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.bv-lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
}

.bv-lightbox button:hover {
    opacity: 0.8;
}