.intro-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-video-player video {
  object-fit: contain;
}

.intro-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.intro-video-play:hover,
.intro-video-play:focus {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.08);
  outline: none;
}

.intro-video-play-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 38px;
  border-color: transparent transparent transparent #fff;
  margin-left: 10px;
}

.intro-video-player.is-playing .intro-video-play {
  opacity: 0;
  pointer-events: none;
}
