/* 赛事信息页面样式 */
.events-banner {
  height: 300px;
  background: #2E3192;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.events-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* 赛事倒计时 */
.countdown-section {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  text-align: center;
}

.countdown-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2E3192;
}

.countdown-label {
  color: #666;
}

/* 赛事日历 */
.calendar-section {
  margin-bottom: 3rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav {
  display: flex;
  gap: 1rem;
}

.calendar-nav button {
  background: none;
  border: 1px solid #2E3192;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.calendar-nav button:hover {
  background: #2E3192;
  color: #fff;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.calendar-day:hover {
  background: #f5f5f5;
}

.calendar-day.has-event {
  background: #FFB81C;
  color: #fff;
}

/* 赛事列表 */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.event-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFB81C;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* 赛事筛选 */
.events-filter {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid #2E3192;
  border-radius: 4px;
  background: transparent;
  color: #2E3192;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2E3192;
  color: #fff;
} 