.page-drop-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 72px);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, visibility 140ms ease;
}

.page-drop-overlay::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 5vw, 72px);
  border: 2px dashed rgba(238, 238, 238, 0.72);
  border-radius: clamp(18px, 2vw, 30px);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.035);
}

.page-drop-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.page-drop-overlay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f4f4f4;
}

.page-drop-overlay-label {
  margin-bottom: 22px;
  color: #9e9e9e;
  font: 600 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-drop-overlay-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  color: #eeeeee;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.14));
}

.page-drop-overlay-card strong {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 550;
  letter-spacing: -0.045em;
}

.page-drop-overlay-card > span:last-child {
  color: #b8b8b8;
  font-size: clamp(14px, 1.4vw, 18px);
}

@media (prefers-reduced-motion: reduce) {
  .page-drop-overlay {
    transition: none;
  }
}
