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

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    color: #E9D5FF;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    background: linear-gradient(45deg, #E9D5FF, #A855F7, #E9D5FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

.page-subtitle {
    color: #9F7AEA;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.team-category {
    margin-bottom: 50px;
}

.category-title {
    color: #A855F7;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 2px;
}

.category-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.team-member {
    background: rgba(26, 16, 51, 0.7);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.team-member:hover {
    transform: translateY(-3px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.1);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.team-member:hover img {
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.team-member h3 {
    color: #E9D5FF;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member .role {
    color: #A855F7;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .bio {
    color: #E9D5FF;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #9F7AEA;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #E9D5FF;
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    transform: none;
    box-shadow: 0 3px 8px rgba(168, 85, 247, 0.15);
}

/* Platform-specific hover colors */
.social-links a[href*="instagram"]:hover {
    background: rgba(228, 64, 95, 0.3);
    border-color: #E4405F;
}

.social-links a[href*="twitter"]:hover {
    background: rgba(29, 161, 242, 0.3);
    border-color: #1DA1F2;
}

.social-links a[href*="discord"]:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865F2;
}

.social-links a[href*="youtube"]:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
}

.social-links a[href*="twitch"]:hover {
    background: rgba(145, 70, 255, 0.3);
    border-color: #9146FF;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-container {
        padding: 20px 10px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .category-members {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 20px 15px;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    .team-member h3 {
        font-size: 1.1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading Animation - Removed for professional appearance */
.team-member {
    animation: none;
}
