html.idle-dvd-active,
html.idle-dvd-active body,
html.idle-dvd-active * {
  cursor: none !important;
}

html.idle-dvd-active #fp-cursor {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#idle-dvd-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 300000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 1100ms;
}

#idle-dvd-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

#idle-dvd-layer {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#idle-dvd-logo {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 520px;
  height: auto;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity, filter;
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0);
}

#idle-dvd-logo.is-impact {
  animation: idleDvdImpact 180ms steps(2, end);
}

@keyframes idleDvdImpact {
  0% {
    opacity: 1;
    filter: none;
  }

  25% {
    opacity: 0.82;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  }

  55% {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.18));
  }

  100% {
    opacity: 1;
    filter: none;
  }
}

@media (pointer: coarse) and (max-width: 900px) {
  #idle-dvd-overlay {
    display: none !important;
  }
}
