/* Herald · Don't Look — app tweaks. Base in glass-core.css (Meta
   frosted kit; per-app alert accent). Built from LIGHT: the edge cue
   blazes so it's caught in peripheral vision on the see-through
   display. */

.dl-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.dl-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
}
.dl-fix {
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 6px;
}
.dl-big {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--app-accent, var(--accent));
  text-shadow:
    0 0 28px var(--aa-glow, rgba(255, 94, 122, 0.45)),
    0 0 70px var(--aa-glow-soft, rgba(255, 94, 122, 0.24));
  min-height: 4px;
}
.dl-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}
.dl-stats {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* the peripheral cue — large, blazing, glassy */
.dl-cue {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, #ffffff, var(--app-accent, #ff5e7a) 60%, transparent 72%);
  box-shadow:
    0 0 40px 12px var(--aa-glow, rgba(255, 94, 122, 0.75)),
    0 0 90px 30px var(--aa-glow-soft, rgba(255, 94, 122, 0.4));
  transition: opacity 40ms linear, transform 90ms cubic-bezier(0.2, 1.4, 0.4, 1);
}
.dl-cue.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.dl-hint {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
