/* 赛事直播独立页 */
.live-schedule-section {
  background: #f4f6f9;
  padding: 4rem 0;
}

.live-schedule-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.live-schedule-header h2 {
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}

.live-schedule-header p {
  color: #6c757d;
  margin: 0;
}

.live-match-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.live-match-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.live-match-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.live-match-status--live {
  background: #ffe8e8;
  color: #e53935;
}

.live-match-status--upcoming {
  background: #e8f4fd;
  color: #0091ff;
}

.live-match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.live-match-team {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.live-match-vs {
  flex-shrink: 0;
  color: #adb5bd;
  font-weight: 700;
  font-size: 0.85rem;
}

.live-match-meta {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
}

.live-match-meta i {
  margin-right: 0.25rem;
}
