/* tt-next-game.css - shared cross-promo strip (window.TTNextGame). Sits quietly
   below the leaderboard/actions on a result screen. Self-contained, scoped
   under .tt-ng so it never leaks into a game's own styles. */
.tt-ng {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 480px;
  margin: 14px auto 0;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .6s ease, transform .6s ease;
}
.tt-ng.show { opacity: 1; transform: none; }
.tt-ng *, .tt-ng *::before, .tt-ng *::after { box-sizing: border-box; }

.tt-ng-progress {
  font-size: 12px;
  font-weight: 600;
  color: #9a978c;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.tt-ng-progress strong { color: #6b6a62; }

.tt-ng-cards { display: flex; gap: 10px; }
.tt-ng-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e3e1d8;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.tt-ng-card:hover {
  border-color: var(--tt-ng-accent, #185FA5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.tt-ng-card-name { font-size: 13px; font-weight: 700; color: #1c1c1e; }
.tt-ng-card-hook {
  font-size: 11.5px;
  color: #8a877c;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tt-ng-card-cta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #b3b0a4;
  margin-top: 2px;
  transition: color .18s ease;
}
.tt-ng-card:hover .tt-ng-card-cta { color: var(--tt-ng-accent, #185FA5); }

.tt-ng-all {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #9a978c;
  text-decoration: none;
  transition: color .18s ease;
}
.tt-ng-all:hover { color: #185FA5; }

@media (prefers-reduced-motion: reduce) {
  .tt-ng { transition: none; opacity: 1; transform: none; }
}

@media (max-width: 540px) {
  .tt-ng-cards { flex-direction: column; }
}
