.video-wrapper {
  position: relative;
  max-width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  margin: 5px;
}

.video-wrapper img.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
}

.video-wrapper.played::after {
  display: none;
}

.play-box {
  position: absolute;
  width: 90px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.click-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 5px;
  z-index: 10;
  font-weight: bold;
}

.vAds {
  position: absolute;
  top: -30;
  left: 10;
  right: 10;
  z-index: 20;
  border-radius: 10px;
  background: rgba(0,0,0,0.7);
}