.incident-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 16, 32, 0.75);
  padding: 16px;
  margin-bottom: 16px;
}

.incident-panel h2 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--warn);
}

.incident-panel pre {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  font-family: "Cascadia Code", "Fira Code", monospace;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  white-space: pre-wrap;
  word-break: break-word;
}

.timer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.timer-row span {
  font-size: 13px;
  color: var(--muted);
}

#timer {
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
}

#timer.urgent {
  color: var(--bad);
  animation: pulse 0.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.55; }
}

#choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choice-btn {
  width: 100%;
  text-align: left;
}

#restart-btn {
  margin-top: 16px;
  width: 100%;
}
