.favs-page {
  max-width: 1200px;
  margin: 24px auto 80px;
  padding: 0 16px;
  color: var(--text-0);
}
.favs-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--neon-yellow);
  margin-bottom: 18px;
}
.favs-subtitle {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 28px 0 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.favs-summary {
  background: linear-gradient(180deg, #0a0e2a 0%, #050818 100%);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255,255,255,.05);
}
.favs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.favs-cell {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.favs-cell.ok { border-color: rgba(57, 255, 20, .55); }
.favs-cell.stale { border-color: rgba(255, 60, 60, .65); background: rgba(255,60,60,.08); }
.favs-label {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-1);
}
.favs-value {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 800;
  color: var(--text-0);
}
.favs-cell.ok .favs-value { color: #39ff14; }
.favs-cell.stale .favs-value { color: #ff5566; }
.favs-list {
  margin-top: 24px;
}
.liga-partidos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.liga-partidos li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0a0e2a 0%, #050818 100%);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}
.liga-kickoff {
  font-family: 'Courier New', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-yellow);
}
.liga-partido {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
  color: var(--text-0);
}
.liga-partido .team-fav { color: #39ff14; font-weight: 700; }
.liga-partido .team-fav.is-strong { color: var(--neon-purple); }
.liga-partido .team-rival { color: var(--neon-yellow); font-weight: 700; }
.liga-meta {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-1);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .liga-partidos li {
    grid-template-columns: 56px 1fr;
    grid-template-areas: "kickoff partido" "kickoff meta";
    row-gap: 2px;
  }
  .liga-kickoff { grid-area: kickoff; }
  .liga-partido { grid-area: partido; }
  .liga-meta { grid-area: meta; }
}
