
.vhpb-wrapper{
 position:relative;
 max-width:900px;
 margin:auto;
}

.vhpb-video{
 width:100%;
 display:block;
}

.vhpb-play{
 position:absolute;
 top:50%;
 left:50%;
 transform:translate(-50%,-50%);
 width:80px;
 height:80px;
 border-radius:50%;
 background:#fff;
 cursor:pointer;
 animation:vhpbPulse 1.5s infinite;
}

.vhpb-play:after{
 content:"▶";
 position:absolute;
 left:30px;
 top:22px;
 font-size:28px;
}

@keyframes vhpbPulse{
 0%{box-shadow:0 0 0 0 rgba(255,255,255,.7);}
 70%{box-shadow:0 0 0 25px rgba(255,255,255,0);}
 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);}
}

.vhpb-controls{
 position:absolute;
 bottom:20px;
 right:20px;
 display:flex;
 gap:10px;
}

.vhpb-controls button{
 background:rgba(0,0,0,.6);
 color:#fff;
 border:none;
 padding:8px 12px;
 border-radius:4px;
 cursor:pointer;
}
