/* Layer: Fullscreen Countdown Layer */
/* Semi-transparent countdown overlay shown when entering fullscreen video playback */

[data-layer="fullscreen-countdown"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-upnext);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  pointer-events: none;
}

[data-layer="fullscreen-countdown"].visible {
  opacity: 1;
  visibility: visible;
}

.fullscreen-countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fullscreen-countdown-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20vh;
  height: 20vh;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
}

.fullscreen-countdown-number {
  font-size: 10vh;
  font-weight: 500;
  color: white;
  text-shadow: 0 0.2vh 0.5vh rgba(0, 0, 0, 0.5);
}
