.match_section_title h3 {
  font-size: 24px !important; /* 稍微调大一点点 */
  font-weight: 700 !important;
  position: relative;
  padding-left: 18px;
  color: transparent; /* 为了显示渐变色 */
  background: linear-gradient(90deg, #ff3a3a, #ff8e3c, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15), 
               0 0 8px rgba(255, 100, 100, 0.3);
}
/* ================= 热门联赛列表优化 ================= */
.hot-event .match-item {
  padding: 10px 14px;
  border-left: 4px solid #ff3a3a;
  background: linear-gradient(to right, #fff5f5, #fff);
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(255, 58, 58, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hot-event .match-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(255, 58, 58, 0.15);
}

.hot-event .category span,
.hot-event .team span,
.hot-event .vs span,
.hot-event .status a,
.hot-event time {
  font-size: 14px !important; /* 直播列表字体带大小 */
  font-weight: 500 !important;
  color: #d62828 !important; /* 保留特别颜色 */
  letter-spacing: 0.3px;
  font-family: 'PingFang SC', 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

.hot-event .vs span {
  font-weight: 600 !important;
  color: #ff3a3a !important;
}