/* Team Page Styles */
.team-page-container {
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.team-header {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.team-photo {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-name {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 10px;
}

.team-category {
    color: var(--gray-600);
    font-size: 18px;
}

/* Players Section */
.players-section {
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
}

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

.player-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.player-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.player-info {
    color: var(--gray-600);
    font-size: 14px;
}

.player-number {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-top: 10px;
}

/* Coaches Section */
.coaches-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.coach-card {
    text-align: center;
}

.coach-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.coach-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.coach-role {
    color: var(--gray-600);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-header {
        padding: 20px;
    }

    .team-name {
        font-size: 24px;
    }

    .players-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .coaches-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}