.video-frame {
  position: relative;
}

.video-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: rgba(4, 21, 29, 0.24);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  background: rgba(4, 21, 29, 0.42);
}

.video-play-button span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding-left: 5px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(4, 21, 29, 0.82);
  font-size: 1.65rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
}

.video-play-button strong {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(4, 21, 29, 0.82);
  font-size: 0.92rem;
}

.video-play-button.is-hidden {
  pointer-events: none;
  opacity: 0;
}
