/* ============================================================
   Dead Air mini-game. Cinderella "case file" restyle.
   Loaded AFTER css/styles.css so it reuses the :root design tokens.
   ============================================================ */

#dead-air-root {
  background: var(--charcoal);
}
.da-phase {
  outline: none;
}
.da-phase--center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: clamp(2rem, 6vw, 5rem) 1.25rem;
}

/* ---- Shared buttons ---- */
.da-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.2;
}
.da-btn--lg { padding: 1.2rem 2.75rem; font-size: 0.9rem; }
.da-btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.da-btn--primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.da-btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 230, 0.4);
}
.da-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.da-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }

.da-link {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.da-link:hover { color: var(--gold-light); }

.da-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* ---- Notices / alerts ---- */
.da-notice {
  background: rgba(245, 240, 230, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 6px;
  padding: 1.75rem;
  text-align: center;
  max-width: 26rem;
  margin: 0 auto;
}
.da-notice__title { color: var(--cream); font-size: 1rem; margin-bottom: 0.5rem; }
.da-notice__body { color: rgba(245, 240, 230, 0.7); font-size: 0.95rem; margin: 0; }
.da-notice .da-btn { margin-top: 1.25rem; }
.da-alert {
  background: rgba(139, 45, 53, 0.18);
  border: 1px solid rgba(139, 45, 53, 0.5);
  color: #f0c5cb;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
}

/* ---- Spinner ---- */
.da-spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(28, 28, 28, 0.35);
  border-top-color: var(--charcoal);
  border-radius: 50%;
  animation: da-spin 0.9s linear infinite;
}
@keyframes da-spin { to { transform: rotate(360deg); } }

/* ============================================================
   INTRO
   ============================================================ */
.da-intro { text-align: center; max-width: 40rem; }
.da-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 5rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.da-wave-bar {
  width: 3px;
  height: 40%;
  border-radius: 999px;
  background: var(--gold);
  animation: da-wave 1.2s ease-in-out infinite alternate;
}
@keyframes da-wave { 0% { height: 20%; } 100% { height: 80%; } }
@media (prefers-reduced-motion: reduce) { .da-wave-bar { animation: none; height: 50%; } }

.da-intro__text { margin-bottom: clamp(2rem, 5vw, 3rem); }
.da-intro__line1 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: da-fade-in 0.8s ease 0.2s forwards;
}
.da-intro__line2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: da-fade-up 0.8s ease 0.6s forwards;
}
.da-intro__line3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  margin: 0;
  opacity: 0;
  animation: da-fade-in 0.8s ease 1s forwards;
}
.da-intro__action {
  min-height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: da-fade-up 0.8s ease 1.4s forwards;
}
.da-intro__framing {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.6);
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: da-fade-in 0.8s ease 1.8s forwards;
}

@keyframes da-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes da-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   SECTION SCAFFOLD (crime scene, recap, accusation, reveal)
   ============================================================ */
.da-section {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 6rem) 1.25rem;
}
.da-section--narrow { max-width: 40rem; }
.da-section__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.da-section__title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.da-section__lead { color: rgba(245, 240, 230, 0.65); font-size: 0.95rem; margin: 0; }
.da-section__foot { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }

/* ============================================================
   EVIDENCE GRID
   ============================================================ */
.da-ev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .da-ev-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.da-ev-grid--compact { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.6rem; }

.da-ev-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: var(--font-body);
}
.da-ev-card:hover { border-color: var(--gold); background: rgba(245, 240, 230, 0.07); }
.da-ev-card__icon { color: var(--gold); margin-bottom: 0.75rem; }
.da-ev-icon { width: 1.6rem; height: 1.6rem; }
.da-ev-card__title { color: var(--cream); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.da-ev-card__subtitle { color: rgba(245, 240, 230, 0.5); font-size: 0.78rem; }
.da-ev-dot {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}
.da-ev-card--compact {
  align-items: center;
  text-align: center;
  padding: 0.7rem 0.4rem;
}
.da-ev-card--compact .da-ev-card__icon { margin-bottom: 0.35rem; }
.da-ev-card--compact .da-ev-icon { width: 1.25rem; height: 1.25rem; }
.da-ev-card--compact .da-ev-card__title { font-size: 0.62rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.da-ev-card--compact .da-ev-dot { top: 0.3rem; right: 0.3rem; width: 0.4rem; height: 0.4rem; }

/* ============================================================
   EVIDENCE MODAL + "CASE FILE" DOCUMENT STYLES
   ============================================================ */
.da-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.da-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--off-white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.da-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--burgundy);
  cursor: pointer;
  z-index: 5;
}
.da-modal__close svg { width: 1.4rem; height: 1.4rem; }
.da-modal__close:hover { color: var(--burgundy-light); }
.da-modal__content { padding: clamp(1.5rem, 4vw, 2.5rem); }
@media (max-width: 640px) {
  .da-modal { padding: 0; }
  .da-modal__dialog { max-width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
}

/* The .evidence-doc wrapper: a light cream case file. */
.evidence-content .evidence-doc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--off-white);
  border: none;
  padding: 0;
}
.evidence-content .evidence-doc.browser-history,
.evidence-content .evidence-doc.voicemail {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}
/* Document headers / labels */
.evidence-content .doc-header,
.evidence-content .ev-header {
  border-bottom: 2px solid var(--burgundy);
  padding-bottom: 0.75rem;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.evidence-content .doc-label,
.evidence-content .ev-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0;
}
.evidence-content .ev-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 700;
}
.evidence-content .doc-ref,
.evidence-content .ev-meta {
  font-size: 0.72rem;
  color: rgba(28, 28, 28, 0.55);
}
.evidence-content .doc-divider {
  border-top: 1px solid var(--cream-dark);
  margin: 1rem 0;
}
/* Labelled sections */
.evidence-content .brief-label,
.evidence-content .autopsy-label,
.evidence-content .cal-notes-label,
.evidence-content .witness-note-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.evidence-content .brief-section,
.evidence-content .autopsy-section { margin-bottom: 0.9rem; }
.evidence-content .brief-section p,
.evidence-content .autopsy-section p,
.evidence-content .witness-body p,
.evidence-content .ev-body p,
.evidence-content .ev-email-body p { margin: 0 0 0.55rem 0; color: rgba(28, 28, 28, 0.85); }
.evidence-content .brief-section strong,
.evidence-content .ev-redacted { color: var(--charcoal); font-weight: 700; }
.evidence-content .ev-redacted { background: var(--cream-dark); padding: 0 0.35rem; border-radius: 2px; }
.evidence-content em { font-style: italic; }
/* Rows (autopsy) */
.evidence-content .autopsy-row { display: grid; grid-template-columns: 11rem 1fr; gap: 0.5rem; padding: 0.2rem 0; }
.evidence-content .autopsy-field { color: rgba(28, 28, 28, 0.6); font-weight: 600; }
.evidence-content .autopsy-value { color: var(--charcoal); }
/* Tables */
.evidence-content table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.evidence-content th {
  text-align: left;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: var(--burgundy);
  padding: 0.5rem 0.7rem;
  font-weight: 700;
}
.evidence-content td { padding: 0.55rem 0.7rem; border-bottom: 1px solid var(--cream-dark); color: rgba(28, 28, 28, 0.85); }
.evidence-content .cal-day { color: var(--burgundy); font-weight: 700; }
.evidence-content .cal-time { color: rgba(28, 28, 28, 0.6); font-family: 'SF Mono', monospace; }
.evidence-content .cal-highlight td { background: rgba(201, 169, 97, 0.12); }
.evidence-content .cal-important { color: var(--burgundy); font-weight: 700; }
/* Transcript / chat-style lines */
.evidence-content .ev-line { padding: 0.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.evidence-content .ev-timestamp { font-size: 0.7rem; color: rgba(28, 28, 28, 0.5); font-variant-numeric: tabular-nums; }
.evidence-content .ev-speaker { font-weight: 700; color: var(--burgundy); }
.evidence-content .ev-text { color: rgba(28, 28, 28, 0.85); }
.evidence-content .ev-note { font-style: italic; color: rgba(28, 28, 28, 0.6); }
/* Highlights */
.evidence-content .ev-highlight {
  background: rgba(107, 28, 35, 0.08);
  border-left: 3px solid var(--burgundy);
  padding: 0.6rem 0.9rem;
  margin: 0.6rem 0;
  border-radius: 0 4px 4px 0;
}
.evidence-content .ev-end {
  text-align: center;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
}
/* Threads / messages (texts) */
.evidence-content .ev-thread { margin-bottom: 1.25rem; }
.evidence-content .ev-thread-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--cream-dark);
}
.evidence-content .ev-msg { padding: 0.45rem 0; font-size: 0.85rem; }
.evidence-content .ev-msg-time { font-size: 0.7rem; color: rgba(28, 28, 28, 0.45); }
.evidence-content .ev-msg-from { font-weight: 700; color: var(--burgundy); }
.evidence-content .ev-msg-body { color: rgba(28, 28, 28, 0.85); margin-top: 0.15rem; }
/* Email */
.evidence-content .ev-email-header { font-size: 0.82rem; color: rgba(28, 28, 28, 0.7); margin-bottom: 0.2rem; }
.evidence-content .ev-email-header strong { color: var(--charcoal); }
.evidence-content .ev-email-body { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-dark); }
.evidence-content .ev-attachment {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(28, 28, 28, 0.6);
  margin-top: 0.5rem;
}
/* Voicemail body */
.evidence-content .vm-meta { font-size: 0.78rem; color: rgba(28, 28, 28, 0.55); margin-bottom: 0.2rem; }
.evidence-content .vm-body {
  white-space: pre-wrap;
  color: var(--charcoal);
  margin: 1rem 0;
  padding: 1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  line-height: 1.7;
}
.evidence-content .ev-comment { color: rgba(28, 28, 28, 0.55); font-style: italic; }

/* ============================================================
   INTERROGATION
   ============================================================ */
.da-phase--ig { outline: none; }
.da-ig {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  padding-top: 4.25rem; /* clear the fixed site nav */
}
.da-ig__timer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: var(--charcoal-light);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.75);
}
.da-ig__time { font-variant-numeric: tabular-nums; }
.da-ig__timer--warning { color: #e6a0aa; animation: da-pulse 1s ease-in-out infinite; }
@keyframes da-pulse { 50% { opacity: 0.55; } }
.da-ig__accuse {
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  background: rgba(107, 28, 35, 0.25);
  border: 1px solid var(--burgundy-light);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s ease;
}
.da-ig__accuse:hover { background: rgba(107, 28, 35, 0.45); }

.da-ig__suspects {
  flex-shrink: 0;
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  overflow-x: auto;
}
.da-suspect {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(245, 240, 230, 0.12);
  background: rgba(245, 240, 230, 0.03);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}
.da-suspect:hover { border-color: rgba(201, 169, 97, 0.5); }
.da-suspect--active { border-color: var(--gold); background: rgba(201, 169, 97, 0.1); }
.da-suspect--exhausted { opacity: 0.5; }
.da-suspect__name { display: block; font-weight: 700; font-size: 0.85rem; color: var(--cream); }
.da-suspect__check { color: var(--gold); }
.da-suspect__role { display: block; font-size: 0.68rem; color: rgba(245, 240, 230, 0.5); }
.da-suspect__status { display: block; font-size: 0.62rem; color: rgba(245, 240, 230, 0.55); margin-top: 0.2rem; }
.da-suspect__status--last { color: var(--gold-light); }

.da-tip {
  margin: 0 1rem;
  padding: 0.7rem 1rem;
  background: var(--charcoal-light);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 8px;
  color: rgba(245, 240, 230, 0.75);
  font-size: 0.78rem;
  cursor: pointer;
}

.da-ig__chat {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.da-chat__placeholder,
.da-chat__hint { text-align: center; color: rgba(245, 240, 230, 0.45); font-size: 0.85rem; font-style: italic; padding: 1rem 0; }
.da-chat__placeholder { margin-top: 4rem; }
.da-msg { display: flex; }
.da-msg--me { justify-content: flex-end; }
.da-msg--them { justify-content: flex-start; }
.da-bubble {
  max-width: 85%;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (min-width: 768px) { .da-bubble { max-width: 70%; } }
.da-bubble--me { background: rgba(107, 28, 35, 0.3); color: var(--cream); border-bottom-right-radius: 4px; }
.da-bubble--them { background: rgba(245, 240, 230, 0.07); color: rgba(245, 240, 230, 0.85); border-bottom-left-radius: 4px; }
.da-bubble--pending { opacity: 0.55; }
.da-bubble--typing { display: inline-flex; align-items: center; gap: 0.4rem; font-style: italic; color: rgba(245, 240, 230, 0.6); }
.da-dots { display: inline-flex; gap: 0.2rem; }
.da-dots span { width: 0.35rem; height: 0.35rem; background: currentColor; border-radius: 50%; animation: da-blink 1.2s infinite; }
.da-dots span:nth-child(2) { animation-delay: 0.2s; }
.da-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes da-blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

.da-ig__inputbar {
  flex-shrink: 0;
  background: var(--charcoal-light);
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding: 0.75rem 1rem;
}
.da-ig__form { display: flex; gap: 0.6rem; max-width: 56rem; margin: 0 auto; }
.da-ig__input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 240, 230, 0.18);
  background: rgba(245, 240, 230, 0.05);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.da-ig__input::placeholder { color: rgba(245, 240, 230, 0.4); }
.da-ig__input:focus { outline: none; border-color: var(--gold); }
.da-ig__input:disabled { opacity: 0.5; }
.da-ig__ask { padding: 0.7rem 1.5rem; }
.da-ig__evtoggle {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  background: none;
  border: none;
  color: rgba(245, 240, 230, 0.5);
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
}
.da-ig__evtoggle:hover { color: var(--gold-light); }
.da-ig__tray { margin-top: 0.75rem; max-height: 40vh; overflow-y: auto; }

.da-ig__expired {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(28, 28, 28, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
/* The display:flex above overrides the UA [hidden] rule, so restore it
   explicitly or the overlay would show whenever the element is present. */
.da-ig__expired[hidden] { display: none; }

/* ============================================================
   ACCUSATION
   ============================================================ */
.da-accuse__group { margin-bottom: 2rem; }
.da-accuse__q {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.6);
  margin-bottom: 0.75rem;
}
.da-accuse__opts { display: flex; flex-direction: column; gap: 0.6rem; }
.da-option {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(245, 240, 230, 0.12);
  background: rgba(245, 240, 230, 0.03);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}
.da-option:hover { border-color: rgba(201, 169, 97, 0.5); }
.da-option--selected { border-color: var(--gold); background: rgba(201, 169, 97, 0.12); }
.da-option__label { color: var(--cream); font-weight: 600; font-size: 0.92rem; }
.da-option__desc { color: rgba(245, 240, 230, 0.5); font-size: 0.8rem; margin-left: 0.5rem; }
.da-accuse__summary {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: center;
  color: rgba(245, 240, 230, 0.8);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.da-accuse__summary strong { color: var(--gold-light); }

/* ============================================================
   REVEAL
   ============================================================ */
.da-reveal { display: flex; flex-direction: column; gap: 1.25rem; }
.da-fade-up { animation: da-fade-up 0.7s ease both; }
.da-fade-in { animation: da-fade-in 0.7s ease both; }
.da-reveal__card {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
}
.da-reveal__label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.da-reveal__text { color: rgba(245, 240, 230, 0.85); font-size: 0.98rem; line-height: 1.6; margin: 0; }
.da-reveal__beat { text-align: center; padding: 1.5rem 0; color: rgba(245, 240, 230, 0.6); font-style: italic; font-size: 1.1rem; }
.da-reveal__killer { text-align: center; padding: clamp(1.5rem, 5vw, 2.5rem) 0; }
.da-reveal__killer-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  color: var(--cream);
  margin: 0;
}
.da-reveal__killer-text.da-typing::after { content: '|'; animation: da-pulse 1s steps(1) infinite; color: var(--gold); }
.da-reveal__score {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2rem);
}
.da-reveal__score-head {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.6);
  margin-bottom: 1rem;
}
.da-reveal__lines { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.da-reveal__line { display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; color: rgba(245, 240, 230, 0.8); }
.da-mark--yes { color: var(--gold); }
.da-mark--no { color: var(--burgundy-light); }
.da-reveal__total { text-align: center; border-top: 1px solid rgba(245, 240, 230, 0.08); padding-top: 1.5rem; }
.da-reveal__score-num { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 3.5rem); color: var(--cream); margin-bottom: 0.25rem; }
.da-reveal__rank { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--gold); margin-bottom: 0.5rem; }
.da-reveal__flavour { color: rgba(245, 240, 230, 0.7); font-size: 0.95rem; margin: 0; }

.da-reveal__cta { text-align: center; padding-top: 1rem; }
.da-reveal__cta-lead { color: rgba(245, 240, 230, 0.8); font-size: 1rem; line-height: 1.7; max-width: 34rem; margin: 0 auto 1.75rem; }
.da-reveal__cta-buttons { margin-bottom: 1rem; }
.da-reveal__cta-secondary { margin-bottom: 1.5rem; }
.da-reveal__cta-secondary a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.da-reveal__cta-secondary a:hover { color: var(--gold-light); }
.da-reveal__share { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .da-fade-up, .da-fade-in,
  .da-intro__line1, .da-intro__line2, .da-intro__line3, .da-intro__action, .da-intro__framing {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
