/* ============================================
   Act 3 — The Outro (Playlist + Farewell)
   ============================================ */

#act-outro {
  background: var(--bg-deep);
}

/* Playlist section */
.outro-playlist {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--gap-lg);
}

.outro-playlist h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--gap-xl);
  opacity: 0;
}

/* Final message */
.outro-final {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--gap-lg);
  text-align: center;
}

.outro-final .typewriter-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-primary);
  max-width: var(--content-max);
  line-height: 1.6;
  min-height: 3em;
}

/* The hook */
.outro-hook {
  margin-top: var(--gap-xl);
  opacity: 0;
}

.outro-hook p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-style: italic;
}
