.video-popup__play {
  position: relative;
  display: block;
  padding: 0;
  line-height: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.video-popup__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: rgba(255, 89, 33, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 150ms ease, background-color 150ms ease;
  pointer-events: none;
}

.video-popup__play:hover .video-popup__play-button,
.video-popup__play:focus-visible .video-popup__play-button {
  background: #ff711c;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-popup__play:focus-visible {
  outline: 2px solid #ff711c !important;
  outline-offset: -2px;
}
