/* Play/Pause Button Styling */
.play-pause-button {
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  visibility: visible;
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 100;
}

/* Show on hover of video container */
.w-background-video:hover .play-pause-button,
.play-pause-button:hover {
  opacity: 1;
}

.play-pause-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.play-pause-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Ensure button is always visible on mobile */
@media screen and (max-width: 767px) {
  .play-pause-button {
    opacity: 1;
    visibility: visible;
  }
}