
.pvg-carousel-wrapper{
    position:relative;
    overflow:hidden;
    padding:20px 0;
}

.pvg-carousel-track{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    scroll-snap-type:x mandatory;
    padding:10px 60px;
}

.pvg-carousel-track::-webkit-scrollbar{
    display:none;
}

.pvg-card{
    flex:0 0 calc((100% - 126px)/7.5);
    scroll-snap-align:start;
    cursor:pointer;
    transition:transform .3s ease;
}

.pvg-card:hover{
    transform:translateY(-6px);
}

.pvg-thumb{
    position:relative;
    aspect-ratio:9/16;
    overflow:hidden;
    border-radius:18px;
    background:#000;
}

.pvg-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.pvg-card:hover img{
    transform:scale(1.05);
}

.pvg-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
    display:flex;
    align-items:center;
    justify-content:center;
}

.pvg-play{
    width:64px;
    height:64px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.pvg-content{
    padding-top:12px;
}

.pvg-content h3{
    font-size:16px;
    line-height:1.4;
    margin:0;
}

.pvg-arrow{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    border:none;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:20;
}

.pvg-prev{left:5px;}
.pvg-next{right:5px;}

.pvg-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.pvg-lightbox.active{
    display:flex;
}

.pvg-lightbox-content{
    width:90%;
    max-width:1200px;
    position:relative;
}

.pvg-lightbox iframe,
.pvg-lightbox video{
    width:100%;
    height:70vh;
    border:none;
    border-radius:18px;
}

.pvg-close{
    position:absolute;
    top:-50px;
    right:0;
    background:none;
    border:none;
    color:white;
    font-size:42px;
    cursor:pointer;
}

@media(max-width:1024px){
    .pvg-card{
        flex:0 0 calc((100% - 54px)/4.5);
    }
}

@media(max-width:768px){
    .pvg-card{
        flex:0 0 calc((100% - 18px)/2.2);
    }
}
