<style>
/* ================= 标题优化 ================= */
.match_section_title h3 {
  font-size: 28px !important;  /* 从24px增加到28px */
  font-weight: 700 !important; /* 适当增加字重保持可读性 */
  position: relative;
  padding-left: 18px;
  color: #ff3a3a;
  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); /* 双层阴影增强立体感 */
}

/* 其他赛程标题 */
.other_section_title h3 {  /* 新增选择器 */
  font-size: 26px !important;  /* 设置合适大小 */
  font-weight: 700 !important;
  position: relative;
  padding-left: 18px;
  color: #ff6b3a; /* 橙色系区分 */
  margin-bottom: 20px;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1), 
               0 0 6px rgba(255, 150, 50, 0.25);
}

.match_section_title h3::before {
  --grad-start: #ff3a3a;
  --grad-end: #ff8e3c;
}

.other_section_title h3::before {
  --grad-start: #ff6b3a;
  --grad-end: #ffaa5c;
}

/* ================= 以下保持原有样式不变 ================= */
.star-rating {
  display: inline-block;
  color: #ffcc00;
  margin-left: 8px;
  font-size: 16px;
  letter-spacing: 1px;
  animation: twinkle 1.5s infinite;
}
@keyframes twinkle {
  0% { opacity: 0.8; text-shadow: 0 0 5px rgba(255, 204, 0, 0.5); }
  50% { opacity: 1; text-shadow: 0 0 15px rgba(255, 204, 0, 1); }
  100% { opacity: 0.8; text-shadow: 0 0 5px rgba(255, 204, 0, 0.5); }
}

.hot-event .category span {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #ff3a3a !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hot-event time {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #4a4a4a !important;
}

.hot-event .team span {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
}

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

.hot-event .backwards span {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
}

.hot-event .status a {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ff3a3a !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.random-stars {
  display: inline-block;
  color: #c0c0c0;
  margin-left: 5px;
  font-size: 14px;
}

#matchListContainer .category span {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #333 !important;
}

#matchListContainer .team span {
  font-size: 14px !important;
  font-weight: 500 !important;
}

#matchListContainer .vs span {
  font-size: 15px !important;
  font-weight: 500 !important;
}

#matchListContainer .status a {
  font-weight: 500 !important;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.3), transparent);
  margin: 25px 0;
}
</style>