        /* player grid start */
        .main_container {
            width: 100%;
            height: auto;
            padding: 20px 30px;
            background-color: #F9F9F9;
        }
        .main_team_container {
            width: 100%;
            height: 100%;
            background-color: #FFFFFF;
            border-radius: 15px;
            padding: 10px;
        }
        .team_header {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
            margin-bottom: 30px;
        }
        .team_header h2 {
            font-size: 34px;
            font-weight: bold;
        }
        .filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .filter button {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 10px 20px;
            font-size: 14px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .filter button:hover, .filter button.active {
            background-color: #333;
            color: #fff;
        }
        .section_title {
            text-align: center;
            text-transform: uppercase;
            font-size: 24px;
            font-weight: bold;
            margin: 30px 0;
        }
        .player_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
            padding: 10px;
        }
        .player_card {
            height: 300px;
            margin-bottom: 10px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .player_card:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8));
        }
        .player_img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
        }
        .player_info {
            position: absolute;
            bottom: 2%;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            text-align: center;
        }
        .player_info h4 {
            font-size: 18px;
            font-weight: bold;
            margin: 5px 0;
        }
        .hidden {
            display: none !important;
        }

        @media (max-width: 768px) {
            .main_container{
                padding: 10px;
            }

            .team_header {
                flex-direction: column;
                align-items: center;
                height: auto;
            }
            .team_header img {
                margin-bottom: 10px;
            }
            .team_header h2 {
                font-size: 28px;
            }
            .filter {
                flex-wrap: wrap;
                gap: 10px;
            }
            .player_grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            .player_info {
                bottom: 5%;
            }
            .player_info h4 {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {  
            .team_header h2 {
                font-size: 22px;
            }
            .filter button {
                padding: 8px 15px;
                font-size: 12px;
            }
            .section_title {
                font-size: 20px;
            }
            .player_grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            .player_info {
                bottom: 1% !important;
            }
            .player_info h4 {
                font-size: 14px;
            }
        }
        /* player grid end */