/* ===========================================================
   The Stadium — App UI Kit styles
   Prefix every class with ts- to namespace.
   =========================================================== */

/* App frame */
.ts-app {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--ink-900);
  color: var(--fg-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Live dot keyframe (component-scoped — uses standard pulse) */
.ts-live-dot {
  display: inline-block;
  background: var(--roar-500);
  border-radius: 999px;
  box-shadow: var(--glow-roar);
  animation: live-pulse 1.6s var(--ease-out) infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.8; }
}
.ts-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--roar-500);
}

/* Avatar / Crest */
.ts-avatar, .ts-crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.ts-crest { font-family: var(--font-display); }

/* Floodlight glow overlay at top of stadium screen */
.ts-floodlight {
  position: absolute;
  inset: 0 0 auto 0;
  height: 60%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -10%,
              rgba(27,61,245,0.35) 0%,
              rgba(27,61,245,0.08) 40%,
              rgba(27,61,245,0) 70%);
}

/* Press affordance */
.press { transition: transform 80ms var(--ease-out), filter 80ms var(--ease-out); }
.press:active { transform: scale(0.96); filter: brightness(0.92); }

/* Icon button */
.ts-icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--ink-800);
  border: 1px solid var(--border-hair-dark);
  color: var(--fg-1);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.ts-icon-btn.small { width: 32px; height: 32px; }

/* ===========================================================
   HOME SCREEN
   =========================================================== */
.ts-home {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 32px;
  scrollbar-width: none;
}
.ts-home::-webkit-scrollbar { display: none; }

.ts-home-header {
  padding: 18px 0 22px;
  text-align: center;
}
.ts-home-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--fg-1);
  margin: 0;
  text-transform: uppercase;
}

.ts-home-section { margin-top: 22px; }
.ts-home-section-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.ts-home-flame { font-size: 18px; line-height: 1; }
.ts-home-livedot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--pitch-500);
  box-shadow: 0 0 8px rgba(42,92,255,0.6);
}
.ts-home-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--fg-1);
  text-transform: uppercase;
}

/* HOT EVENTS — outlined Pitch-Blue cards, 2-up grid */
.ts-hot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ts-hot-card {
  text-align: left;
  background: transparent;
  border: 1.5px solid var(--pitch-500);
  border-radius: 8px;
  padding: 12px;
  color: var(--fg-1);
  cursor: pointer;
  font-family: inherit;
  display: flex; flex-direction: column; gap: 6px;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 80ms var(--ease-out);
}
.ts-hot-card:hover { background: rgba(42, 92, 255, 0.08); }
.ts-hot-card:active { transform: scale(0.98); }
.ts-hot-teams {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-1);
  display: flex; gap: 5px; align-items: baseline;
  text-transform: uppercase;
}
.ts-hot-vs { color: var(--fg-3); font-weight: 500; font-size: 11px; }
.ts-hot-line {
  display: flex; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
}
.ts-hot-fans {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--roar-500);
  letter-spacing: -0.01em;
}

/* ALL LIVE EVENTS — filled cards, 2-up grid */
.ts-search {
  margin-bottom: 12px;
}
.ts-search-input {
  width: 100%; box-sizing: border-box;
  background: var(--ink-700);
  border: 0;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--fg-1);
  outline: none;
}
.ts-search-input::placeholder { color: var(--fg-3); }
.ts-search-input:focus { box-shadow: inset 0 0 0 1.5px var(--pitch-500); }

.ts-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ts-live-card {
  text-align: left;
  background: var(--ink-700);
  border: 0;
  border-radius: 8px;
  padding: 12px;
  color: var(--fg-1);
  cursor: pointer;
  font-family: inherit;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 160ms var(--ease-out), transform 80ms var(--ease-out);
}
.ts-live-card:hover { background: var(--ink-600); }
.ts-live-card:active { transform: scale(0.98); }
.ts-live-teams {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  display: flex; gap: 4px; align-items: baseline;
  text-transform: uppercase;
}
.ts-live-vs { color: var(--fg-3); font-weight: 500; font-size: 10px; }
.ts-live-line {
  display: flex; gap: 6px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
}
.ts-live-period { color: var(--fg-2); }
.ts-live-meta   { color: var(--fg-2); }
.ts-live-fans   { color: var(--roar-500); font-weight: 600; }

/* Stadium card */
.ts-stadium-card {
  position: relative;
  width: 100%;
  text-align: left;
  background: var(--ink-800);
  border: 0;
  border-radius: 16px;
  padding: 14px 16px 14px 22px;
  color: var(--fg-1);
  cursor: pointer;
  box-shadow: var(--inset-hi);
  font-family: inherit;
  overflow: hidden;
}
.ts-stadium-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.ts-stadium-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.ts-stadium-upcoming {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ts-stadium-crowd {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.ts-stadium-crowd svg { width: 13px; height: 13px; }
.ts-stadium-teams {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.ts-stadium-team {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 15px;
  color: var(--fg-1);
}
.ts-stadium-team.right { flex-direction: row; }
.ts-stadium-vs { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); padding: 0 8px; }
.ts-stadium-scores {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 6px;
}
.ts-stadium-score {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.95;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.ts-stadium-score.lead { color: var(--roar-500); }
.ts-stadium-score.muted { color: var(--fg-3); font-size: 32px; }
.ts-stadium-clock {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-2);
}

/* ===========================================================
   STADIUM SCREEN
   =========================================================== */
.ts-stadium-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--ink-900);
  overflow: hidden;
}

/* ScoreBar */
.ts-scorebar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 32px 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 8px 12px 0;
  padding: 8px 10px 8px 6px;
  background: rgba(15, 20, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-hair-dark);
  border-radius: 999px;
  box-shadow: var(--inset-hi);
}
.ts-scorebar-back {
  background: transparent;
  border: 0;
  color: var(--fg-1);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.ts-scorebar-team {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-1);
  min-width: 0;
}
.ts-scorebar-team.right { justify-content: flex-end; }
.ts-scorebar-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-scorebar-score {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.ts-scorebar-score .dash { color: var(--fg-3); }
.ts-scorebar-score .flash { color: var(--roar-500); animation: score-flash 600ms var(--ease-out); }
@keyframes score-flash {
  0%   { transform: translateY(-4px); color: var(--roar-500); }
  100% { transform: translateY(0);    color: var(--fg-1); }
}
.ts-scorebar-clock {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 8px;
  background: rgba(255,210,63,0.08);
  border: 1px solid rgba(255,210,63,0.2);
  border-radius: 999px;
}
.ts-scorebar-time {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  color: var(--roar-500);
}

/* Meta row under scorebar */
.ts-stadium-meta {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px 4px;
}
.ts-stadium-meta-crowd {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.ts-stadium-meta-crowd svg { width: 13px; height: 13px; }

/* ===========================================================
   CHAT
   =========================================================== */
.ts-chat-feed {
  position: relative; z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 16px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: none;
}
.ts-chat-feed::-webkit-scrollbar { display: none; }

.ts-chat-row {
  display: flex; gap: 10px; align-items: flex-start;
  animation: chat-in 200ms var(--ease-out);
}
@keyframes chat-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ts-chat-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ts-chat-meta { display: flex; gap: 6px; align-items: baseline; }
.ts-chat-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-1);
}
.ts-chat-tag {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
}
.ts-chat-ts {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
}
.ts-chat-msg {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.35;
  word-wrap: break-word;
}

.ts-chat-system {
  align-self: stretch;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
}
.ts-chat-system-goal {
  color: var(--roar-500);
  background: rgba(255,210,63,0.08);
  border: 1px solid rgba(255,210,63,0.2);
}

/* Composer */
.ts-composer {
  display: flex; gap: 8px; align-items: center;
  padding: 8px;
  background: var(--ink-800);
  border-radius: 999px;
  border: 1px solid var(--border-hair-dark);
  box-shadow: var(--inset-hi);
}
.ts-composer-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--fg-1);
}
.ts-composer-input::placeholder { color: var(--fg-3); }
.ts-composer-send {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--pitch-600);
  color: #fff;
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--glow-pitch);
}

/* ===========================================================
   REACTIONS
   =========================================================== */
.ts-stadium-bottom {
  position: relative; z-index: 5;
  padding: 8px 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 60%, rgba(10,14,26,0));
}
.ts-reaction-tray {
  display: flex; gap: 6px;
  padding: 8px;
  background: rgba(15,20,36,0.85);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  border: 1px solid var(--border-hair-dark);
  box-shadow: var(--inset-hi);
  justify-content: space-between;
}
.ts-reaction {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 160ms var(--ease-spring), background 160ms var(--ease-out);
}
.ts-reaction:hover { background: var(--ink-700); }
.ts-reaction.active {
  background: var(--pitch-600);
  box-shadow: var(--glow-pitch);
  transform: scale(1.1);
}

/* Floating reactions stream */
.ts-reaction-stream {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}
.ts-reaction-float {
  position: absolute;
  bottom: 100px;
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(27,61,245,0.5));
  animation: reaction-rise linear forwards;
  will-change: transform, opacity;
}
@keyframes reaction-rise {
  0%   { transform: translateY(0)    scale(0.8) rotate(-6deg); opacity: 0; }
  10%  { transform: translateY(-20px) scale(1.1) rotate(0deg); opacity: 1; }
  80%  { transform: translateY(-360px) scale(1)  rotate(8deg); opacity: 1; }
  100% { transform: translateY(-440px) scale(0.9) rotate(12deg); opacity: 0; }
}

/* ===========================================================
   BROWSE SCREEN — replaces Home
   =========================================================== */
.ts-browse {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink-900);
}

/* Header */
.ts-browse-header {
  padding: 18px 16px 16px;
  text-align: center;
}
.ts-browse-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--fg-1);
  margin: 0;
  text-transform: uppercase;
}

/* Filter controls */
.ts-browse-controls {
  padding: 0 16px 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--ink-900);
  position: sticky; top: 0; z-index: 5;
}
.ts-chips {
  display: flex; gap: 6px; overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.ts-chips::-webkit-scrollbar { display: none; }
.ts-chip {
  flex-shrink: 0;
  background: var(--ink-700);
  border: 0;
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  cursor: pointer;
  text-transform: uppercase;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out);
}
.ts-chip:hover { background: var(--ink-600); color: var(--fg-1); }
.ts-chip.is-active {
  background: var(--pitch-500);
  color: #fff;
}

.ts-browse-row {
  display: flex; gap: 8px; align-items: stretch;
}
.ts-browse-row .ts-search { flex: 1; }
.ts-search-input {
  width: 100%; box-sizing: border-box;
  background: var(--ink-700);
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--fg-1);
  outline: none;
}
.ts-search-input::placeholder { color: var(--fg-3); }
.ts-search-input:focus { box-shadow: inset 0 0 0 1.5px var(--pitch-500); }

.ts-followed {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink-700);
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  color: var(--fg-2);
  cursor: pointer;
  white-space: nowrap;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out);
}
.ts-followed:hover { background: var(--ink-600); color: var(--fg-1); }
.ts-followed-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ink-400);
  transition: background 140ms var(--ease-out);
}
.ts-followed.is-on { background: var(--pitch-500); color: #fff; }
.ts-followed.is-on .ts-followed-dot { background: var(--roar-500); box-shadow: var(--glow-roar); }

/* Body — scroll region */
.ts-browse-body {
  flex: 1;
  overflow-y: auto;
  padding: 4px 16px 32px;
  scrollbar-width: none;
}
.ts-browse-body::-webkit-scrollbar { display: none; }

/* Section header */
.ts-section { margin-top: 18px; }
.ts-section:first-child { margin-top: 6px; }
.ts-section-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.ts-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--fg-1);
  margin: 0;
  text-transform: uppercase;
}
.ts-section-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.ts-section-bullet {
  width: 8px; height: 8px; border-radius: 999px;
}
.ts-section-bullet--soon { background: var(--pitch-400); }
.ts-section-bullet--up   { background: var(--ink-400); }

/* Shared livedot used across sections + cards */
.ts-livedot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--roar-500);
  box-shadow: var(--glow-roar);
  animation: live-pulse 1.6s var(--ease-out) infinite;
  flex-shrink: 0;
}

/* ---------- V1 tile cards ---------- */
.ts-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ts-tile {
  position: relative;
  text-align: left;
  background: var(--ink-700);
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: var(--fg-1);
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  display: flex;
  transition: background 140ms var(--ease-out), transform 80ms var(--ease-out);
}
.ts-tile:hover { background: var(--ink-600); }
.ts-tile:active { transform: scale(0.98); }
.ts-tile-rail, .ts-tile-rail2 {
  width: 3px;
  flex-shrink: 0;
}
.ts-tile-rail2 { width: 3px; opacity: 0.85; }
.ts-tile-body {
  flex: 1;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.ts-tile-teams {
  display: flex; align-items: baseline; gap: 5px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ts-tile-vs { color: var(--fg-3); font-weight: 500; font-size: 11px; }
.ts-tile-star { margin-left: auto; color: var(--roar-500); font-size: 12px; }
.ts-tile-meta {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
}
.ts-tile-score { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--fg-1); letter-spacing: -0.01em; }
.ts-tile-score .dash { color: var(--fg-3); margin: 0 3px; font-weight: 500; }
.ts-tile-clock { color: var(--fg-3); font-size: 11px; }
.ts-tile-fans {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display);
}
.ts-tile-fans .ts-fans-num {
  font-weight: 800;
  font-size: 14px;
  color: var(--roar-500);
  letter-spacing: -0.01em;
}
.ts-tile-fans .ts-fans-lbl {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  color: var(--fg-3);
}

/* ---------- V2 scoreboard rows ---------- */
.ts-hero {
  display: block; width: 100%; text-align: left;
  background: linear-gradient(180deg, rgba(42,92,255,0.18) 0%, rgba(42,92,255,0.04) 100%), var(--ink-700);
  border: 1.5px solid var(--pitch-500);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--fg-1);
  cursor: pointer;
  font-family: inherit;
  transition: background 140ms var(--ease-out), transform 80ms var(--ease-out);
}
.ts-hero:hover { background: linear-gradient(180deg, rgba(42,92,255,0.26) 0%, rgba(42,92,255,0.08) 100%), var(--ink-700); }
.ts-hero:active { transform: scale(0.99); }
.ts-hero-status {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--roar-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ts-hero-row {
  display: flex; align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ts-hero-row:first-of-type { border-top: 0; }
.ts-hero-team { display: flex; align-items: center; gap: 10px; flex: 1; }
.ts-hero-color { width: 4px; height: 22px; border-radius: 2px; }
.ts-hero-short {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--fg-1);
}
.ts-hero-name {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--fg-3);
}
.ts-hero-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.ts-hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ts-hero-foot .ts-fans-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--roar-500);
  font-size: 14px;
}
.ts-hero-cta {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  color: var(--pitch-300);
  letter-spacing: 0.02em;
}

.ts-row-list { display: flex; flex-direction: column; gap: 4px; }
.ts-row {
  display: grid;
  grid-template-columns: 8px 1fr auto auto;
  gap: 10px;
  align-items: center;
  background: var(--ink-700);
  border: 0;
  border-radius: 8px;
  padding: 10px 12px 10px 8px;
  color: var(--fg-1);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 140ms var(--ease-out), transform 80ms var(--ease-out);
}
.ts-row:hover { background: var(--ink-600); }
.ts-row:active { transform: scale(0.99); }
.ts-row-rails {
  display: flex; flex-direction: column; gap: 2px;
  width: 3px; height: 36px;
}
.ts-row-rails > span {
  flex: 1; border-radius: 2px;
}
.ts-row-teams { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ts-row-team { display: flex; align-items: baseline; gap: 6px; min-width: 0; }
.ts-row-short {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-1);
  width: 36px;
  flex-shrink: 0;
}
.ts-row-name {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--fg-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ts-row-score {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ts-row-time {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ts-row-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  white-space: nowrap;
}
.ts-row-clock { color: var(--fg-2); }
.ts-row-fans {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--roar-500);
  font-weight: 700;
}
.ts-row-fans .ts-livedot { width: 6px; height: 6px; }

/* Empty state */
.ts-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--fg-3);
}
.ts-empty-glyph {
  font-size: 36px;
  color: var(--ink-300);
  margin-bottom: 12px;
}
.ts-empty-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 4px;
}
.ts-empty-sub {
  font-family: var(--font-ui);
  font-size: 13px;
}
