<style>
/* ================= 精选赛事样式增强 ================= */
/* 标题增强 */
.match_section_title h3 {
  font-size: 24px !important;
  font-weight: 800;
  position: relative;
  padding-left: 15px;
  color: #ff3a3a;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}
.match_section_title h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 80%;
  background: linear-gradient(to bottom, #ff3a3a, #ff8e3c);
  border-radius: 3px;
}


@keyframes fire {
  0% { transform: scale(1); text-shadow: 0 0 5px rgba(255, 100, 0, 0.7); }
  100% { transform: scale(1.3); text-shadow: 0 0 15px rgba(255, 50, 0, 1); }
}

/* 星级推荐样式 */
.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: 18px !important;
  font-weight: 800 !important;
  color: #ff3a3a !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

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

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

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

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

.hot-event .status a {
  font-size: 16px !important;
  font-weight: 800 !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: 16px !important;
  font-weight: 700 !important;
  color: #333 !important;
}

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

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

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

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