/* 轮滑队样式 */
.team-header {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.team-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.team-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-slogan {
    color: #9b59b6;
    font-weight: 500;
    margin-bottom: 10px;
    font-style: italic;
}

.team-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-actions {
    display: flex;
    gap: 10px;
}

/* 队伍详情页 */
.team-detail-header {
    position: relative;
    margin-bottom: 30px;
}

.team-cover {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-header-info {
    background: rgba(155, 89, 182, 0.9);
    color: #fff;
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.team-header-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.team-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.team-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #9b59b6;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.activity-section,
.venues-section,
.team-description {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.activity-section:last-child,
.venues-section:last-child,
.team-description:last-child {
    border-bottom: none;
}

.activity-section h3,
.venues-section h3,
.team-description h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.activity-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-item h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.venues-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.venue-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.venue-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.venue-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-name {
    color: #9b59b6;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .team-cover {
        height: 250px;
    }
    
    .team-header-info {
        position: static;
        background: #9b59b6;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
}

