*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    padding:50px 20px;
}

.video-wrapper{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.video-thumb{
    position:relative;
    width:300px;
    cursor:pointer;
}

.video-thumb img{
    width:100%;
    border-radius:12px;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:rgba(255,255,255,0.9);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

/* POPUP */

.video-popup{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.video-popup-content{
    position:relative;
    width:80%;
    max-width:900px;
}

.video-popup video{
    width:100%;
    border-radius:12px;
    background:#000;
        height: 80vh;
}
.v-title {
    text-align: center;
}
.row.v-t {
    display: flex;
    justify-content: center;
}
.close-popup{
    position:absolute;
    top:-45px;
    right:0;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    line-height:1;
}

@media(max-width:768px){

    .video-popup-content{
        width:100%;
    }

    .video-thumb{
        width:100%;
    }

}
