.fade-overlay {
  position: fixed;
  inset: 0;

  z-index: 9999;

  background: #000;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.5s ease;
}

.fade-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.fade-out {
  transform: scale(0.985);
  transition: transform 0.5s ease;
}