.fullwidth-video-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fvg-container {
    position: relative;
    width: 100%;
    background: #000;
}

.fvg-slide {
    position: relative;
    width: 100%;
}

.fvg-video {
    display: block;
    width: 100%;
    height: auto;
}

/* Arrows */
.fvg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 48px;
    line-height: 1;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fvg-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.fvg-prev {
    left: 10px;
}

.fvg-next {
    right: 10px;
}

/* Dots */
.fvg-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.fvg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fvg-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.fvg-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .fvg-arrow {
        font-size: 32px;
        width: 40px;
        height: 40px;
    }

    .fvg-prev {
        left: 5px;
    }

    .fvg-next {
        right: 5px;
    }

    .fvg-dots {
        bottom: 10px;
    }

    .fvg-dot {
        width: 10px;
        height: 10px;
    }
}
