.videojs-audio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: videojs-audio-overlay-fade 1.2s ease forwards;
  z-index: 50;
}

.videojs-audio-overlay span {
  padding: 12px 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.videojs-audio-overlay--hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes videojs-audio-overlay-fade {
  0% { opacity: 0; }
  40% { opacity: 1; }
  100% { opacity: 0.85; }
}
