/* The black box on the game-over screen: a strip of recovered tape and the
   button that hands it over. The tape has to be selectable — the whole point
   of the panel is that its text leaves the machine on the clipboard. */
.debrief {
  width: min(34rem, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.debrief .tape {
  width: 100%;
  max-height: 11rem;
  overflow: auto;
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.62rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  white-space: pre;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
  color: var(--dim);
  background: rgba(12, 5, 24, 0.72);
  border: 1px dashed rgba(182, 255, 61, 0.35);
  box-shadow: inset 0 0 24px rgba(182, 255, 61, 0.05);
}
.debrief .copytape {
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  padding: 0.55rem 1.4rem;
  color: var(--lime);
  background: transparent;
  border: 1px solid currentColor;
  text-shadow: 0 0 10px currentColor;
  box-shadow: 0 0 14px rgba(182, 255, 61, 0.25),
              inset 0 0 10px rgba(182, 255, 61, 0.08);
  cursor: pointer;
}
.debrief .copytape:hover {
  background: rgba(182, 255, 61, 0.12);
}
@media (max-height: 940px) {
  .debrief .tape { max-height: 7rem; }
}
