.vb-section {
  padding: 150px 0;
}

.vb-container {
  position: relative;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.vb-container.is-loading .vb-play-btn {
  opacity: 0;
  pointer-events: none;
}
.vb-container.is-active .vb-video-wrapper {
  opacity: 1;
  z-index: 2;
}

.vb-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}
.vb-poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}
.vb-poster:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.vb-poster:hover .vb-play-btn {
  transform: scale(1.1);
}
.vb-poster:hover .vb-play-btn circle {
  fill-opacity: 0.4;
}

.vb-play-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 4;
}
.vb-play-btn svg {
  display: block;
}

.vb-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.vb-video-wrapper video,
.vb-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 1023px) {
  .vb-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .vb-section {
    padding: 40px 0;
  }
}