.video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-btn {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
}

.play-btn {
  top: 50%;
  left: 50%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.play-btn img {
  width: 91px;
  height: 91px;
}

.fullscreen-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 66px;
  bottom: 16px;
}

@media screen and (max-width: 926px) {
  .video-wrapper {
    height: 100%;
  }
  .play-btn {
    top: 52%;
    left: 52%;
    transform: translate(-65%, -60%);
  }
  .fullscreen-btn {
    bottom: 20px;
    right: 26px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .play-btn {
    top: 46%;
    left: 53%;
  }
  .fullscreen-btn {
    bottom: 50px;
  }
}