.responsive-player {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.video-facade::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  transition: background 0.15s ease;
}

.video-facade::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 5px);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 18px 0 18px 28px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
}

.video-facade:hover::before {
  background: rgba(0, 0, 0, 0.7);
}