/* Player List Styles - Soccer Master Theme */

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.players-hero {
    background:
                url('../../../assets/soccer-master/images/bg_2.jpg') center/cover;
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.players-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.players-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.players-count {
    background: rgba(238, 30, 70, 0.9);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(238, 30, 70, 0.3);
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ee1e46, #c41e3a);
    margin: 20px auto 0;
    border-radius: 2px;
}

.player-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(238, 30, 70, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 30, 70, 0.05), rgba(196, 30, 58, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: #ee1e46;
    box-shadow: 0 20px 40px rgba(238, 30, 70, 0.2);
}

.player-card:hover::before {
    opacity: 1;
}

.player-card > * {
    position: relative;
    z-index: 2;
}

.player-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.player-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(238, 30, 70, 0.5);
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.player-avatar-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ee1e46, #c41e3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(238, 30, 70, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.player-card:hover .player-avatar,
.player-card:hover .player-avatar-initials {
    border-color: #ee1e46;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(238, 30, 70, 0.4);
}

.player-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.player-sport {
    background: rgba(238, 30, 70, 0.8);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(238, 30, 70, 0.3);
}

.player-info {
    margin-bottom: 20px;
}

.player-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.player-info-icon {
    color: #ee1e46;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.player-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.player-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-player {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid;
}

.btn-player-primary {
    background: linear-gradient(135deg, #ee1e46, #c41e3a);
    border-color: #ee1e46;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(238, 30, 70, 0.3);
}

.btn-player-primary:hover {
    background: transparent;
    color: #ee1e46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 30, 70, 0.4);
}

.btn-player-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.btn-player-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state-icon {
    font-size: 5rem;
    color: rgba(238, 30, 70, 0.3);
    margin-bottom: 30px;
}

.empty-state-title {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.empty-state-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .player-card {
        padding: 20px;
    }
    
    .player-avatar,
    .player-avatar-initials {
        width: 100px;
        height: 100px;
    }
    
    .player-avatar-initials {
        font-size: 2rem;
    }
    
    .player-actions {
        flex-direction: column;
    }
}
