/* Public table discovery: names and one clear action per running game. */
.live-lobby { width: 100%; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); text-align: left; }
.lobby-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.lobby-heading h3 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -.2px; }
.lobby-heading .lobby-refresh { padding: 6px 0 6px 12px; margin: 0; min-height: 44px; font-size: 14px; }
.lobby-status { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 4px 0 15px; }
.lobby-games { display: grid; gap: 10px; }
.lobby-game { display: grid; width: 100%; gap: 10px; padding: 17px; background: #182920; border: 1px solid #3e5f4b; border-radius: 13px; text-align: left; cursor: pointer; color: var(--ink); }
.lobby-game:hover { background: #213c2d; border-color: var(--accent); }
.lobby-game-heading, .lobby-game-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-width: 0; }
.lobby-game-title { font-size: 18px; line-height: 1.3; overflow-wrap: anywhere; }
.lobby-game-code { color: var(--accent); font-size: 17px; letter-spacing: .12em; font-variant-numeric: tabular-nums; flex: none; }
.lobby-game-players { font-size: 16px; line-height: 1.5; color: #e0eadf; overflow-wrap: anywhere; }
.lobby-game-footer { align-items: flex-end; }
.lobby-game-meta { font-size: 13px; line-height: 1.5; color: #a9bfae; }
.lobby-game-action { color: var(--accent); font-size: 14px; font-weight: 700; white-space: nowrap; }
.phone-join-option { gap: 16px; margin-top: 14px; padding: 16px 0; font-size: 16px; line-height: 1.45; border-bottom: 1px solid var(--line); }
.phone-join-option input { flex: none; min-width: 22px; min-height: 22px; accent-color: var(--accent); }
body[data-screen="join"] .setup-card { justify-content: flex-start; }
#join-lobby { margin: 4px 0 8px; padding-top: 8px; border-top: 0; }
body[data-screen="home"] .games-pill { font-size: 13px; }
body[data-screen="home"] .hero-pitch:has(#home-lobby.has-games) > .eyebrow,
body[data-screen="home"] .hero-pitch:has(#home-lobby.has-games) > h2,
body[data-screen="home"] .hero-pitch:has(#home-lobby.has-games) > .lp-sub { display: none; }
@media (max-width: 480px) {
  .lobby-game { padding: 15px; }
  .lobby-game-footer { align-items: flex-start; flex-direction: column; gap: 6px; }
  .lobby-game-action { align-self: flex-end; }
  .lobby-game-meta { font-size: 14px; }
  .live-lobby { margin-top: 22px; }
}
