/* 赛事页面样式 */
.events-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 赛事banner */
.events-banner {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    padding: 40px 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.events-banner h1 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* 赛事筛选 */
.events-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-item {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #6e1620;
    border-radius: 20px;
    transition: all 0.3s;
}

.filter-item:hover,
.filter-item.active {
    background: #6e1620;
    border-color: #6e1620;
}

/* 特色赛事 */
.featured-event {
    margin-bottom: 40px;
}

.event-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.event-overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.event-overlay p {
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 20px;
}

.event-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-date {
    color: #aaa;
}

.event-signup {
    display: inline-block;
    padding: 10px 30px;
    background: #6e1620;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.event-signup:hover {
    background: #8a1c28;
}

/* 赛事日程 */
.section-title {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #6e1620;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.calendar-item {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    transition: transform 0.3s;
}

.calendar-item:hover {
    transform: translateY(-5px);
}

.calendar-item.active {
    border: 1px solid #6e1620;
}

.calendar-date {
    text-align: center;
}

.calendar-date .date {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    display: block;
}

.calendar-date .month {
    color: #aaa;
    font-size: 14px;
}

.calendar-event h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.calendar-event p {
    color: #aaa;
    font-size: 14px;
}

/* 赛事列表 */
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-card {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card-image {
    position: relative;
    width: 100%;
    height: 200px;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    border-radius: 3px;
    font-size: 12px;
}

.event-card-content {
    padding: 20px;
}

.event-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-card-content p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-card-info {
    margin-bottom: 15px;
}

.event-time,
.event-prize {
    margin-bottom: 5px;
    color: #aaa;
}

.label {
    color: #666;
}

.event-details {
    display: inline-block;
    padding: 8px 20px;
    background: #6e1620;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.event-details:hover {
    background: #8a1c28;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-overlay {
        padding: 20px;
    }

    .event-overlay h2 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .event-image {
        height: 300px;
    }

    .events-filter {
        flex-direction: column;
    }

    .filter-item {
        width: 100%;
        text-align: center;
    }
} 