 #pantalla-deportes-app {
                        --bg-deportes: #121212;
                        --panel-deportes: #1c1c1e;
                        --acento-vivo: #ef4444;
                        --texto-mute: #8e8e93;
                        --borde-sutil: #2c2c2e;
                    }

                    .pill-deportes {
                        padding: 4px 10px;
                        border-radius: 6px;
                        font-size: 10px;
                        font-weight: 800;
                        letter-spacing: 0.5px;
                        text-transform: uppercase;
                        display: inline-flex;
                        align-items: center;
                        gap: 4px;
                    }

                    .pill-vivo {
                        background: rgba(239, 68, 68, 0.1);
                        color: var(--acento-vivo);
                        border: 1px solid rgba(239, 68, 68, 0.3);
                    }

                    .pill-vivo::before {
                        content: '';
                        width: 6px;
                        height: 6px;
                        background: var(--acento-vivo);
                        border-radius: 50%;
                        box-shadow: 0 0 6px var(--acento-vivo);
                        animation: latidoNexo 2s infinite;
                    }

                    .pill-fin {
                        background: rgba(142, 142, 147, 0.1);
                        color: var(--texto-mute);
                        border: 1px solid rgba(142, 142, 147, 0.2);
                    }

                    .btn-basket {
                        background: #2c2c2e;
                        border: 1px solid #3a3a3c;
                        color: white;
                        font-size: 22px;
                        font-weight: 900;
                        border-radius: 12px;
                        transition: 0.1s;
                        cursor: pointer;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        padding: 15px 0;
                    }

                    .btn-basket:active {
                        transform: scale(0.95);
                        background: #3a3a3c;
                    }

                    /* 🔥 Pestañas Sub-menú */
                    .deporte-subtab {
                        padding: 8px 16px;
                        border-radius: 20px;
                        font-size: 12px;
                        font-weight: 700;
                        color: var(--texto-mute);
                        background: transparent;
                        border: 1px solid var(--borde-sutil);
                        cursor: pointer;
                        transition: 0.2s;
                        white-space: nowrap;
                        display: flex;
                        align-items: center;
                        gap: 6px;
                    }

                    .deporte-subtab.active {
                        background: #ffffff;
                        color: #000000;
                        border-color: #ffffff;
                    }

                    /* Pestañas Principales Navegación Superior */
                    .tribuna-nav-tab {
                        padding: 10px 15px;
                        font-size: 13px;
                        font-weight: 800;
                        color: var(--texto-mute);
                        background: transparent;
                        border: none;
                        border-bottom: 2px solid transparent;
                        cursor: pointer;
                        transition: 0.2s;
                        display: flex;
                        align-items: center;
                        gap: 6px;
                        flex: 1;
                        justify-content: center;
                    }

                    .tribuna-nav-tab.active {
                        color: white;
                        border-bottom: 2px solid white;
                    }

                    .scroll-horizontal-invisible::-webkit-scrollbar {
                        display: none;
                    }

                    .scroll-horizontal-invisible {
                        -ms-overflow-style: none;
                        scrollbar-width: none;
                    }