html, body { height: 100%; margin: 0; background: #000; }
.wrap { height: 100%; display: flex; align-items: center; justify-content: center; position: relative; background: #000; }
video { width: 100%; height: 100%; object-fit: cover; background: #000; display: block; }

.wrap.letterbox video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}
.overlay button {
  font-size: 18px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
}

.audio-indicator {
  position: static;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: opacity 450ms ease;
}
.audio-indicator.faded {
  opacity: 0;
}
.audio-indicator svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: none;
}
.audio-indicator.muted #iconMuted {
  display: block;
}
.audio-indicator.unmuted #iconOn {
  display: block;
}

.audio-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.skip-intro-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.audio-tools:hover .skip-intro-btn,
.audio-tools:focus-within .skip-intro-btn,
.skip-intro-btn:focus-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
