/* Center-screen replay reconstruction notice. */
.replay-seek-overlay {
  position: absolute;
  inset: 0;
  z-index: calc(var(--overlay-z) + 2);
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
}

.replay-seek-overlay[hidden] {
  display: none;
}

.replay-seek-panel {
  position: relative;
  max-width: calc(100vw - 72px);
  text-align: center;
  pointer-events: auto;
}

.replay-seek-title {
  color: var(--accent);
  font-family: "Germania One", var(--lobby-font);
  font-size: clamp(36px, 6vw, 78px);
  line-height: 0.9;
  text-shadow:
    5px 5px 0 #191710,
    0 0 28px rgba(236, 199, 103, 0.32);
}

.replay-seek-detail {
  margin-top: 20px;
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.replay-seek-close {
  position: absolute;
  top: -28px;
  right: -32px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--font);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.replay-seek-close:hover,
.replay-seek-close:focus-visible {
  color: var(--ink);
  outline: 1px solid var(--accent);
  outline-offset: -4px;
}

@media (max-width: 600px) {
  .replay-seek-panel {
    max-width: calc(100vw - 56px);
  }

  .replay-seek-title {
    font-size: clamp(32px, 10vw, 56px);
  }

  .replay-seek-close {
    right: -24px;
  }
}
