#outro {
  background: #000;
  justify-content: center;
  align-items: center;
  padding: clamp(20px, 4vh, 40px);
}

.outro-title {
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(56px, 14vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  animation: outro-pop 0.6s cubic-bezier(0.2, 1.2, 0.3, 1) both;
}

@keyframes outro-pop {
  0%   { transform: scale(0.7); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .outro-title { animation: none; }
}

/* ── Kiosk 1080×1920 (slightly scaled down) ── */
@media (orientation: portrait) and (min-width: 1000px) and (min-height: 1700px) {
  .outro-title { font-size: clamp(150px, 12vw, 200px); }
}
