        /* Jugador card visual styles (professional look) */
        .jugador-item {
            background:
            repeating-linear-gradient(50deg,
                rgba(155,255,255,0.04) 0 2px,
                rgba(0, 119, 255, 1) 9px 10px
            ),
            linear-gradient(180deg, rgba(0, 41, 80, 0.69) 0%, rgba(6, 24, 46, 1) 100%);
            background-blend-mode: overlay;
            border: 2px solid rgba(255, 255, 255, 1);
            border-radius: 12px;
            padding: 16px;
            width: auto;
            min-width: 300px;
            max-width: 500px;
            display: block;
            box-shadow: 0 6px 9px rgba(0, 195, 255, 1);
            transition: transform 0.18s ease, box-shadow 0.18s ease;
            cursor: pointer;
        }

        .jugador-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(2,12,34,0.55);
        }

        /* Badge verificado: positioned toward the outer corner so it doesn't overlap team logo */
        .badge-verificado {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #28a745;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: 0 0 6px rgba(0,0,0,0.4);
            z-index: 10;
            border: 2px solid rgba(255,255,255,0.06);
        }

        @media (max-width: 600px) {
            .badge-verificado { width:24px; height:24px; top: -6px; right: -6px; font-size:0.9em; }
            /* Make jugador cards consistent width on small screens */
            .jugador-item {
                flex: 0 0 calc(100% - 32px) !important;
                max-width: calc(100% - 32px) !important;
                min-width: 0 !important;
            }
        }

        #paginacionJugadores {
            flex-wrap: wrap;
            gap: 0.5rem;
            max-width: 100vw;
            overflow-x: auto;
        }
        #paginacionJugadores button {
            min-width: 40px;
            min-height: 40px;
            font-size: 1.1em;
            border-radius: 8px;
            margin-bottom: 6px;
            color: white !important;
        }
        /* Selected page: stronger blue fill; Unselected: strong blue border */
        #paginacionJugadores button.btn-primary {
            background: #000744ff !important;
            border-color: #000744ff  !important;
            color: #fff;
        }
        #paginacionJugadores button.btn-outline-primary {
            border-color: #000744ff !important;
            color: #fff !important;
        }
        @media (max-width: 600px) {
            #paginacionJugadores button {
                min-width: 48px;
                min-height: 48px;
                font-size: 1.2em;
            }
        }