/* Team Page Specific Styles */
.team-section {
    margin: 30px 0;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.team-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.executive-board {
    margin-bottom: 50px;
}

.board-title {
    text-align: center;
    margin-bottom: 30px;
}

.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.member-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.member-info {
    padding: 20px;
}

.member-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.team-newmember {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-newmember:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 255, 0.3);
}

.newmember-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--secondary-color);
}

.newmember-info {
    padding: 20px;
}

.newmember-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.newmember-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newmember-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gamers-section {
    margin-top: 50px;
}

.gamers-title {
    text-align: center;
    margin-bottom: 30px;
}

.gamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.gamer-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid var(--secondary-color);
}

.gamer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
}

.gamer-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.gamer-title {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.gamer-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .board-members {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gamers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .member-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .board-members, .gamers-grid {
        grid-template-columns: 1fr;
    }
}