.nio-town-video-facade {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #0b2a49;
}

.nio-town-video-facade__button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-color: #0b2a49;
  background-image: linear-gradient(rgba(6, 29, 52, .18), rgba(6, 29, 52, .36)), var(--nio-town-video-poster);
  background-position: center;
  background-size: cover;
}

.nio-town-video-facade__button:focus-visible {
  outline: 3px solid #3dc8ff;
  outline-offset: -3px;
}

.nio-town-video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 48px;
  border-radius: 6px;
  background: #078b63;
  box-shadow: 0 8px 22px rgba(6, 29, 52, .28);
  transform: translate(-50%, -50%);
}

.nio-town-video-facade__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  transform: translate(-50%, -50%);
}

.nio-town-video-facade iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

