       /* Hero Section Joueurs */
        .players-hero {
            height: 50vh;
            background: linear-gradient(135deg, rgba(44, 162, 70, 0.9) 0%, rgba(53, 69, 62, 0.9) 100%), 
                        url('../images/joueursWallpaper.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        .no-coach{
          display: flex;
           flex-direction:column; 
           align-items: center; 
           justify-content: center; 
           min-height: 200px; 
           color: #555;
        }
        .players-hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .players-hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
        }

        .category-badge {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .players-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Section Équipe Technique */
        .coach-section {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Carte Coach - Design Spécial */
        .coach-card {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid var(--secondary);
        }

        .coach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .coach-header {
            background: linear-gradient(135deg, var(--primary) 0%, #2a8a3d 100%);
            padding: 30px;
            text-align: center;
            color: white;
            position: relative;
        }

        .coach-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }

        .coach-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 4px solid var(--secondary);
            margin: 0 auto 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .coach-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .coach-name {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .coach-role {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .coach-content {
            padding: 30px;
            text-align: center;
        }

        .coach-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        .coach-quote {
            font-style: italic;
            color: #555;
            line-height: 1.6;
            border-left: 3px solid var(--secondary);
            padding-left: 15px;
            margin: 20px 0;
        }

        /* Section Joueurs */
        .players-section {
            padding: 80px 0;
            background: white;
        }

        .players-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .position-filter {
            padding: 10px 20px;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .position-filter:hover, .position-filter.active {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 162, 70, 0.3);
        }

        /* Grille Joueurs */
        .players-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        /* Carte Joueur */
        .player-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(44, 162, 70, 0.1);
        }

        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .player-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(44, 162, 70, 0.3);
        }

        .player-image-container {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .player-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .player-card:hover .player-image {
            transform: scale(1.1);
        }

        .player-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(44, 162, 70, 0.2) 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

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

        .player-content {
            padding: 25px;
            text-align: center;
        }

        .player-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .player-position {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .player-stats {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .player-stat {
            text-align: center;
        }

        .player-stat-value {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .player-stat-label {
            font-size: 0.8rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .btn-details {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(188, 177, 34, 0.3);
        }

        .btn-details:hover {
            background: #a8951e;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(188, 177, 34, 0.4);
        }

        .btn-favorite {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-favorite:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        /* Étoiles de notation */
        .player-rating {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin-bottom: 15px;
        }

        .star {
            color: #ddd;
            font-size: 1rem;
        }

        .star.filled {
            color: var(--secondary);
        }

        /* Animation de chargement */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .player-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .player-card:nth-child(2) { animation-delay: 0.1s; }
        .player-card:nth-child(3) { animation-delay: 0.2s; }
        .player-card:nth-child(4) { animation-delay: 0.3s; }
        .player-card:nth-child(5) { animation-delay: 0.4s; }
        .player-card:nth-child(6) { animation-delay: 0.5s; }

        /* Responsive */
        @media (max-width: 768px) {
            .players-hero h1 {
                font-size: 2.5rem;
            }

            .coach-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

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

            .player-stats {
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .players-hero h1 {
                font-size: 2rem;
            }

            .players-grid {
                grid-template-columns: 1fr;
            }

            .coach-card {
                margin: 0 15px;
            }

            .player-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn-details {
                width: 100%;
                justify-content: center;
            }
        }