/* RUSH frontend timeline / game info patch v86 */
.match-card.has-game-info,
.schedule-card.has-game-info {
  position: relative;
  overflow: hidden;
}

.game-info-overlay {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  pointer-events: auto;
  background: rgba(8, 10, 12, .48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity .22s ease;
}

.game-info-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.match-card.has-game-info:hover .game-info-overlay,
.schedule-card.has-game-info:hover .game-info-overlay,
.match-card.has-game-info:focus-within .game-info-overlay,
.schedule-card.has-game-info:focus-within .game-info-overlay {
  opacity: 1;
}

.timeline-section {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 78px;
}

.timeline-scorecard,
.timeline-card,
.timeline-empty {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.timeline-empty {
  padding: 28px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.timeline-scorecard {
  padding: 22px;
  margin-bottom: 22px;
}

.timeline-meta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.timeline-meta-row span {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  padding: 8px 12px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.timeline-team {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.timeline-team-left { justify-content: flex-end; text-align: right; }
.timeline-team-right { justify-content: flex-start; text-align: left; }

.timeline-team img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.timeline-team strong {
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}

.timeline-score {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.timeline-score span {
  min-width: 48px;
  text-align: center;
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .9;
}

.timeline-score em {
  align-self: center;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .12em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.timeline-card { overflow: hidden; }

.timeline-card-head {
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.timeline-card-head span {
  color: #CDFF21;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.timeline-card-head h2 {
  margin: 5px 0 0;
  color: #fff;
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
}

.timeline-events {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.timeline-event {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #fff;
}

.timeline-event:last-child { border-bottom: 0; }

.timeline-event.kickoff-event,
.timeline-event.is-muted {
  grid-template-columns: 1fr;
}

.event-team-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.event-main strong {
  display: block;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.event-main small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-weight: 750;
}

.event-score {
  border-radius: 999px;
  background: rgba(205,255,33,.12);
  border: 1px solid rgba(205,255,33,.22);
  color: #CDFF21;
  font-weight: 950;
  padding: 8px 12px;
}

@media (max-width: 760px) {
  .timeline-section { margin-top: 22px; }
  .timeline-scorecard { padding: 16px; border-radius: 22px; }
  .timeline-matchup { grid-template-columns: 1fr; gap: 14px; }
  .timeline-team-left,
  .timeline-team-right { justify-content: center; text-align: center; }
  .timeline-team { flex-direction: column; gap: 8px; }
  .timeline-team-right img { order: 0; }
  .timeline-score { justify-content: center; order: -1; }
  .timeline-score span { font-size: 54px; min-width: 42px; }
  .timeline-event { grid-template-columns: 36px 1fr auto; gap: 10px; padding: 13px 8px; }
  .event-team-logo { width: 32px; height: 32px; }
  .event-score { padding: 7px 9px; font-size: 12px; }
  .game-info-overlay span { min-width: 104px; min-height: 34px; font-size: 11px; }
}
