/* Neon Ash — Undercut Night choice slice */

.play-page {
  max-width: var(--max);
  margin: 0 auto;
}

.play-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-amber);
  margin: 0 0 0.75rem;
}

.play-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--text);
  text-shadow: 0 0 36px rgba(0, 212, 239, 0.15);
}

.play-subtitle {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.play-intro {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.play-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow:
    0 0 0 1px rgba(0, 212, 239, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.play-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 239, 0.45),
    rgba(255, 45, 149, 0.35),
    transparent
  );
}

.play-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.play-status span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.play-status .dot-live {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 212, 239, 0.7);
}

.play-prose {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
}

.play-prose p {
  margin: 0 0 1rem;
}

.play-prose p:last-child {
  margin-bottom: 0;
}

.play-choices {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.play-choices button {
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  background: rgba(7, 8, 12, 0.65);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(0, 212, 239, 0.55);
  padding: 0.85rem 1rem;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease;
}

.play-choices button:hover,
.play-choices button:focus-visible {
  color: #9ef7ff;
  border-color: rgba(0, 212, 239, 0.45);
  border-left-color: var(--neon-cyan);
  background: rgba(0, 212, 239, 0.06);
  box-shadow: 0 0 20px rgba(0, 212, 239, 0.12);
  outline: none;
}

.play-choices button:focus-visible {
  outline: 1px solid var(--neon-cyan);
  outline-offset: 2px;
}

.play-end-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.play-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  align-items: center;
}

.play-restart {
  appearance: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--neon-cyan);
  border: none;
  padding: 0.65rem 1.1rem;
  box-shadow: 0 0 24px rgba(0, 212, 239, 0.25);
}

.play-restart:hover,
.play-restart:focus-visible {
  background: #9ef7ff;
  outline: none;
}

.play-link-quiet {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.play-noscript {
  font-family: var(--serif);
  color: var(--neon-amber);
  border: 1px solid rgba(232, 168, 74, 0.35);
  padding: 1rem;
  background: rgba(232, 168, 74, 0.06);
}

@media (max-width: 520px) {
  .play-panel {
    padding: 1.25rem 1rem 1.1rem;
  }

  .play-prose {
    font-size: 1.1rem;
  }
}
