/* Team Page Styles */

/* Main Team Page Background */
.team-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

/* Hero Section */
.team-hero {
    padding: 100px 0 50px;
}

.team-hero .container {
    position: relative;
}

/* Floating Circle Animation */
.floating-circle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--team-gradient);
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Team Badge */
.team-badge .badge {
    font-size: 0.9rem;
}

/* Logo Container */
.logo-container-hero {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 80px var(--team-color);
    position: relative;
}

.logo-container-hero::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--team-gradient);
    z-index: -1;
}

.team-logo-main {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Players Section */
.team-players {
    background: rgba(0,0,0,0.2);
}

/* Coming Soon Card */
.coming-soon-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.coming-soon-card i {
    opacity: 0.5;
}

/* Player Cards */
.player-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.player-card h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
}

/* Player Photo Wrapper */
.player-photo-wrapper {
    border-radius: 50%;
    overflow: hidden;
    border-color: var(--team-color);
}

.player-photo-wrapper.featured {
    width: 120px;
    height: 120px;
    border-width: 3px;
    border-style: solid;
}

.player-photo-wrapper.regular {
    width: 100px;
    height: 100px;
    border-width: 2px;
    border-style: solid;
}

.player-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Player Category Badge */
.player-card .badge {
    font-size: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .logo-container-hero {
        width: 180px;
        height: 180px;
        padding: 22px;
    }
    
    .team-hero {
        padding: 90px 0 40px !important;
    }
}

@media (max-width: 575px) {
    .logo-container-hero {
        width: 150px;
        height: 150px;
        padding: 18px;
    }
    
    .player-photo-wrapper.featured,
    .player-photo-wrapper.regular {
        width: 80px !important;
        height: 80px !important;
    }
    
    .player-card h5 {
        font-size: 0.8rem;
    }
    
    .player-card .badge {
        font-size: 0.65rem !important;
    }
}
