/* _content/AppBasquet.Web.Client.Admin/Components/Admin/DuplicacionModal.razor.rz.scp.css */
/* â”€â”€ DuplicaciÃ³n Modal â”€â”€ */
.dup-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: dup-fade-in-b-43r7zgy913 0.18s ease;
}

@keyframes dup-fade-in-b-43r7zgy913  { from { opacity: 0; } to { opacity: 1; } }
@keyframes dup-slide-up-b-43r7zgy913 { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.dup-modal-panel {
    background: linear-gradient(158deg, #131320 0%, #0b0b14 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    width: 100%;
    max-width: 520px;
    max-height: 90dvh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(130,71,229,0.12);
    animation: dup-slide-up-b-43r7zgy913 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Glimmer top line */
.dup-modal-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130,71,229,0.55), transparent);
}

.dup-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dup-modal-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.dup-modal-title {
    margin: 0 0 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}

.dup-modal-subtitle {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.dup-modal-close {
    margin-left: auto;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #888;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.15s;
}
.dup-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Alert */
.dup-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 24px 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}

.dup-alert--ok  { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.22); color: #86efac; }
.dup-alert--err { background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.22); color: #fca5a5; }

/* Tabs */
.dup-tabs {
    display: flex;
    padding: 14px 24px 0;
    gap: 6px;
}

.dup-tab {
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px 10px 0 0;
    background: transparent;
    color: #555;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
    letter-spacing: 0.3px;
}

.dup-tab:hover { color: #aaa; background: rgba(255,255,255,0.04); }

.dup-tab.active {
    background: rgba(130,71,229,0.12);
    border-color: rgba(130,71,229,0.3);
    border-bottom-color: transparent;
    color: #c4b5fd;
}

/* Section body */
.dup-section {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(130,71,229,0.18);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dup-section-hint {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
}

.dup-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dup-label {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
}

.dup-optional {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: #444;
}

.dup-select, .dup-input {
    background: rgba(8,8,14,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #e0e0e0;
    padding: 10px 13px;
    font-size: 0.88rem;
    font-weight: 600;
    width: 100%;
    transition: border-color 0.2s;
}

.dup-select:focus, .dup-input:focus {
    outline: none;
    border-color: rgba(130,71,229,0.5);
    box-shadow: 0 0 0 3px rgba(130,71,229,0.1);
}

.dup-select:disabled, .dup-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dup-info-box {
    display: flex;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.18);
    font-size: 0.8rem;
    color: #a5b4fc;
    line-height: 1.4;
}

.dup-info-icon { flex-shrink: 0; }

.dup-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border: 1px solid rgba(124,58,237,0.6);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    align-self: flex-start;
    min-width: 200px;
    box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}

.dup-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 6px 20px rgba(124,58,237,0.45);
    transform: translateY(-1px);
}

.dup-btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 560px) {
    .dup-modal-panel { border-radius: 18px; }
    .dup-modal-header { padding: 20px 18px 16px; gap: 10px; }
    .dup-section { padding: 16px 18px 24px; }
    .dup-tabs { padding: 12px 18px 0; }
    .dup-btn-primary { min-width: 100%; }
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/LeagueEnfrentamientosPanel.razor.rz.scp.css */
.enf-wrap {
    margin: 0 0 20px;
    padding: 16px 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(22, 24, 38, 0.98) 0%, rgba(12, 14, 24, 0.99) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.enf-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px 16px;
    margin-bottom: 14px;
}

.enf-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #f8fafc;
}

.enf-sub {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: #94a3b8;
    max-width: 52ch;
    line-height: 1.35;
}

.enf-kpi {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fcd34d;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(252, 211, 77, 0.25);
    background: rgba(252, 211, 77, 0.06);
    white-space: nowrap;
}

.enf-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.enf-scroll::-webkit-scrollbar {
    height: 6px;
}

.enf-scroll::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 4px;
}

.enf-card {
    position: relative;
    flex: 0 0 min(280px, 82vw);
    scroll-snap-align: start;
    border-radius: 14px;
    padding: 34px 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(15, 17, 28, 0.92);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enf-card--fresh {
    border-color: rgba(34, 197, 94, 0.45);
    background: linear-gradient(160deg, rgba(22, 101, 52, 0.18) 0%, rgba(15, 17, 28, 0.95) 55%);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.enf-card--heavy {
    border-color: rgba(248, 113, 113, 0.35);
    background: linear-gradient(160deg, rgba(127, 29, 29, 0.2) 0%, rgba(15, 17, 28, 0.95) 55%);
}

.enf-card--recent {
    border-color: rgba(251, 191, 36, 0.45);
    background: linear-gradient(160deg, rgba(120, 90, 10, 0.28) 0%, rgba(15, 17, 28, 0.95) 55%);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.12);
}

.enf-card--neutral {
    opacity: 0.95;
}

.enf-card-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    min-height: 22px;
    pointer-events: none;
}

.enf-badge {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.enf-badge--new {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.enf-badge--rep {
    color: #fecaca;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.enf-badge--warn {
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.enf-badge--muted {
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.enf-vs-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.enf-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.enf-side--end {
    align-items: flex-end;
    text-align: right;
}

.enf-logo {
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.enf-mono {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enf-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enf-vs {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #64748b;
    padding: 4px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.enf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    margin-top: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.enf-meta-pill {
    font-size: 0.68rem;
    font-weight: 800;
    color: #cbd5e1;
}

.enf-meta-date {
    font-size: 0.66rem;
    color: #94a3b8;
}

.enf-meta-hint {
    font-size: 0.62rem;
    color: #86efac;
    font-weight: 700;
}

.enf-empty {
    text-align: center;
    padding: 22px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(148, 163, 184, 0.25);
    color: #94a3b8;
}

.enf-empty--err {
    border-color: rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

.enf-empty p {
    margin: 0.25rem 0;
}

.enf-empty-hint {
    font-size: 0.78rem;
    opacity: 0.9;
}

.enf-empty-ico {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.enf-card--skeleton {
    min-height: 118px;
    background: rgba(255, 255, 255, 0.03);
    border-style: dashed;
}

.enf-skel-line {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    background-size: 200% 100%;
    animation: enf-shimmer-b-6ecbt2tovp 1.2s ease-in-out infinite;
}

.enf-skel-line--lg {
    width: 70%;
    height: 12px;
}

.enf-skel-line--sm {
    width: 45%;
}

@keyframes enf-shimmer-b-6ecbt2tovp {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.enf-scroll--mt {
    margin-top: 14px;
}

.enf-empty--mt {
    margin-top: 14px;
}

.enf-picker-skel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enf-picker {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enf-picker-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.enf-picker-search {
    width: 100%;
    max-width: 420px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 6, 12, 0.85);
    color: #f8fafc;
    font-size: 0.88rem;
    outline: none;
}

.enf-picker-search:focus {
    border-color: rgba(252, 211, 77, 0.45);
    box-shadow: 0 0 0 2px rgba(252, 211, 77, 0.12);
}

.enf-chip-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.enf-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .12s;
}

.enf-chip:hover {
    border-color: rgba(252, 211, 77, 0.35);
    transform: translateY(-1px);
}

.enf-chip--selected {
    border-color: rgba(34, 197, 94, 0.55);
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.35), rgba(15, 17, 28, 0.95));
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.enf-chip-logo {
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.enf-chip-mono {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enf-chip-name {
    max-width: 28vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enf-chip--skeleton {
    width: 120px;
    height: 40px;
    border-radius: 999px;
    animation: enf-shimmer-b-6ecbt2tovp 1.2s ease-in-out infinite;
}

.enf-chip--skeleton .enf-chip-logo,
.enf-chip--skeleton .enf-chip-name {
    display: none;
}

.enf-hint-select {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #cbd5e1;
    font-size: 0.82rem;
    line-height: 1.4;
}

.enf-hint-select p {
    margin: 0;
}

.enf-hint-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/MatchStatCaptureDrawer.razor.rz.scp.css */
.msc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 12000;
}

.msc-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(980px, 100vw);
    z-index: 12001;
    background: linear-gradient(165deg, #0f172a 0%, #020617 100%);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
    border-left: 1px solid rgba(99, 102, 241, 0.25);
    font-family: 'Inter', system-ui, sans-serif;
}

.msc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    gap: 10px;
}

.msc-title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    min-width: 0;
}

.msc-close {
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

.msc-close:hover {
    background: rgba(248, 113, 113, 0.2);
    color: #fecaca;
}

.msc-banner {
    padding: 10px 16px;
    font-size: 0.82rem;
    background: rgba(251, 191, 36, 0.12);
    color: #fde68a;
    border-bottom: 1px solid rgba(251, 191, 36, 0.25);
    white-space: pre-wrap;
}

.msc-valid {
    padding: 8px 16px;
    font-size: 0.76rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.msc-valid--ok { background: rgba(16, 185, 129, 0.1); color: #a7f3d0; }
.msc-valid--warn { background: rgba(251, 191, 36, 0.08); color: #fde68a; }
.msc-valid-title { font-weight: 700; margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.68rem; }
.msc-valid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; }
.msc-valid-item { font-size: 0.74rem; display: flex; align-items: center; gap: 6px; line-height: 1.2; }
.msc-valid-item .dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; opacity: 0.9; }
.msc-valid-item.ok { color: #6ee7b7; }
.msc-valid-item.bad { color: #fca5a5; }
.msc-valid-item.dim { color: #94a3b8; }

.msc-tabs {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.msc-tab-bar {
    display: flex;
    gap: 0;
    padding: 0 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(15, 23, 42, 0.65);
    flex-shrink: 0;
}

.msc-tab {
    flex: 1;
    border: none;
    background: transparent;
    color: #94a3b8;
    padding: 11px 14px;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, background 0.15s;
}

.msc-tab:hover {
    color: #e2e8f0;
    background: rgba(99, 102, 241, 0.08);
}

.msc-tab.active {
    color: #f8fafc;
    border-bottom-color: #818cf8;
    background: rgba(99, 102, 241, 0.14);
}

.msc-tab--ghost {
    flex: 0 0 auto;
    border: 1px solid rgba(129, 140, 248, 0.45);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 0.72rem;
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.12);
}

.msc-tab--ghost:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.msc-queue--global {
    flex-shrink: 0;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.75);
}

.msc-tab-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.msc-manual-panel {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.msc-manual-panel > .msc-grid {
    flex: 1;
    min-height: 0;
}

.msc-json-tab-panel {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.msc-json-import {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(30, 27, 75, 0.25);
}

.msc-json-tab-panel .msc-json-import {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-bottom: none;
    background: rgba(15, 23, 42, 0.4);
}

.msc-json-ta {
    width: 100%;
    box-sizing: border-box;
    margin: 8px 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(2, 6, 23, 0.85);
    color: #e2e8f0;
    font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
    font-size: 0.72rem;
    line-height: 1.45;
    resize: vertical;
    min-height: 88px;
}

.msc-json-tab-panel .msc-json-ta {
    flex: 1;
    min-height: 220px;
    margin-top: 6px;
}

.msc-json-opt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.72rem;
    color: #cbd5e1;
    margin: 0 0 8px;
    line-height: 1.35;
    cursor: pointer;
}

.msc-json-opt input {
    margin-top: 2px;
    flex-shrink: 0;
}

.msc-json-preview {
    margin: 10px 0 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.75);
    flex-shrink: 0;
}

.msc-json-preview-title {
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a5b4fc;
    margin-bottom: 10px;
}

.msc-json-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 640px) {
    .msc-json-preview-grid { grid-template-columns: 1fr; }
}

.msc-json-preview-team {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.msc-json-preview-list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.74rem;
    color: #cbd5e1;
    line-height: 1.45;
}

.msc-json-preview-list li.ok { color: #6ee7b7; }
.msc-json-preview-list li.warn { color: #fca5a5; }
.msc-json-preview-list li.dim { color: #64748b; list-style: disc; }

.msc-json-preview-warn {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(248, 113, 113, 0.25);
    font-size: 0.7rem;
    color: #fecaca;
    line-height: 1.4;
}

.msc-json-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.msc-acta-quarters {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(15, 23, 42, 0.35);
}
.msc-acta-h { font-weight: 700; font-size: 0.8rem; margin-bottom: 4px; }
.msc-acta-hint { margin: 0 0 10px; font-size: 0.72rem; color: #94a3b8; line-height: 1.4; }
.msc-acta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
@media (max-width: 720px) { .msc-acta-grid { grid-template-columns: 1fr; } }
.msc-acta-lbl { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: #a5b4fc; margin-bottom: 6px; }
.msc-acta-inputs { display: grid; grid-template-columns: repeat(5, minmax(52px, 1fr)); gap: 8px; align-items: end; }
.msc-acta-inputs label { display: flex; flex-direction: column; gap: 2px; font-size: 0.68rem; color: #94a3b8; }
.msc-inp {
    width: 3.2rem;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(2, 6, 23, 0.8);
    color: #e2e8f0;
    font-weight: 600;
}
.msc-inp--sm { width: 3.6rem; }
.msc-btn--sec {
    border-color: rgba(129, 140, 248, 0.45) !important;
    background: rgba(99, 102, 241, 0.15) !important;
    color: #c7d2fe !important;
    margin-top: 4px;
}

.msc-quarter {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    flex-wrap: wrap;
}

.msc-q {
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: #c7d2fe;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.78rem;
}

.msc-q.active {
    background: rgba(99, 102, 241, 0.35);
    color: #fff;
    border-color: rgba(129, 140, 248, 0.8);
}

.msc-loading {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.msc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 16px;
    flex: 1;
    min-height: 0;
}

@media (max-width: 720px) {
    .msc-grid {
        grid-template-columns: 1fr;
    }
}

.msc-side h3 {
    margin: 0 0 8px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5b4fc;
}

.msc-rows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: min(36vh, 340px);
    overflow-y: auto;
    padding-right: 4px;
}

.msc-row {
    display: grid;
    grid-template-columns: 2.2rem 1fr minmax(2.8rem, auto) minmax(2.8rem, auto);
    align-items: center;
    gap: 6px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 23, 42, 0.55);
    color: inherit;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 0.82rem;
}

.msc-row:hover {
    border-color: rgba(129, 140, 248, 0.35);
}

.msc-row.sel {
    border-color: rgba(129, 140, 248, 0.85);
    background: rgba(99, 102, 241, 0.18);
}

.msc-num {
    font-weight: 800;
    color: #94a3b8;
    text-align: center;
}

.msc-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.msc-stat {
    font-weight: 800;
    color: #fcd34d;
    text-align: center;
    font-size: 0.76rem;
    line-height: 1.15;
}
.msc-stat-lbl { display: block; font-size: 0.58rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; }
.msc-manual { margin-bottom: 12px; padding: 10px; border-radius: 8px; background: rgba(99, 102, 241, 0.08); border: 1px solid rgba(99, 102, 241, 0.2); }
.msc-manual-lbl { display: block; font-size: 0.72rem; color: #c4b5fd; margin-bottom: 8px; line-height: 1.35; }
.msc-manual-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.msc-manual-row label { display: flex; flex-direction: column; gap: 2px; font-size: 0.68rem; color: #94a3b8; }
.msc-implied { font-size: 0.78rem; color: #a5b4fc; }
.msc-implied--bad { color: #fca5a5; }
.msc-queue { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.76rem; color: #93c5fd; }

.msc-actions {
    padding: 10px 16px 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(6px);
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.msc-sel-hint {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.msc-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.msc-btns--minus {
    margin-top: 8px;
}

.msc-btn {
    border: 1px solid rgba(52, 211, 153, 0.35);
    background: rgba(16, 185, 129, 0.12);
    color: #a7f3d0;
    padding: 7px 9px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
}

.msc-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.msc-btn--minus {
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
}

@media (max-width: 860px) {
    .msc-valid-grid { grid-template-columns: 1fr; }
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/OcrNormalizadoRevisionPanel.razor.rz.scp.css */
.ocr-norm-banner {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.ocr-norm-banner--ok {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.45);
}

.ocr-norm-banner--warn {
    background: rgba(241, 196, 15, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.45);
}

.ocr-norm-banner-meta {
    opacity: 0.9;
    font-weight: 400;
}

.ocr-norm-section {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.ocr-norm-h2 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.ocr-norm-h3 {
    font-size: 0.98rem;
    margin: 14px 0 8px;
    color: #374151;
}

.ocr-norm-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.ocr-norm-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ocr-norm-field--grow {
    flex: 1;
    min-width: 0;
}

.ocr-norm-field--lowconf {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px dashed #f59e0b;
    background: rgba(245, 158, 11, 0.06);
}

.ocr-norm-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
}

.ocr-norm-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ocr-norm-input--num {
    max-width: 8rem;
}

.ocr-norm-select {
    max-width: 100%;
}

.ocr-norm-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 0.78rem;
}

.ocr-norm-conf {
    color: #6b7280;
}

.ocr-norm-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ocr-norm-pill--ocr {
    background: #e5e7eb;
    color: #374151;
}

.ocr-norm-pill--edited {
    background: #dbeafe;
    color: #1e40af;
}

.ocr-norm-pill--pick {
    background: #ede9fe;
    color: #5b21b6;
}

.ocr-norm-pill--ok {
    background: #d1fae5;
    color: #065f46;
}

.ocr-norm-headrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.ocr-norm-headrow .ocr-norm-h2 {
    margin: 0;
}

.ocr-norm-btn-sm {
    font-size: 0.8rem;
    padding: 4px 10px;
}

.ocr-norm-official {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}

.ocr-norm-official-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.ocr-norm-remove {
    align-self: flex-end;
}

.ocr-norm-table-wrap {
    overflow-x: auto;
}

.ocr-norm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.ocr-norm-table th,
.ocr-norm-table td {
    border: 1px solid #e5e7eb;
    padding: 6px 10px;
    text-align: left;
}

.ocr-norm-table th {
    background: #f3f4f6;
}

.ocr-norm-obs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ocr-norm-obs-item {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.ocr-norm-amb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ocr-norm-amb {
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.ocr-norm-amb--info {
    border-left: 4px solid #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

.ocr-norm-amb--warn {
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.ocr-norm-amb--err {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.ocr-norm-amb-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.ocr-norm-amb-inline {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.78rem;
}

.ocr-norm-amb-inline li {
    padding: 2px 8px;
    border-radius: 6px;
    background: #fff7ed;
    border: 1px solid #fdba74;
}

.ocr-norm-amb-inline .ocr-norm-amb--err {
    background: #fef2f2;
    border-color: #fecaca;
}

.ocr-norm-amb-inline .ocr-norm-amb--warn {
    background: #fffbeb;
    border-color: #fde68a;
}

.ocr-norm-amb-inline .ocr-norm-amb--info {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.ocr-norm-draft-meta {
    margin: 8px 0 12px;
}

.ocr-norm-details summary {
    cursor: pointer;
    font-weight: 600;
    color: #374151;
}

.ocr-norm-pre {
    white-space: pre-wrap;
    max-height: 40vh;
    overflow: auto;
    font-size: 0.78rem;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #1118270d;
    margin-top: 8px;
}

.ocr-norm-pill--hist {
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.45);
    color: #3730a3;
}

.ocr-norm-hist {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #c7d2fe;
    background: rgba(238, 242, 255, 0.65);
    font-size: 0.86rem;
}

.ocr-norm-hist-title {
    font-weight: 700;
    color: #312e81;
    margin-bottom: 6px;
}

.ocr-norm-hist-line {
    margin: 0 0 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
}

.ocr-norm-hist-k {
    font-weight: 600;
    color: #4338ca;
}

.ocr-norm-hist-v {
    color: #1f2937;
    word-break: break-word;
}

.ocr-norm-hist-sub {
    margin: 0 0 8px;
    font-size: 0.78rem;
    color: #6b7280;
}

.ocr-norm-hist-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.ocr-norm-hist-li {
    margin-bottom: 6px;
}

.ocr-norm-hist-meta {
    font-weight: 400;
    color: #4b5563;
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/Steps/Step1_Contexto.razor.rz.scp.css */
.wizard-step-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-header h2 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.step-header p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

.step-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-group label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #666;
    text-transform: uppercase;
}

/* Category button group */
.cat-btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: #bbb;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cat-btn:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.cat-btn--active {
    background: #e65c00;
    border-color: #e65c00;
    color: #fff;
}

/* Temporada resolved banner */
.temporada-resuelta-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 200, 100, 0.08);
    border: 1px solid rgba(0, 200, 100, 0.25);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: #5dde95;
}

.temporada-resuelta-banner--nueva {
    background: rgba(100, 100, 255, 0.08);
    border-color: rgba(120, 120, 255, 0.3);
    color: #a0a8ff;
}

.tr-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.temporada-resolviendo {
    font-size: 0.82rem;
    color: #666;
    font-style: italic;
    padding: 4px 0;
}

/* Context info panel */
.context-info-panel {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-item .label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info-item .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Checklist mini */
.checklist-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #555;
}

.check-item.ok {
    color: #5dde95;
}

.check-item .icon {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

/* Draft recovery alert */
.draft-recovery-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(230, 92, 0, 0.08);
    border: 1px solid rgba(230, 92, 0, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
}

.alert-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert-content strong {
    font-size: 0.9rem;
    color: #fff;
}

.alert-content p {
    margin: 0;
    font-size: 0.82rem;
    color: #888;
}

/* RR panel override inside this step */
.rr-panel--contexto {
    margin-top: 4px;
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/Steps/Step3_Scheduler.razor.rz.scp.css */
/* --- Root Container --- */
.cal-wrapper {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    overflow-x: auto;
    min-width: 700px;
}

/* --- The Grid --- */
.cal-grid-timeline {
    display: grid;
    /* Column 1: Time labels (80px), Others: Canchas (flexible) */
    grid-template-columns: 80px repeat(calc(var(--cal-cols) - 1), 1fr);
    /* Row 1: Header (50px), Others: 10min slots (30px) */
    grid-template-rows: 50px repeat(calc(var(--cal-rows) - 1), 30px);
    width: 100%;
}

/* --- Headers --- */
.cal-corner {
    grid-row: 1;
    grid-column: 1;
    border-bottom: 2px solid #222;
}

.cal-cancha-header {
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 20;
}

/* --- Labels & Background --- */
.cal-time-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #444;
    border-right: 1px solid #111;
}

.cal-slot-bg {
    /* Sin borde inferior: evita que aparezcan lÃ­neas de 10 min dentro de los bloques de partido */
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: background 0.15s;
}

.cal-slot-bg:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* --- Match Cards --- */
.cal-game-card {
    position: relative;
    margin: 0 4px; /* Only horizontal gap between games */
    background: linear-gradient(135deg, #1e1b4b 0%, #171717 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 6px;
    padding: 4px 8px;
    z-index: 10;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cal-game-card:hover {
    z-index: 30;
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.cal-game-card.selected {
    border-color: #fcd34d;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, #111 100%);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.cal-game-card.card-conflict {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, #1a1111 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.cal-game-card.card-conflict:hover {
    border-color: #f87171;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.cal-game-card .card-label {
    font-weight: 900;
    font-size: 0.95rem; /* Increased from 0.75rem */
    color: #fff; /* Brighter white */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.cal-game-card .card-meta {
    font-size: 1.1rem; /* Increased from 0.85rem */
    color: #aaa;
    font-weight: 900;
    margin-top: 2px;
}

.time-range {
    color: #FFFFFF;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.15);
    padding: 0 6px;
    border-radius: 4px;
}

/* --- Descanso (buffer entre partidos) --- */
/* Franja secundaria entre partidos consecutivos en la misma cancha.
   Debe verse claramente diferente al partido: mÃ¡s ligera, sin fondo sÃ³lido,
   nunca debe parecer otro partido. */
.cal-descanso {
    margin: 1px 6px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(255, 255, 255, 0.015) 4px,
        rgba(255, 255, 255, 0.015) 8px
    );
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    border-right: 2px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0 0 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.cal-descanso span {
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Badges --- */
.card-lock-badge, .card-fix-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.7rem;
}

.card-bloqueado-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* --- Unassigned Section --- */
.sched-unassigned-section {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.unassigned-header h4 {
    color: #fcd34d;
    margin: 0 0 4px 0;
    font-weight: 900;
    font-size: 1rem;
}

.unassigned-header small {
    color: #666;
    font-size: 0.8rem;
}

.unassigned-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.unassigned-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.2s;
}

.unassigned-card:hover {
    border-color: #555;
    background: #181818;
}

.unassigned-card.selected {
    border-color: #fcd34d;
    background: rgba(251, 191, 36, 0.05);
}

.unassigned-card .card-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.unassigned-card .card-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
}

.unassigned-card .card-dur {
    font-size: 0.65rem;
    background: #222;
    padding: 2px 6px;
    border-radius: 4px;
    color: #888;
    font-weight: 900;
}

.unassigned-card .card-reason {
    font-size: 0.7rem;
    color: #ef4444; 
    font-weight: 600;
    line-height:1.2;
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/Steps/Step4_Confirmacion.razor.rz.scp.css */
.confirmation-success-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    animation: fade-in-b-xwkvov39eq 0.5s ease;
}

.btn-back-to-start {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-back-to-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-back-to-start .pub-icon {
    font-size: 1.2rem;
}

@keyframes fade-in-b-xwkvov39eq {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/WizardLiga.razor.rz.scp.css */
.wizard-main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-ui-container {
    background: rgba(12, 14, 20, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 40px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

/* Ambient glow strip at the top */
.wizard-ui-container::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130,71,229,0.5), transparent);
}

.wizard-header-nav {
    margin-bottom: 48px;
}

/* â”€â”€ Progress Track â”€â”€ */
.wizard-progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.wizard-progress-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.progress-bar-fill {
    position: absolute;
    top: 20px;
    left: 30px;
    height: 2px;
    background: linear-gradient(90deg, #8247e5, #a855f7);
    box-shadow: 0 0 12px rgba(130, 71, 229, 0.6);
    border-radius: 2px;
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* â”€â”€ Progress Nodes â”€â”€ */
.progress-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 80px;
    max-width: 110px;
}

.node-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-icon {
    width: 42px;
    height: 42px;
    background: #111118;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #444;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulse ring (current step only) */
.node-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.5;
    animation: node-ring-pulse-b-sku5wy1z50 2s ease-in-out infinite;
}

@keyframes node-ring-pulse-b-sku5wy1z50 {
    0%   { transform: scale(1);    opacity: 0.5; }
    50%  { transform: scale(1.18); opacity: 0.15; }
    100% { transform: scale(1);    opacity: 0.5; }
}

.progress-node.current .node-icon {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(130,71,229,0.12);
    transform: scale(1.1);
    box-shadow: 0 0 22px rgba(130, 71, 229, 0.35);
}

.progress-node.done .node-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-size: 1rem;
}

.node-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.node-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #444;
    white-space: nowrap;
    transition: color 0.2s;
}

.node-sub {
    font-size: 0.58rem;
    color: #333;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.progress-node.current .node-label { color: #fff; }
.progress-node.current .node-sub   { color: #888; }
.progress-node.done   .node-label  { color: var(--accent); }

/* â”€â”€ Step Body â”€â”€ */
.wizard-step-body {
    flex-grow: 1;
    animation: fade-in-up-b-sku5wy1z50 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fade-in-up-b-sku5wy1z50 {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Footer â”€â”€ */
.wizard-navigation-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 28px;
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* â”€â”€ Auto-save pill â”€â”€ */
.auto-save-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 12px;
    letter-spacing: 0.3px;
}

.auto-save-status--saved {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.18);
}

.auto-save-status--saving {
    color: #facc15;
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.save-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: save-blink-b-sku5wy1z50 1s ease-in-out infinite;
}

@keyframes save-blink-b-sku5wy1z50 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* â”€â”€ Loading Overlay â”€â”€ */
.wizard-overlay-loading {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.loader-clutch {
    width: 48px; height: 48px;
    border: 3px solid rgba(130,71,229,0.25);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin-b-sku5wy1z50 0.8s linear infinite;
}

@keyframes spin-b-sku5wy1z50 { to { transform: rotate(360deg); } }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1200px) {
    .wizard-main-layout { grid-template-columns: 1fr; }
    .wizard-sidebar { display: none; }
}

@media (max-width: 768px) {
    .wizard-ui-container { padding: 22px 18px; }
    .node-label { display: none; }
    .node-sub   { display: none; }
    .wizard-progress-track { padding: 0 4px; }
    .wizard-navigation-footer { gap: 8px; }
}
/* _content/AppBasquet.Web.Client.Admin/Components/Admin/WizardSummary.razor.rz.scp.css */
.wizard-summary-panel {
    background: rgba(12, 14, 20, 0.80);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    position: sticky;
    top: 80px;
    overflow: hidden;
}

.wizard-summary-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130,71,229,0.4), transparent);
}

/* Header */
.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-header h4 {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

.step-indicator {
    font-size: 0.68rem;
    font-weight: 800;
    background: rgba(130,71,229,0.15);
    border: 1px solid rgba(130,71,229,0.25);
    color: var(--accent);
    border-radius: 999px;
    padding: 3px 10px;
    letter-spacing: 0.5px;
}

/* Summary Items */
.summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 22px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    opacity: 0.4;
}

.summary-item.active {
    opacity: 1;
    background: rgba(130,71,229,0.06);
    border-color: rgba(130,71,229,0.15);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #444;
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.25s ease;
}

.summary-item.active .dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(130,71,229,0.5);
}

.item-label {
    font-size: 0.73rem;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.summary-item.active .item-label {
    color: #b8a8d8;
}

.item-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-top: 3px;
}

/* Summary Footer */
.summary-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 18px;
}

/* Prediction block */
.summary-prediction {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(245,177,0,0.06);
    border: 1px solid rgba(245,177,0,0.18);
}

.prediction-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.prediction-title {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f5b100;
    margin-bottom: 3px;
}

.prediction-body {
    font-size: 0.8rem;
    color: #a0a0b0;
    line-height: 1.4;
}

.prediction-body strong {
    color: #fff;
    font-weight: 800;
}


.last-saved {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.73rem;
    color: #4ade80;
    font-weight: 700;
    background: rgba(74,222,128,0.07);
    border: 1px solid rgba(74,222,128,0.15);
    border-radius: 10px;
    padding: 8px 12px;
    line-height: 1.3;
}

.last-saved.saving {
    color: #facc15;
    background: rgba(250,204,21,0.07);
    border-color: rgba(250,204,21,0.15);
}

.last-saved .icon {
    font-size: 1rem;
    flex-shrink: 0;
}
/* _content/AppBasquet.Web.Client.Admin/Components/Planilla/PlanillaOcrCapturaAsistidaOverlay.razor.rz.scp.css */
.ocr-asist-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(15, 23, 42, 0.55);
}

.ocr-asist-card {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1050;
  width: min(520px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  overflow: auto;
  padding: 18px 20px 16px;
  border-radius: 12px;
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  color: #e2e8f0;
}

.ocr-asist-title {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.ocr-asist-sub {
  margin: 0 0 14px 0;
  font-size: 0.82rem;
  opacity: 0.88;
  line-height: 1.35;
}

.ocr-asist-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.ocr-asist-k {
  opacity: 0.75;
}

.ocr-asist-v {
  font-variant-numeric: tabular-nums;
  color: #a5b4fc;
}

.ocr-asist-lbl {
  display: block;
  font-size: 0.78rem;
  margin: 10px 0 4px 0;
  opacity: 0.85;
}

.ocr-asist-texto {
  font-size: 0.88rem;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(100, 116, 139, 0.45);
  white-space: pre-wrap;
  word-break: break-word;
}

.ocr-asist-ta {
  width: 100%;
  resize: vertical;
  min-height: 96px;
  font-size: 0.86rem;
}

.ocr-asist-campo {
  font-size: 0.88rem;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(100, 116, 139, 0.4);
  font-family: ui-monospace, monospace;
}

.ocr-asist-select {
  width: 100%;
  font-size: 0.86rem;
}

.ocr-asist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ocr-asist-multi-hint {
  margin: 0 0 12px 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #c7d2fe;
}

.ocr-asist-mini-hint {
  margin: 6px 0 0 0;
  font-size: 0.72rem;
  opacity: 0.8;
}

.ocr-asist-lineas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 40vh;
  overflow: auto;
  padding-right: 4px;
}

.ocr-asist-linea {
  display: grid;
  grid-template-columns: 28px 1fr minmax(140px, 42%);
  gap: 8px;
  align-items: start;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(100, 116, 139, 0.35);
}

.ocr-asist-linea-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  padding-top: 6px;
  text-align: center;
}

.ocr-asist-linea-txt {
  font-size: 0.82rem;
  line-height: 1.35;
  word-break: break-word;
  white-space: pre-wrap;
  max-height: 5.5em;
  overflow: auto;
}

.ocr-asist-linea-sel {
  font-size: 0.78rem;
  width: 100%;
}
/* _content/AppBasquet.Web.Client.Admin/Components/SuperAdmin/SaMetricCard.razor.rz.scp.css */
.sa-mcard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(22, 22, 34, 0.98) 0%, rgba(12, 12, 22, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    min-height: 0;
}

.sa-mcard--clickable {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: inherit;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.sa-mcard--clickable:hover {
    border-color: rgba(130, 71, 229, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.sa-mcard--clickable:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(130, 71, 229, 0.55), 0 10px 32px rgba(0, 0, 0, 0.45);
}

.sa-mcard__accent {
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    border: 1px solid transparent;
    opacity: 0.95;
}

.sa-mcard__label {
    margin-top: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
}

.sa-mcard__value {
    font-size: clamp(1.55rem, 4.5vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.sa-mcard__hint {
    font-size: 0.78rem;
    font-weight: 600;
    color: #8b8c9e;
    line-height: 1.35;
}

.sa-mcard__delta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.sa-mcard__delta-cap {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5c5c70;
}

.sa-mcard__delta--up { color: #4ade80; }
.sa-mcard__delta--down { color: #f87171; }
.sa-mcard__delta--flat { color: #94a3b8; }
/* _content/AppBasquet.Web.Client.Admin/Components/SuperAdmin/SaMiniBarChart.razor.rz.scp.css */
.sa-mini-chart {
    border-radius: 16px;
    padding: 18px 16px 16px;
    background: linear-gradient(165deg, rgba(22, 22, 34, 0.96) 0%, rgba(10, 10, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
    min-width: 0;
}

.sa-mini-chart__head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.sa-mini-chart__title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -0.01em;
}

.sa-mini-chart__sub {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sa-mini-chart__empty {
    margin: 12px 0 4px;
    font-size: 0.82rem;
    color: #64748b;
}

.sa-mini-chart__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    height: 140px;
    padding-top: 4px;
}

.sa-mini-chart__col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.sa-mini-chart__val {
    font-size: 0.58rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.sa-mini-chart__track {
    flex: 1 1 auto;
    width: 100%;
    max-width: 22px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px 6px 4px 4px;
    overflow: hidden;
    min-height: 48px;
}

.sa-mini-chart__fill {
    width: 100%;
    border-radius: 4px 4px 0 0;
    min-height: 2px;
    transition: height 0.35s ease;
}

.sa-mini-chart__lbl {
    margin-top: 6px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #64748b;
    text-align: center;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .sa-mini-chart__bars {
        height: 120px;
    }

    .sa-mini-chart__lbl {
        font-size: 0.5rem;
    }
}
/* _content/AppBasquet.Web.Client.Admin/Components/SuperAdmin/SuperAdminOverviewPanel.razor.rz.scp.css */
.sa-ov {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4px 8px;
}

.sa-ov__metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 560px) {
    .sa-ov__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1024px) {
    .sa-ov__metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

.sa-ov__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 520px) {
    .sa-ov__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .sa-ov__actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sa-ov__link-btn {
    border: none;
    background: rgba(130, 71, 229, 0.15);
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(130, 71, 229, 0.35);
    transition: background 0.15s, color 0.15s;
}

.sa-ov__link-btn:hover {
    background: rgba(130, 71, 229, 0.28);
    color: #fff;
}

.sa-ov__alerts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sa-ov__alert-empty {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: #86efac;
}

.sa-ov__alert-empty-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.sa-ov__alert-empty strong {
    display: block;
    color: #bbf7d0;
    margin-bottom: 4px;
}

.sa-ov__alert-empty p {
    margin: 0;
    font-size: 0.82rem;
    color: #6ee7b7;
    line-height: 1.45;
}

.sa-ov-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 18, 28, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.sa-ov-alert--warn {
    border-color: rgba(251, 191, 36, 0.25);
    background: linear-gradient(135deg, rgba(55, 42, 12, 0.35) 0%, rgba(18, 18, 28, 0.98) 100%);
}

.sa-ov-alert--danger {
    border-color: rgba(248, 113, 113, 0.35);
    background: linear-gradient(135deg, rgba(55, 12, 12, 0.4) 0%, rgba(18, 18, 28, 0.98) 100%);
}

.sa-ov-alert--ok {
    border-color: rgba(74, 222, 128, 0.25);
    background: linear-gradient(135deg, rgba(12, 55, 30, 0.3) 0%, rgba(18, 18, 28, 0.98) 100%);
}

.sa-ov-alert__ico {
    font-size: 1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.sa-ov-alert__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sa-ov-alert__tipo {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.sa-ov-alert__msg {
    font-size: 0.86rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.45;
}

.sa-ov__charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 840px) {
    .sa-ov__charts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

.sa-ov-leaders {
    border-radius: 16px;
    padding: 16px 16px 14px;
    background: linear-gradient(165deg, rgba(22, 22, 34, 0.96) 0%, rgba(10, 10, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sa-ov-leader {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) auto;
    gap: 10px 12px;
    align-items: center;
}

.sa-ov-leader__name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #cbd5e1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sa-ov-leader__track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.sa-ov-leader__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #a78bfa, #8247e5);
    min-width: 4px;
    transition: width 0.35s ease;
}

.sa-ov-leader__n {
    font-size: 0.78rem;
    font-weight: 900;
    color: #f1f5f9;
    font-variant-numeric: tabular-nums;
}

.sa-ov__secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 520px) {
    .sa-ov__secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .sa-ov__secondary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sa-ov-stat {
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(16, 16, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sa-ov-stat__lbl {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.sa-ov-stat__val {
    font-size: 1.25rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.sa-ov-stat__muted {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.sa-ov-stat__val--purple { color: #c4b5fd; }
.sa-ov-stat__val--cyan { color: #22d3ee; }
.sa-ov-stat__val--violet { color: #a78bfa; }
.sa-ov-stat__val--green { color: #4ade80; }
.sa-ov-stat__val--orange { color: #fb923c; }
.sa-ov-stat__val--amber { color: #fbbf24; }

.sa-ov--command {
    max-width: 1100px;
}

.sa-ov--command .sa-ov__charts {
    max-width: 720px;
}
/* _content/AppBasquet.Web.Client.Admin/Components/SuperAdmin/SuperAdminProductAnalyticsPanel.razor.rz.scp.css */
.sa-pa__filters .sa-pa__filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 0 16px 16px;
}

.sa-pa__lbl {
    font-size: 12px;
    color: #a78bfa;
    margin-left: 4px;
}

.sa-pa__chip {
    border: 1px solid #3d2d6b;
    background: #1a1228;
    color: #e2d4ff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
}

.sa-pa__chip.is-on {
    border-color: #8247e5;
    background: #2a1a4a;
}

.sa-pa__input,
.sa-pa__select {
    background: #1a1228;
    border: 1px solid #3d2d6b;
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    max-width: 120px;
}

.sa-pa__btn {
    background: #8247e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    margin-left: auto;
}

.sa-pa__btn:disabled {
    opacity: 0.6;
}

.sa-pa__err {
    color: #ff6b6b;
    padding: 0 16px 12px;
    font-size: 13px;
}

.sa-pa__kpis {
    margin-bottom: 16px;
}

.sa-pa__bar-row {
    display: grid;
    grid-template-columns: 48px 1fr 36px;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    font-size: 12px;
}

.sa-pa__bar-lbl {
    color: #a78bfa;
}

.sa-pa__bar-track {
    height: 8px;
    background: #2a1a4a;
    border-radius: 4px;
    overflow: hidden;
}

.sa-pa__bar-fill {
    height: 100%;
    border-radius: 4px;
    min-width: 2px;
}

.sa-pa__bar-val {
    text-align: right;
    color: #e2d4ff;
}

.sa-pa__device-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #2a1a4a;
}

.sa-pa__insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 0 16px 16px;
}

.sa-pa__h4 {
    font-size: 13px;
    color: #a78bfa;
    margin: 0 0 8px;
}

.sa-pa__tags {
    list-style: none;
    padding: 0 16px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sa-pa__tags li {
    background: #2a1a4a;
    border: 1px solid #ef4444;
    color: #ffc9c9;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.sa-pa__flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.sa-pa__flow-list li {
    padding: 4px 0;
    border-bottom: 1px solid #2a1a4a;
}
/* _content/AppBasquet.Web.Client.Admin/Components/SuperAdmin/SuperAdminSmartAnalyticsPanel.razor.rz.scp.css */
.sa-smart__insights {
    list-style: none;
    margin: 0;
    padding: 0 16px 16px;
}

.sa-smart__insight {
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
    background: #1a1228;
    border-left: 3px solid #8247e5;
}

.sa-smart__insight--positive { border-left-color: #00e676; }
.sa-smart__insight--warning { border-left-color: #f5b100; }

.sa-smart__conf {
    display: inline-block;
    font-size: 11px;
    color: #a78bfa;
    margin-right: 8px;
}

.sa-smart__pattern {
    padding: 8px 16px;
    border-bottom: 1px solid #2a1a4a;
    font-size: 13px;
}

.sa-smart__pattern p {
    margin: 4px 0 0;
    color: #c4b5fd;
}

.sa-smart__cat {
    font-size: 11px;
    color: #8247e5;
    margin-left: 8px;
}

.sa-smart__rec,
.sa-smart__notif {
    padding: 10px 16px;
    border-bottom: 1px solid #2a1a4a;
    font-size: 13px;
}

.sa-smart__kind,
.sa-smart__prio {
    font-size: 11px;
    color: #a78bfa;
    text-transform: uppercase;
}

.sa-smart__link {
    font-size: 12px;
    color: #00e676;
}

.sa-smart__scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 0 16px 16px;
}

.sa-smart__score-row {
    font-size: 12px;
    padding: 4px 0;
    color: #e2d4ff;
}

.sa-pa__hint {
    font-size: 12px;
    color: #a78bfa;
    padding: 0 16px 12px;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/Admin/DynamicContentManager.razor.rz.scp.css */
.dcm-root {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 18px 48px;
    color: #e8e8f0;
}

.dcm-head {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.dcm-head h1 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.dcm-lead {
    margin: 0;
    max-width: 640px;
    color: #9ca3c7;
    line-height: 1.55;
    font-size: 0.92rem;
}

.dcm-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dcm-muted {
    color: #7b7b9a;
    font-size: 0.88rem;
}

.dcm-card {
    border-radius: 14px;
    padding: 22px;
    background: linear-gradient(160deg, rgba(30, 27, 52, 0.95), rgba(18, 16, 34, 0.98));
    border: 1px solid rgba(130, 71, 229, 0.25);
}

.dcm-card--err {
    border-color: rgba(248, 113, 113, 0.45);
}

.dcm-btn {
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #e8e8f0;
}

.dcm-btn--primary {
    background: linear-gradient(135deg, #8247e5, #5b21b6);
    border-color: rgba(196, 181, 253, 0.45);
}

.dcm-btn--secondary {
    background: rgba(130, 71, 229, 0.18);
    border-color: rgba(130, 71, 229, 0.35);
}

.dcm-btn--ghost {
    background: transparent;
}

.dcm-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.dcm-banner {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(130, 71, 229, 0.15);
    border: 1px solid rgba(130, 71, 229, 0.35);
    font-size: 0.9rem;
}

.dcm-upload,
.dcm-filters {
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(12, 10, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dcm-upload h2,
.dcm-filters h2 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
}

.dcm-upload-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.dcm-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.dcm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
}

.dcm-filters label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3c7;
}

.dcm-input {
    min-width: 160px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #f4f4ff;
    padding: 9px 11px;
    font-size: 0.88rem;
}

.dcm-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dcm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.dcm-table th,
.dcm-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    vertical-align: middle;
}

.dcm-table th {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3c7;
}

.dcm-thumb {
    border-radius: 8px;
    object-fit: cover;
    background: #111;
}

.dcm-pill {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(130, 71, 229, 0.25);
    border: 1px solid rgba(130, 71, 229, 0.4);
}

.dcm-dates {
    white-space: nowrap;
    font-size: 0.78rem;
    color: #b4b4d4;
}

.dcm-sep {
    margin: 0 4px;
    opacity: 0.5;
}

.dcm-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
}

.dcm-badge--on {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.dcm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dcm-link {
    border: none;
    background: none;
    color: #c4b5fd;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
}

.dcm-link--danger {
    color: #fca5a5;
}

.dcm-drawer-back {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 40;
}

.dcm-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    z-index: 50;
    padding: 22px 18px;
    overflow-y: auto;
    background: linear-gradient(200deg, #14122a, #0c0a18);
    border-left: 1px solid rgba(130, 71, 229, 0.35);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

.dcm-drawer h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
}

.dcm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3c7;
}

.dcm-textarea {
    min-height: 72px;
    resize: vertical;
}

.dcm-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.dcm-drawer-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/Admin/ImportacionValidacion.razor.rz.scp.css */
.iv-root {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px clamp(16px, 3vw, 36px) 56px;
    color: #e8e8f4;
    font-family: inherit;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(130, 71, 229, 0.18), transparent 55%),
        radial-gradient(900px 500px at 90% 0%, rgba(245, 177, 0, 0.1), transparent 50%),
        #050508;
    min-height: 100vh;
    box-sizing: border-box;
}

.iv-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 80px 20px;
    color: #94a3b8;
}

.iv-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: #f5b100;
    animation: iv-spin-b-jgtb0xpzvf 0.85s linear infinite;
}

@keyframes iv-spin-b-jgtb0xpzvf {
    to { transform: rotate(360deg); }
}

.iv-mini-spin {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: currentColor;
    animation: iv-spin-b-jgtb0xpzvf 0.7s linear infinite;
    vertical-align: -2px;
    margin-right: 6px;
}

.iv-card {
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 20, 0.92);
}

.iv-card--err {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(40, 10, 10, 0.45);
}

.iv-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.iv-kicker {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f5b100;
    margin-bottom: 8px;
}

.iv-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.iv-lead {
    margin: 0;
    max-width: 52rem;
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.55;
}

.iv-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.iv-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.iv-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 16, 0.85);
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
}

.iv-step--active {
    border-color: rgba(245, 177, 0, 0.45);
    color: #fef3c7;
    box-shadow: 0 0 0 1px rgba(245, 177, 0, 0.12);
}

.iv-step--done {
    border-color: rgba(16, 185, 129, 0.35);
    color: #6ee7b7;
}

.iv-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
}

.iv-panel {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(165deg, rgba(18, 18, 28, 0.95), rgba(8, 8, 14, 0.98));
    padding: 22px clamp(16px, 2vw, 24px);
    margin-bottom: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.iv-panel--accent {
    border-color: rgba(167, 139, 250, 0.25);
}

.iv-panel--confirm {
    border-color: rgba(245, 177, 0, 0.28);
}

.iv-h2 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.iv-h3 {
    margin: 16px 0 8px;
    font-size: 0.88rem;
    font-weight: 800;
    color: #cbd5e1;
}

.iv-muted {
    color: #64748b;
    font-size: 0.84rem;
    margin: 0 0 14px;
    line-height: 1.45;
}

.iv-timing {
    color: #94a3b8;
    font-size: 0.82rem;
    margin: 0 0 10px;
}

.iv-hint {
    color: #cbd5e1;
    font-size: 0.86rem;
    margin: 0 0 12px;
}

.iv-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.iv-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.iv-input {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a12;
    color: #e8e8f4;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.iv-drop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(6, 6, 10, 0.65);
    cursor: pointer;
    margin-bottom: 14px;
}

.iv-drop span {
    pointer-events: none;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.88rem;
}

.iv-file {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.iv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.iv-btn {
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.iv-btn:active {
    transform: scale(0.97);
}

.iv-btn--primary {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 10px 26px rgba(91, 33, 182, 0.35);
}

.iv-btn--secondary {
    background: rgba(30, 30, 46, 0.95);
    color: #e8e8f4;
    border-color: rgba(255, 255, 255, 0.12);
}

.iv-btn--ghost {
    background: transparent;
    color: #a78bfa;
    border-color: rgba(167, 139, 250, 0.35);
}

.iv-btn--gold {
    background: linear-gradient(135deg, #f5b100, #d97706);
    color: #0a0a0f;
    border-color: rgba(245, 177, 0, 0.55);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.28);
}

.iv-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.iv-chip--hdr {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.68rem;
}

.iv-header-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.iv-banner {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 0.86rem;
    font-weight: 600;
}

.iv-banner--err {
    background: rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

.iv-banner--ok {
    background: rgba(6, 78, 59, 0.35);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: #d1fae5;
}

.iv-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.iv-count {
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 14, 0.85);
}

.iv-count span {
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
}

.iv-count small {
    color: #64748b;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.iv-count--ok span { color: #34d399; }
.iv-count--warn span { color: #fbbf24; }
.iv-count--err span { color: #f87171; }
.iv-count--muted span { color: #64748b; }

.iv-table-wrap {
    overflow: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.iv-table-wrap--tall {
    max-height: min(520px, 58vh);
}

.iv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.iv-table thead {
    position: sticky;
    top: 0;
    background: #0c0c16;
    z-index: 1;
}

.iv-table th {
    text-align: left;
    padding: 10px 8px;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.iv-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.iv-tr-err {
    background: rgba(127, 29, 29, 0.22);
}

.iv-row--ok { background: rgba(6, 78, 59, 0.12); }
.iv-row--warn { background: rgba(120, 53, 15, 0.2); }
.iv-row--err { background: rgba(127, 29, 29, 0.18); }
.iv-row--ignored { opacity: 0.45; }

.iv-cell {
    width: 100%;
    min-width: 72px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #080810;
    color: #e8e8f4;
    padding: 6px 8px;
    font-size: 0.78rem;
}

.iv-cell--wide {
    min-width: 120px;
}

.iv-td-num {
    color: #64748b;
    font-weight: 800;
    width: 36px;
}

.iv-td-mono {
    font-family: ui-monospace, Menlo, Consolas, monospace;
    color: #cbd5e1;
}

.iv-td-note {
    font-size: 0.72rem;
    color: #94a3b8;
    max-width: 200px;
}

.iv-list-err {
    margin: 0;
    padding-left: 18px;
    color: #fecaca;
    font-size: 0.82rem;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/Admin/LeagueAdminHub.razor.rz.scp.css */
/* League admin hub â€” mobile-first */

.lah-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 12px;
    color: #a1a1aa;
}

.lah-loader__spin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #27272a;
    border-top-color: #22c55e;
    animation: lah-spin-b-1hhilul415 0.75s linear infinite;
}

@keyframes lah-spin-b-1hhilul415 {
    to { transform: rotate(360deg); }
}

.lah-empty-access {
    max-width: 420px;
    margin: 2rem auto;
    padding: 1.5rem;
    text-align: center;
    color: #e4e4e7;
}

.lah-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 40%);
    color: #fafafa;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.lah-top {
    padding: 12px 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lah-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.lah-top-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.lah-tool-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #e4e4e7;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.lah-tool-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.lah-tool-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.lah-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
}

.lah-sub {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #a1a1aa;
}

.lah-lbl {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #71717a;
    margin-bottom: 4px;
}

.lah-temp-row {
    margin-top: 10px;
}

.lah-select {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: #0c0c10;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 600;
}

.lah-select--sm {
    max-width: 200px;
    padding: 8px 10px;
    font-size: 0.8rem;
}

.lah-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.lah-chip {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.28);
}

.lah-chip--act {
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
}

.lah-chip--act:active {
    transform: scale(0.98);
}

.lah-enf-wrap {
    margin-bottom: 16px;
}

.lah-main {
    flex: 1;
    padding: 14px 16px 24px;
    overflow-y: auto;
}

.lah-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lah-card {
    display: block;
    text-align: left;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(24, 24, 32, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    font: inherit;
    transition: border-color 0.15s, transform 0.12s;
}

.lah-card:hover {
    border-color: rgba(34, 197, 94, 0.45);
    transform: translateY(-1px);
}

.lah-card--accent {
    border-color: rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.35), rgba(24, 24, 32, 0.98));
}

.lah-card-ico {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.lah-card-k {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
}

.lah-card-d {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: #a1a1aa;
}

.lah-link-classic {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: #93c5fd;
}

.lah-link-ghost {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: #a78bfa;
}

.lah-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.lah-cal-range {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e4e4e7;
    text-align: center;
    flex: 1;
}

.lah-icon-btn {
    border: 1px solid #3f3f46;
    background: #18181b;
    color: #fafafa;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
}

.lah-day {
    margin-bottom: 18px;
}

.lah-day-title {
    margin: 0 0 8px;
    font-size: 0.78rem;
    text-transform: capitalize;
    color: #a1a1aa;
    font-weight: 700;
}

.lah-match {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 12px 14px;
    border-radius: 12px;
    background: #18181f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.lah-match--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lah-match-time {
    font-size: 0.75rem;
    color: #86efac;
    font-weight: 700;
}

.lah-match-teams {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 4px;
}

.lah-match-date {
    font-size: 0.78rem;
    color: #a1a1aa;
}

.lah-j {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.lah-cta {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: #86efac;
    font-weight: 700;
}

.lah-match--with-action {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 8px;
}

.lah-match-body {
    flex: 1;
    min-width: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 12px 14px;
    border-radius: 12px;
    background: #18181f;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lah-match-body--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lah-match-qs {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    background: rgba(22, 101, 52, 0.35);
    color: #bbf7d0;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.lah-match-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: center;
    flex-shrink: 0;
}

.lah-match-ocr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 40px;
    margin: 0;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.45);
    background: rgba(91, 33, 182, 0.25);
    color: #ddd6fe;
    font-size: 1.05rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.lah-match-ocr:active {
    transform: scale(0.96);
}

.lah-match-qs:active {
    transform: scale(0.96);
}

.lah-modal-back {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.lah-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 201;
    width: min(400px, calc(100vw - 32px));
    max-height: min(85vh, 520px);
    overflow: auto;
    padding: 4px;
}

.lah-modal-inner {
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: #12121a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fafafa;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lah-modal-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
}

.lah-modal-sub {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: #d4d4d8;
    font-weight: 600;
}

.lah-modal-hint {
    margin: 10px 0 0;
    font-size: 0.78rem;
    line-height: 1.35;
}

.lah-modal-err {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
    font-size: 0.85rem;
}

.lah-qs-scores {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.lah-qs-field {
    flex: 1;
    min-width: 0;
}

.lah-qs-inp {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #fafafa;
    font-size: 1.25rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lah-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.lah-modal-btn {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
}

.lah-modal-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lah-modal-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #e4e4e7;
}

.lah-modal-btn--pri {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #052e16;
}

.lah-sec-title {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
}

.lah-muted {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin: 0 0 14px;
}

.lah-more-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lah-more-item {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    background: #18181f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fafafa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.lah-more-item:hover {
    border-color: rgba(34, 197, 94, 0.35);
}

.lah-stand-wrap {
    margin: 12px 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: auto;
    max-height: min(60vh, 420px);
    background: rgba(0, 0, 0, 0.25);
}

.lah-stand-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.lah-stand-table th {
    text-align: left;
    padding: 8px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #71717a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(24, 24, 31, 0.9);
    position: sticky;
    top: 0;
    z-index: 1;
}

.lah-stand-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
}

.lah-stand-n {
    width: 2rem;
    color: #a1a1aa;
    font-variant-numeric: tabular-nums;
}

.lah-stand-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    color: #d4d4d8;
}

.lah-stand-name {
    font-weight: 600;
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lah-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    gap: 4px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 10, 15, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    z-index: 50;
}

.lah-tab {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #a1a1aa;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 8px 2px;
    border-radius: 10px;
    cursor: pointer;
}

.lah-tab.is-on {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.12);
}

.lah-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.lah-btn--pri {
    background: #22c55e;
    color: #052e16;
}

@media (min-width: 900px) {
    .lah-shell {
        max-width: 520px;
        margin: 0 auto;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    }
}
/* _content/AppBasquet.Web.Client.Admin/Pages/Admin/LeagueAdminNuevoPartido.razor.rz.scp.css */
/* Nuevo partido â€” mismo lenguaje visual que LeagueAdminHub */

.lanp-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    color: #a1a1aa;
}

.lanp-error {
    max-width: 420px;
    margin: 2rem auto;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
    text-align: center;
}

.lanp-page {
    min-height: 100vh;
    padding: 16px 16px calc(24px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 45%);
    color: #fafafa;
    max-width: 520px;
    margin: 0 auto;
}

.lanp-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lanp-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lanp-sub {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #a1a1aa;
}

.lanp-back {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #e4e4e7;
    text-decoration: none;
    font-weight: 700;
}

.lanp-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lanp-banner-err {
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
    font-size: 0.9rem;
}

.lanp-field {
    margin-bottom: 14px;
}

.lanp-lbl {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #71717a;
    margin-bottom: 6px;
}

.lanp-select,
.lanp-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    color: #fafafa;
    font-size: 1rem;
}

.lanp-select:focus,
.lanp-input:focus {
    outline: none;
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

.lanp-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 8px;
    font-size: 0.9rem;
    color: #d4d4d8;
    cursor: pointer;
}

.lanp-check input {
    width: 18px;
    height: 18px;
    accent-color: #22c55e;
}

.lanp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.lanp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

.lanp-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lanp-btn--pri {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #052e16;
}

.lanp-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #e4e4e7;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lanp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/Admin/OcrDocumentoWorkbench.razor.rz.scp.css */
/* OCR workbench â€” layout tipo â€œAnotar hojaâ€ (reutiliza planilla-region-ocr.js) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.ocr-wb {
    --ocr-bg: #121212;
    --ocr-panel: #1e1e26;
    --ocr-border: #2e3240;
    --ocr-text: #ececf1;
    --ocr-muted: #9ca3af;
    --ocr-accent: #3b82f6;
    --ocr-warn: #fbbf24;
    --ocr-danger: #ef4444;
    --ocr-ok: #10b981;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    background: var(--ocr-bg);
    color: var(--ocr-text);
    padding: 14px 18px 100px;
    box-sizing: border-box;
}

.ocr-wb-bc {
    font-size: 0.8rem;
    color: var(--ocr-muted);
    margin: 0 0 12px;
}

.ocr-wb-bc a {
    color: #93c5fd;
    text-decoration: none;
}

.ocr-wb-bc a:hover {
    text-decoration: underline;
}

.ocr-wb-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ocr-wb-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ocr-wb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ocr-wb-btn {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--ocr-border);
    background: var(--ocr-panel);
    color: var(--ocr-text);
    cursor: pointer;
}

.ocr-wb-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ocr-wb-btn--ghost:hover:not(:disabled) {
    border-color: #475569;
}

.ocr-wb-btn--primary {
    background: linear-gradient(180deg, #f97316, #ea580c);
    border-color: #c2410c;
    color: #fff;
}

.ocr-wb-btn--accent {
    background: var(--ocr-accent);
    border-color: #2563eb;
    color: #fff;
}

.ocr-wb-btn--sm {
    padding: 6px 10px;
    font-size: 0.78rem;
}

.ocr-wb-btn--xs {
    padding: 4px 8px;
    font-size: 0.72rem;
}

.ocr-wb-btn--outline {
    background: transparent;
    border-color: #475569;
    color: var(--ocr-text);
}

.ocr-wb-btn--muted {
    background: #2a2f3d;
    border-color: var(--ocr-border);
    color: var(--ocr-text);
}

.ocr-wb-btn--success {
    background: linear-gradient(180deg, #10b981, #059669);
    border-color: #047857;
    color: #fff;
}

.ocr-wb-btn--danger-outline {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.55);
    color: #fecaca;
}

.ocr-wb-btn--process {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    border-color: #1d4ed8;
    color: #fff;
}

.ocr-wb-btn--continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #10b981, #059669);
    border-color: #047857;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
}

.ocr-wb-btn--dashed {
    border-style: dashed;
    background: transparent;
    color: var(--ocr-muted);
}

.ocr-wb-btn--block {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.ocr-wb-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.ocr-wb-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    border: 1px solid var(--ocr-border);
    background: var(--ocr-panel);
    color: var(--ocr-muted);
}

.ocr-wb-step--active {
    border-color: #6366f1;
    color: #e0e7ff;
    background: rgba(99, 102, 241, 0.15);
}

.ocr-wb-step--done {
    border-color: rgba(34, 197, 94, 0.45);
    color: #bbf7d0;
}

.ocr-wb-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.72rem;
    background: var(--ocr-border);
    color: var(--ocr-text);
}

.ocr-wb-step--active .ocr-wb-step-num {
    background: #6366f1;
}

.ocr-wb-alert {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.ocr-wb-alert--err {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

.ocr-wb-alert--ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.ocr-wb-details {
    border: 1px solid var(--ocr-border);
    border-radius: 10px;
    background: var(--ocr-panel);
    margin-bottom: 16px;
}

.ocr-wb-details > summary {
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
}

.ocr-wb-details-body {
    padding: 0 14px 14px;
    border-top: 1px solid var(--ocr-border);
}

.ocr-wb-upload-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 12px 0;
}

.ocr-wb-upload-row label {
    font-size: 0.82rem;
    color: var(--ocr-muted);
}

.ocr-wb-upload-row input[type="number"] {
    width: 5rem;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid var(--ocr-border);
    background: #0b0f14;
    color: var(--ocr-text);
}

.ocr-wb-table-wrap {
    overflow-x: auto;
    margin-top: 10px;
}

.ocr-wb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.ocr-wb-table th,
.ocr-wb-table td {
    padding: 6px 8px;
    text-align: left;
    border-bottom: 1px solid var(--ocr-border);
}

.ocr-wb-grid {
    display: grid;
    grid-template-columns: minmax(200px, 240px) 1fr minmax(260px, 320px);
    gap: 14px;
    align-items: start;
}

@media (max-width: 1100px) {
    .ocr-wb-grid {
        grid-template-columns: 1fr;
    }
}

.ocr-wb-aside {
    border: 1px solid var(--ocr-border);
    border-radius: 10px;
    background: var(--ocr-panel);
    padding: 12px;
    max-height: min(78vh, 900px);
    overflow: auto;
}

.ocr-wb-aside h3 {
    margin: 0 0 10px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ocr-muted);
}

.ocr-wb-field-grp {
    margin-bottom: 14px;
}

.ocr-wb-field-grp-title {
    font-size: 0.75rem;
    color: var(--ocr-muted);
    margin: 0 0 6px;
    font-weight: 600;
}

.ocr-wb-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 6px 6px 0;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    border: 1px solid var(--ocr-border);
    background: #0b0f14;
    color: var(--ocr-text);
    cursor: pointer;
    text-align: left;
}

.ocr-wb-chip:hover {
    border-color: #64748b;
}

.ocr-wb-chip--on {
    outline: 2px solid #6366f1;
    outline-offset: 1px;
}

.ocr-wb-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ocr-wb-main {
    border: 1px solid var(--ocr-border);
    border-radius: 10px;
    background: var(--ocr-panel);
    padding: 10px;
    min-height: 420px;
}

.ocr-wb-canvas-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.ocr-wb-hint {
    font-size: 0.75rem;
    color: var(--ocr-muted);
    margin: 0 0 8px;
}

.ocr-wb-stage {
    min-height: 420px;
    border-radius: 8px;
    background: #0b0f14;
    border: 1px solid var(--ocr-border);
    position: relative;
    overflow: hidden;
}

.ocr-wb-stage .planilla-reg-host {
    min-height: 400px;
}

.ocr-wb-panel h3 {
    margin: 0 0 8px;
    font-size: 0.82rem;
    color: var(--ocr-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ocr-wb-panel-block {
    border: 1px solid var(--ocr-border);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background: #0b0f14;
}

.ocr-wb-conf-bar {
    height: 8px;
    border-radius: 4px;
    background: var(--ocr-border);
    margin: 6px 0;
    overflow: hidden;
}

.ocr-wb-conf-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #22c55e, #eab308);
}

.ocr-wb-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.ocr-wb-mini-actions .ocr-wb-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
}

.ocr-wb-zone-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: 0.78rem;
}

.ocr-wb-zone-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--ocr-border);
}

.ocr-wb-dup {
    border: 1px solid rgba(234, 179, 8, 0.45);
    border-radius: 10px;
    padding: 12px;
    background: rgba(234, 179, 8, 0.08);
    margin-top: 10px;
}

.ocr-wb-dup h4 {
    margin: 0 0 6px;
    font-size: 0.85rem;
    color: #fde047;
}

.ocr-wb-dup p {
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: var(--ocr-text);
}

.ocr-wb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.ocr-wb-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--ocr-muted);
}

.ocr-wb-form-grid input {
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid var(--ocr-border);
    background: #0b0f14;
    color: var(--ocr-text);
    font-size: 0.82rem;
}

.ocr-wb-footer-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.78rem;
    color: #93c5fd;
}

/* â€”â€” Masthead (logo | stepper | acciones) â€”â€” */
.ocr-wb-masthead {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 2.2fr) minmax(200px, 1fr);
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: var(--ocr-panel);
    border: 1px solid var(--ocr-border);
    border-radius: 12px;
}

@media (max-width: 1100px) {
    .ocr-wb-masthead {
        grid-template-columns: 1fr;
    }
}

.ocr-wb-masthead__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ocr-wb-logo-mark {
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.35);
    padding: 6px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.ocr-wb-masthead__titles {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ocr-wb-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ocr-muted);
}

.ocr-wb-page-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ocr-wb-masthead__stepper {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.ocr-wb-masthead__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ocr-wb-stepper {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.ocr-wb-stepper__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 12px;
    font-size: 0.72rem;
    color: var(--ocr-muted);
    background: #16161f;
    border: 1px solid var(--ocr-border);
    border-radius: 999px;
    margin-right: -1px;
    position: relative;
}

.ocr-wb-stepper__item--active {
    color: #e0e7ff;
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.18);
    z-index: 1;
}

.ocr-wb-stepper__item--done {
    color: #a7f3d0;
    border-color: rgba(16, 185, 129, 0.45);
}

.ocr-wb-stepper__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.68rem;
    background: #2e3240;
    color: var(--ocr-text);
}

.ocr-wb-stepper__item--active .ocr-wb-stepper__num {
    background: #6366f1;
    color: #fff;
}

.ocr-wb-stepper__item--done .ocr-wb-stepper__num {
    background: rgba(16, 185, 129, 0.35);
}

.ocr-wb-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 220px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--ocr-border);
    background: #16161f;
    font-size: 0.72rem;
    color: var(--ocr-muted);
}

.ocr-wb-user-chip__ico {
    font-size: 22px !important;
    color: #94a3b8;
}

.ocr-wb-user-chip__txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ocr-wb-iconbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--ocr-border);
    background: #16161f;
    color: var(--ocr-text);
    cursor: pointer;
}

.ocr-wb-iconbtn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.ocr-wb-iconbtn--dim {
    opacity: 0.45;
}

.ocr-wb-iconbtn .material-icons {
    font-size: 20px;
}

/* â€”â€” Workspace 3 columnas â€”â€” */
.ocr-wb-workspace {
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr minmax(280px, 340px);
    gap: 14px;
    align-items: start;
}

@media (max-width: 1100px) {
    .ocr-wb-workspace {
        grid-template-columns: 1fr;
    }
}

.ocr-wb-aside-title {
    margin: 0 0 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ocr-muted);
}

.ocr-wb-aside--campos,
.ocr-wb-aside--review {
    max-height: none;
}

.ocr-wb-coll {
    border: 1px solid var(--ocr-border);
    border-radius: 10px;
    background: #16161f;
    margin-bottom: 8px;
    overflow: hidden;
}

.ocr-wb-coll-sum {
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.82rem;
    list-style: none;
}

.ocr-wb-coll-sum::-webkit-details-marker {
    display: none;
}

.ocr-wb-coll-body {
    padding: 0 8px 10px;
}

.ocr-wb-chip-ico {
    font-size: 14px !important;
    opacity: 0.55;
}

.ocr-wb-main {
    min-height: 480px;
}

.ocr-wb-zoom {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid var(--ocr-border);
    background: #16161f;
}

.ocr-wb-zoom-pct {
    min-width: 3.2rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ocr-muted);
}

.ocr-wb-toolbar-spacer {
    flex: 1;
    min-width: 8px;
}

.ocr-wb-canvas-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ocr-wb-section {
    margin-bottom: 18px;
}

.ocr-wb-snippet-wrap {
    padding: 0;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1118;
}

.ocr-wb-snippet {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    display: block;
}

.ocr-wb-snippet-ph {
    padding: 24px 16px;
    font-size: 0.8rem;
    color: var(--ocr-muted);
    text-align: center;
}

.ocr-wb-field-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ocr-muted);
}

.ocr-wb-mt {
    margin-top: 10px;
}

.ocr-wb-ocr-line {
    font-size: 0.92rem;
    margin-top: 4px;
    font-weight: 600;
}

.ocr-wb-muted-sm {
    font-size: 0.78rem;
    color: var(--ocr-muted);
    margin: 6px 0 0;
}

.ocr-wb-conf-pct {
    font-size: 0.78rem;
    color: #a7f3d0;
}

.ocr-wb-conf-fill--ok {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.ocr-wb-select {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--ocr-border);
    background: #0f1118;
    color: var(--ocr-text);
    font-size: 0.82rem;
}

.ocr-wb-select--sm {
    width: auto;
    min-width: 10rem;
    max-width: 14rem;
    margin-top: 0;
    font-size: 0.72rem;
    padding: 6px 8px;
}

.ocr-wb-input {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--ocr-border);
    background: #0f1118;
    color: var(--ocr-text);
    font-size: 0.85rem;
    box-sizing: border-box;
}

.ocr-wb-row-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ocr-wb-zone-rows {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow: auto;
    border: 1px solid var(--ocr-border);
    border-radius: 10px;
    background: #16161f;
}

.ocr-wb-zone-row {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--ocr-border);
}

.ocr-wb-zone-row:last-child {
    border-bottom: 0;
}

.ocr-wb-zone-row--active {
    background: rgba(59, 130, 246, 0.12);
}

.ocr-wb-zone-row-main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: var(--ocr-text);
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.ocr-wb-zone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ocr-wb-zone-name {
    font-size: 0.78rem;
    font-weight: 600;
    flex-shrink: 0;
}

.ocr-wb-zone-prev {
    font-size: 0.7rem;
    color: var(--ocr-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ocr-wb-val-list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.76rem;
    color: var(--ocr-muted);
}

.ocr-wb-form-grid--1 {
    grid-template-columns: 1fr;
}

/* â€”â€” Barra inferior â€”â€” */
.ocr-wb-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2.2fr) minmax(200px, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 16px 12px;
    background: linear-gradient(180deg, #1a1a22, #121212);
    border-top: 1px solid var(--ocr-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1100px) {
    .ocr-wb-dock {
        grid-template-columns: 1fr;
        position: relative;
        margin-top: 16px;
        border-radius: 12px;
        border: 1px solid var(--ocr-border);
    }
}

.ocr-wb-dock__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.ocr-wb-dock-ico {
    font-size: 22px !important;
}

.ocr-wb-dock-ico--ok {
    color: var(--ocr-ok);
}

.ocr-wb-dock-meta {
    min-width: 0;
}

.ocr-wb-dock-file {
    font-size: 0.8rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ocr-wb-dock-sub {
    font-size: 0.72rem;
    color: var(--ocr-muted);
}

.ocr-wb-dock-ok {
    color: #6ee7b7;
    font-weight: 600;
}

.ocr-wb-dock__center {
    min-width: 0;
    display: flex;
    justify-content: center;
}

.ocr-wb-dock__right {
    display: flex;
    justify-content: flex-end;
}

.ocr-wb-dup-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.45);
    background: rgba(251, 191, 36, 0.1);
    max-width: 100%;
}

.ocr-wb-dup-strip__ico {
    color: var(--ocr-warn) !important;
    font-size: 22px !important;
    flex-shrink: 0;
}

.ocr-wb-dup-strip__body {
    flex: 1 1 140px;
    min-width: 0;
}

.ocr-wb-dup-strip__title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
}

.ocr-wb-dup-strip__txt {
    font-size: 0.72rem;
    color: var(--ocr-muted);
    margin-top: 2px;
}

.ocr-wb-doc-id {
    margin: 0;
    font-size: 0.8rem;
    color: var(--ocr-muted);
}

.ocr-wb-details-msg {
    margin-top: 10px;
}

/* Lienzo inyectado por JS */
.ocr-wb-stage  .planilla-reg-view,
.ocr-wb-stage  .planilla-reg-host {
    border-radius: 8px;
}

.ocr-wb-stage  .planilla-reg-view {
    min-height: 420px;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/Admin/VisualJornadas.razor.rz.scp.css */
.vj-root {
    --vj-bg: #0c1118;
    --vj-surface: #141b26;
    --vj-surface2: #1a2332;
    --vj-border: #2a3548;
    --vj-text: #e8edf5;
    --vj-muted: #8b98ad;
    --vj-accent: #f59e0b;
    --vj-primary: #3b82f6;
    --vj-ok: #22c55e;
    --vj-warn: #eab308;
    --vj-err: #ef4444;
    min-height: 100vh;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(59, 130, 246, 0.12), transparent),
        radial-gradient(900px 500px at 100% 0%, rgba(245, 158, 11, 0.08), transparent),
        var(--vj-bg);
    color: var(--vj-text);
    padding: 1.25rem clamp(1rem, 3vw, 2rem) 3rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.vj-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 40vh;
    color: var(--vj-muted);
}

.vj-spin {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--vj-border);
    border-top-color: var(--vj-accent);
    border-radius: 50%;
    animation: vj-spin-b-h5y8csx11d 0.75s linear infinite;
}

.vj-spin--sm {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.35rem;
}

@keyframes vj-spin-b-h5y8csx11d {
    to {
        transform: rotate(360deg);
    }
}

.vj-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--vj-border);
}

.vj-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vj-accent);
    margin-bottom: 0.35rem;
}

.vj-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
}

.vj-lead {
    margin: 0;
    max-width: 52ch;
    color: var(--vj-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.vj-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vj-banner {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.vj-banner--err {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

.vj-banner--ok {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.vj-layout {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 900px) {
    .vj-layout {
        grid-template-columns: 1fr;
    }
}

.vj-sidebar {
    background: var(--vj-surface);
    border: 1px solid var(--vj-border);
    border-radius: 12px;
    padding: 1rem;
    position: sticky;
    top: 1rem;
}

.vj-h2,
.vj-h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.vj-h2 {
    font-size: 1.05rem;
}

.vj-muted {
    margin: 0 0 0.75rem;
    color: var(--vj-muted);
    font-size: 0.85rem;
    line-height: 1.45;
}

.vj-hint {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: var(--vj-muted);
    line-height: 1.4;
}

.vj-team-list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
}

.vj-team-item {
    padding: 0.35rem 0.25rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--vj-border);
    color: var(--vj-text);
}

.vj-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vj-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: flex-end;
    background: var(--vj-surface);
    border: 1px solid var(--vj-border);
    border-radius: 12px;
    padding: 1rem;
}

.vj-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 140px;
}

.vj-field span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--vj-muted);
}

.vj-input,
.vj-textarea {
    background: var(--vj-surface2);
    border: 1px solid var(--vj-border);
    border-radius: 8px;
    color: var(--vj-text);
    padding: 0.45rem 0.6rem;
    font-size: 0.9rem;
}

.vj-input:focus,
.vj-textarea:focus {
    outline: none;
    border-color: var(--vj-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.vj-textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 0.5rem;
    font-family: ui-monospace, monospace;
    font-size: 0.82rem;
}

.vj-draft-pill {
    font-size: 0.78rem;
    color: var(--vj-muted);
    padding: 0.35rem 0.65rem;
    background: var(--vj-surface2);
    border-radius: 999px;
    border: 1px solid var(--vj-border);
    align-self: center;
}

.vj-draft-pill--busy {
    color: var(--vj-accent);
    border-color: rgba(245, 158, 11, 0.4);
}

.vj-grid-panels {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vj-panel {
    background: var(--vj-surface);
    border: 1px solid var(--vj-border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

.vj-panel--accent {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.vj-panel--err {
    border-color: rgba(239, 68, 68, 0.4);
}

.vj-panel--warn {
    border-color: rgba(234, 179, 8, 0.35);
}

.vj-cards {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.vj-reorder-hint {
    font-size: 0.78rem;
    margin-top: 0;
}

.vj-card {
    position: relative;
    background: var(--vj-surface2);
    border: 1px solid var(--vj-border);
    border-radius: 10px;
    padding: 0.75rem 2.25rem 0.75rem 4.25rem;
    border-left: 3px solid var(--vj-border);
}

.vj-card--ghost {
    opacity: 0.55;
    background: rgba(59, 130, 246, 0.12);
}

.vj-card--chosen {
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.45);
}

.vj-drag-handle {
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    padding: 0.2rem 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: var(--vj-muted);
    cursor: grab;
    font-size: 0.65rem;
    line-height: 1;
    letter-spacing: -0.12em;
}

.vj-drag-handle:active {
    cursor: grabbing;
}

.vj-drag-handle:hover {
    color: var(--vj-accent);
    background: rgba(245, 158, 11, 0.08);
}

.vj-card--ok {
    border-left-color: var(--vj-ok);
    border-color: rgba(34, 197, 94, 0.22);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.06);
}

.vj-card--warn {
    border-left-color: var(--vj-warn);
    border-color: rgba(234, 179, 8, 0.28);
    box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.08);
}

.vj-card--err {
    border-left-color: var(--vj-err);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.08);
}

.vj-mu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.65rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--vj-border);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--vj-muted);
}

.vj-mu-leg {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vj-mu-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vj-mu-leg--ok .vj-mu-dot {
    background: var(--vj-ok);
}

.vj-mu-leg--warn .vj-mu-dot {
    background: var(--vj-warn);
}

.vj-mu-leg--err .vj-mu-dot {
    background: var(--vj-err);
}

.vj-mu-leg--nv .vj-mu-dot {
    background: #64748b;
}

.vj-r-badge {
    position: absolute;
    top: -5px;
    right: 2.35rem;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #ea580c);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
    z-index: 2;
}

.vj-card-match-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.35rem 0.5rem;
    align-items: center;
    margin-top: 0.15rem;
}

.vj-card-side {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.vj-card-side--away {
    flex-direction: row-reverse;
    text-align: right;
}

.vj-card-av {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    flex-shrink: 0;
    background: linear-gradient(135deg, #60a5fa, #38bdf8);
}

.vj-card-av--away {
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
}

.vj-card-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vj-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vj-card-vs-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.vj-card-ok-ico {
    font-size: 0.8rem;
    color: var(--vj-ok);
}

.vj-card-warn-ico {
    font-size: 0.85rem;
    color: var(--vj-warn);
}

.vj-card-val-strip {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem 0.5rem;
}

.vj-val-pill {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
}

.vj-val-pill--muted {
    color: var(--vj-muted);
    border-color: rgba(148, 163, 184, 0.25);
}

.vj-val-meta {
    font-size: 0.65rem;
    color: var(--vj-muted);
    font-weight: 600;
    text-align: right;
    flex: 1;
    min-width: 0;
}

.vj-val-sep {
    opacity: 0.45;
    margin: 0 0.15rem;
}

.vj-card-time {
    font-family: ui-monospace, monospace;
    font-size: 0.8rem;
    color: var(--vj-accent);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.vj-card-teams {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.88rem;
}

.vj-team-pill {
    background: rgba(59, 130, 246, 0.15);
    color: #bfdbfe;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.vj-team-pill--away {
    background: rgba(148, 163, 184, 0.12);
    color: #e2e8f0;
}

.vj-vs {
    color: var(--vj-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.vj-card-meta {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: var(--vj-muted);
}

.vj-card-reorder {
    position: absolute;
    left: 1.85rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.vj-reorder-btn {
    width: 1.65rem;
    height: 1.35rem;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1;
    border: 1px solid var(--vj-border);
    border-radius: 4px;
    background: var(--vj-surface);
    color: var(--vj-muted);
    cursor: pointer;
}

.vj-reorder-btn:hover:not(:disabled) {
    color: var(--vj-accent);
    border-color: rgba(245, 158, 11, 0.45);
}

.vj-reorder-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.vj-icon-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.45rem;
    background: transparent;
    border: none;
    color: var(--vj-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0.25rem;
    border-radius: 4px;
}

.vj-icon-btn:hover {
    color: var(--vj-err);
    background: rgba(239, 68, 68, 0.1);
}

.vj-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.vj-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.vj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.vj-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.vj-btn--primary {
    background: var(--vj-primary);
    color: #fff;
}

.vj-btn--primary:hover:not(:disabled) {
    filter: brightness(1.08);
}

.vj-btn--secondary {
    background: var(--vj-surface2);
    color: var(--vj-text);
    border-color: var(--vj-border);
}

.vj-btn--secondary:hover:not(:disabled) {
    border-color: var(--vj-muted);
}

.vj-btn--accent {
    background: linear-gradient(135deg, #d97706, var(--vj-accent));
    color: #0c1118;
}

.vj-btn--accent:hover:not(:disabled) {
    filter: brightness(1.05);
}

.vj-btn--ghost {
    background: transparent;
    color: var(--vj-muted);
    border-color: var(--vj-border);
}

.vj-btn--ghost:hover:not(:disabled) {
    color: var(--vj-text);
    border-color: var(--vj-muted);
}

.vj-list-err {
    margin: 0;
    padding-left: 1.1rem;
    color: #fecaca;
    font-size: 0.88rem;
}

.vj-panel ul:not(.vj-list-err) {
    margin: 0;
    padding-left: 1.1rem;
    color: #fef08a;
    font-size: 0.88rem;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/OcrInteligente.razor.rz.scp.css */
/* OCR inteligente â€” asistente guiado (separado del workbench /admin/ocr-documento) */
.ocr-int {
    --int-bg: #121212;
    --int-panel: #1e1e26;
    --int-border: #2e3240;
    --int-text: #ececf1;
    --int-muted: #9ca3af;
    --int-accent: #3b82f6;
    --int-ok: #10b981;
    font-family: "Inter", system-ui, sans-serif;
    min-height: 100vh;
    background: var(--int-bg);
    color: var(--int-text);
    padding: 16px 18px 24px;
    box-sizing: border-box;
}

.ocr-int__head {
    max-width: 1280px;
    margin: 0 auto 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.ocr-int__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ocr-int__sub {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: var(--int-muted);
    max-width: 36rem;
}

.ocr-int__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ocr-int__steps {
    max-width: 1280px;
    margin: 0 auto 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.ocr-int__step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    border: 1px solid var(--int-border);
    background: var(--int-panel);
    color: var(--int-muted);
}

.ocr-int__step--on {
    border-color: #6366f1;
    color: #e0e7ff;
    background: rgba(99, 102, 241, 0.15);
}

.ocr-int__step--done {
    border-color: rgba(16, 185, 129, 0.45);
    color: #a7f3d0;
}

.ocr-int__body {
    max-width: 1280px;
    margin: 0 auto;
    min-height: min(56vh, 540px);
    box-sizing: border-box;
}

.ocr-int__alert {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.ocr-int__alert--err {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

.ocr-int__alert--ok {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #a7f3d0;
}

.ocr-int__card {
    background: var(--int-panel);
    border: 1px solid var(--int-border);
    border-radius: 12px;
    padding: 18px;
    max-width: 520px;
    margin: 0 auto;
}

.ocr-int__grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 16px;
    align-items: start;
}

@media (max-width: 960px) {
    .ocr-int__grid {
        grid-template-columns: 1fr;
    }
}

.ocr-int__canvas-wrap {
    background: var(--int-panel);
    border: 1px solid var(--int-border);
    border-radius: 12px;
    padding: 10px;
    min-height: 420px;
}

.ocr-int__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.ocr-int__stage {
    min-height: 400px;
    border-radius: 8px;
    background: #0f1118;
    border: 1px solid var(--int-border);
}

.ocr-int__stage  .planilla-reg-view {
    min-height: 380px;
    border-radius: 8px;
}

.ocr-int__panel {
    background: var(--int-panel);
    border: 1px solid var(--int-border);
    border-radius: 12px;
    padding: 14px;
    position: sticky;
    top: 12px;
}

.ocr-int__panel-h {
    margin: 0 0 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--int-muted);
}

.ocr-int__progress {
    font-size: 0.78rem;
    color: var(--int-accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.ocr-int__form label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--int-muted);
    margin-bottom: 10px;
}

.ocr-int__form input {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--int-border);
    background: #0f1118;
    color: var(--int-text);
    font-size: 0.88rem;
}

.ocr-int__field-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--int-muted);
    margin-bottom: 6px;
}

.ocr-int__liga-box {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--int-border);
    background: #0f1118;
}

.ocr-int__liga-nombre {
    margin: 4px 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.ocr-int__search {
    width: 100%;
    margin-top: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--int-border);
    background: #0f1118;
    color: var(--int-text);
    font-size: 0.82rem;
}

.ocr-int__search::placeholder {
    color: #6b7280;
}

.ocr-int__select {
    width: 100%;
    margin-top: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--int-border);
    background: #0f1118;
    color: var(--int-text);
    font-size: 0.82rem;
}

.ocr-int__ocr-wait {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.ocr-int__ocr-wait-msg {
    margin: 0;
    max-width: 28rem;
    line-height: 1.45;
}

.ocr-int__btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.ocr-int__btn {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--int-border);
    background: #2a2f3d;
    color: var(--int-text);
    cursor: pointer;
}

.ocr-int__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ocr-int__btn--primary {
    background: linear-gradient(180deg, var(--int-accent), #2563eb);
    border-color: #1d4ed8;
    color: #fff;
}

.ocr-int__btn--ok {
    background: linear-gradient(180deg, #10b981, #059669);
    border-color: #047857;
    color: #fff;
}

.ocr-int__btn--ghost {
    background: transparent;
    color: #93c5fd;
    border-color: #475569;
}

.ocr-int__hint {
    font-size: 0.75rem;
    color: var(--int-muted);
    margin: 8px 0 0;
}

.ocr-int__spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--int-muted);
}

.ocr-int__spinner::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--int-border);
    border-top-color: var(--int-accent);
    animation: ocr-int-spin-b-h93lnyo6hw 0.7s linear infinite;
}

@keyframes ocr-int-spin-b-h93lnyo6hw {
    to {
        transform: rotate(360deg);
    }
}

/* â”€â”€ Auto-process banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__auto-banner {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
}

.ocr-int__auto-banner__text {
    margin: 0 0 10px;
    font-size: 0.82rem;
    color: var(--int-text);
    line-height: 1.4;
}

/* â”€â”€ Confidence review â€” summary chips â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__conf-summary {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ocr-int__conf-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.ocr-int__conf-chip--verde   { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.35); }
.ocr-int__conf-chip--amarillo { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.35); }
.ocr-int__conf-chip--rojo    { background: rgba(239,68,68,.15);  color: #f87171; border: 1px solid rgba(239,68,68,.35); }

/* â”€â”€ Confidence review â€” section heading â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__conf-section-hd {
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6366f1;
    margin: 14px 0 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(99,102,241,.2);
}

/* â”€â”€ Confidence review â€” field rows â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__form .ocr-int__conf-row {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.7rem;
}

.ocr-int__conf-label {
    min-width: 64px;
    font-size: 0.7rem;
    color: var(--int-muted);
    flex-shrink: 0;
}

.ocr-int__conf-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.ocr-int__conf-badge--verde   { background: rgba(16,185,129,.2); color: #34d399; border: 1px solid rgba(16,185,129,.4); }
.ocr-int__conf-badge--amarillo { background: rgba(245,158,11,.2); color: #fbbf24; border: 1px solid rgba(245,158,11,.4); }
.ocr-int__conf-badge--rojo    { background: rgba(239,68,68,.2);  color: #f87171; border: 1px solid rgba(239,68,68,.4); }

.ocr-int__form .ocr-int__conf-row input {
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
    font-size: 0.82rem;
}

/* â”€â”€ Large confirm button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__btn--lg {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.92rem;
    justify-content: center;
}

/* â”€â”€ Tab bar (Formulario / JSON) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__tab-bar {
    display: flex;
    gap: 2px;
    background: #0a0c14;
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 10px;
    border: 1px solid var(--int-border);
}

.ocr-int__tab {
    flex: 1;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--int-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}

.ocr-int__tab--on {
    background: var(--int-panel);
    color: var(--int-text);
    border: 1px solid var(--int-border);
}

/* â”€â”€ Scrollable form in review panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__form--scroll {
    overflow-y: auto;
    max-height: calc(100vh - 430px);
    padding-right: 2px;
}

/* â”€â”€ JSON editor textarea â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__json-editor {
    width: 100%;
    min-height: 260px;
    max-height: calc(100vh - 400px);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--int-border);
    background: #080a10;
    color: #7dd3fc;
    font-family: "Consolas", "Fira Mono", "Cascadia Code", monospace;
    font-size: 0.76rem;
    line-height: 1.55;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
}

.ocr-int__json-editor:focus {
    border-color: var(--int-accent);
}

.ocr-int__json-error {
    margin: 4px 0 0;
    font-size: 0.7rem;
    color: #f87171;
    line-height: 1.4;
}

/* â”€â”€ Validation blocks â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__val-block {
    border-radius: 8px;
    padding: 8px 10px;
    margin-top: 10px;
    font-size: 0.73rem;
    line-height: 1.5;
}

.ocr-int__val-block p { margin: 0; }
.ocr-int__val-block p + p { margin-top: 3px; }

.ocr-int__val-block--err {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.ocr-int__val-block--warn {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fde68a;
}

/* â”€â”€ Review action area â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ocr-int__rev-actions {
    margin-top: 14px;
}

.ocr-int__rev-secondary {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.ocr-int__rev-secondary .ocr-int__btn {
    flex: 1;
    font-size: 0.78rem;
}
/* _content/AppBasquet.Web.Client.Admin/Pages/UsersAdmin.razor.rz.scp.css */
.users-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.small-btn {
    border: 1px solid #3b3b4c;
    background: #181824;
    color: #e8e8f0;
    border-radius: 8px;
    padding: 6px 8px;
    margin: 2px;
    font-size: 12px;
    cursor: pointer;
}

.small-btn:hover {
    border-color: #8c56f9;
}

.users-sub {
    font-size: 12px;
    color: #a8a8bc;
    margin-top: 4px;
    max-width: 220px;
    line-height: 1.3;
}

.users-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.users-pill--ok {
    background: rgba(52, 211, 153, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.users-pill--muted {
    background: rgba(148, 163, 184, 0.12);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.users-pill--warn {
    background: rgba(251, 191, 36, 0.12);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.users-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
}

.users-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, calc(100vw - 24px));
    max-height: min(80vh, 640px);
    overflow: auto;
    z-index: 1001;
    background: #12121a;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.users-modal h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.users-modal-user {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #b4b4c8;
}

.users-modal-lbl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.users-modal-search {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.users-modal-empty {
    color: #8888a0;
    font-size: 14px;
}

.users-modal-footer {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.users-candidatos {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 360px;
    overflow: auto;
}

.users-candidato {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 8px;
    border-bottom: 1px solid #232334;
    font-size: 14px;
}

.users-candidato--locked {
    opacity: 0.65;
}

.users-candidato-id {
    margin-left: 8px;
    font-size: 12px;
    color: #7c7c94;
}

.users-candidato-curp {
    display: block;
    font-size: 12px;
    color: #8b8ba3;
    margin-top: 4px;
}

.users-candidato-actions {
    flex-shrink: 0;
}

/* â€”â€”â€” Panel / tabla â€”â€”â€” */

.users-admin-page {
    padding-bottom: 2rem;
}

.users-page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    gap: 12px;
    color: #b4b4c8;
}

.users-page-loader__spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #2a2a3a;
    border-top-color: #8c56f9;
    animation: users-spin-b-sovtrem6rh 0.8s linear infinite;
}

@keyframes users-spin-b-sovtrem6rh {
    to { transform: rotate(360deg); }
}

.users-admin-hero .users-admin-sub {
    margin: 0;
    font-size: 13px;
    color: #8b8ba3;
}

.users-count-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(140, 86, 249, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(140, 86, 249, 0.35);
}

.users-filter-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.users-filter-field--narrow {
    max-width: 120px;
}

.users-filter-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7c7c94;
}

.users-table-card {
    position: relative;
}

.users-table-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #9ca3af;
}

.users-table-meta {
    flex: 1;
    min-width: 140px;
}

.users-inline-loader {
    display: inline-block;
    animation: users-spin-b-sovtrem6rh 1s linear infinite;
    font-size: 1.1rem;
    color: #8c56f9;
}

.users-pager {
    display: flex;
    align-items: center;
    gap: 8px;
}

.users-pager-label {
    font-size: 12px;
    color: #a8a8bc;
}

.users-table-scroll {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #232334;
    scrollbar-color: #4b4b62 #15151e;
}

.users-data-table {
    min-width: 960px;
    border-collapse: separate;
    border-spacing: 0;
}

.users-data-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #16161f;
    box-shadow: 0 1px 0 #2a2a3a;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
    white-space: nowrap;
}

.users-data-row:hover td {
    background: rgba(140, 86, 249, 0.06);
}

.users-data-table.is-dimmed tbody {
    opacity: 0.45;
    pointer-events: none;
}

.users-mono {
    font-family: ui-monospace, monospace;
    font-size: 12px;
}

.users-email {
    font-size: 12px;
    color: #b4b4c8;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.users-cell-tags {
    font-size: 12px;
    color: #a8a8bc;
    max-width: 220px;
    line-height: 1.35;
}

.users-actions-cell {
    white-space: nowrap;
}

.users-icon-btn {
    border: 1px solid #3b3b4c;
    background: #181824;
    border-radius: 8px;
    padding: 4px 8px;
    margin: 2px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
}

.users-icon-btn:hover {
    border-color: #8c56f9;
    background: #1f1f2e;
}

.users-role-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.users-role-pill--admin {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.users-role-pill--player {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.users-role-pill--league {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.users-role-pill--academy {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.users-role-pill--coach {
    background: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.35);
}

.users-role-pill--def {
    background: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.users-role-pill--muted {
    background: rgba(100, 116, 139, 0.12);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.25);
}

.users-status-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.users-status-pill--on {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.users-status-pill--off {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.users-skeleton-row td {
    padding: 12px 8px;
}

.users-skeleton-cell {
    display: block;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #1e1e2a 0%, #2a2a3a 50%, #1e1e2a 100%);
    background-size: 200% 100%;
    animation: users-shimmer-b-sovtrem6rh 1.2s ease-in-out infinite;
}

@keyframes users-shimmer-b-sovtrem6rh {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.users-empty-cell {
    padding: 48px 16px !important;
    border: none !important;
}

.users-empty {
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}

.users-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    opacity: 0.85;
}

.users-empty-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.users-empty-text {
    margin: 8px 0 0;
    font-size: 14px;
    color: #8b8ba3;
}

.users-muted {
    color: #8b8ba3;
    font-size: 14px;
}

.users-modal--wide {
    width: min(640px, calc(100vw - 24px));
}

.users-modal--narrow {
    width: min(400px, calc(100vw - 24px));
}

.users-modal-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7c7c94;
    margin: 14px 0 8px;
}

.users-modal-row {
    margin-bottom: 10px;
}

.users-scope-chips {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.users-scope-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #1a1a26;
    border: 1px solid #32324a;
    font-size: 13px;
}

.users-chip-remove {
    border: none;
    background: transparent;
    color: #f87171;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0 2px;
}

.users-chip-remove:hover {
    color: #fecaca;
}

.users-scope-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
}

.users-scope-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #232334;
    font-size: 14px;
}

.users-scope-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
}

.users-searchable-list {
    max-height: 220px;
    overflow: auto;
    margin-top: 8px;
    border: 1px solid #2a2a3a;
    border-radius: 8px;
    background: #0e0e14;
}

.users-searchable-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #1f1f2a;
    background: transparent;
    color: #e8e8f0;
    font-size: 13px;
    cursor: pointer;
}

.users-searchable-item:last-child {
    border-bottom: none;
}

.users-searchable-item:hover {
    background: rgba(140, 86, 249, 0.08);
}

.users-searchable-item.is-selected {
    background: rgba(140, 86, 249, 0.18);
}

.users-searchable-id {
    font-size: 11px;
    color: #7c7c94;
    font-family: ui-monospace, monospace;
}

.users-searchable-name {
    flex: 1;
    padding-right: 8px;
}

/* _content/AppBasquet.Web.Client.Shared/Components/AcademiaPlayerCard.razor.rz.scp.css */
.apc-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #27272a;
    background: linear-gradient(165deg, #18181b 0%, #121215 100%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    color: inherit;
    font: inherit;
    transition: border-color 0.15s, transform 0.12s;
}

.apc-card:hover:not(:disabled) {
    border-color: rgba(245, 158, 11, 0.45);
    transform: translateY(-2px);
}

.apc-card:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.apc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: #27272a;
    border: 1px solid #3f3f46;
    display: grid;
    place-items: center;
}

.apc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apc-initial {
    font-size: 1.35rem;
    font-weight: 900;
    color: #f59e0b;
}

.apc-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.apc-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fafafa;
    line-height: 1.2;
}

.apc-pos {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a78bfa;
}

.apc-teams {
    margin: 0;
    padding: 0 0 0 1rem;
    font-size: 0.75rem;
    color: #a1a1aa;
    line-height: 1.35;
}

.apc-more {
    font-size: 0.68rem;
    color: #71717a;
    font-weight: 600;
}

.apc-fallback {
    font-size: 0.75rem;
    color: #71717a;
}

.apc-privacy {
    font-size: 0.75rem;
    color: #71717a;
    font-weight: 600;
}

.apc-arrow {
    align-self: center;
    color: #3f3f46;
    font-size: 1.35rem !important;
    flex-shrink: 0;
}

.apc-card:hover:not(:disabled) .apc-arrow {
    color: #f59e0b;
}
/* _content/AppBasquet.Web.Client.Shared/Components/ApiEnvironmentSelector.razor.rz.scp.css */
.api-env-toolbar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.api-env-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
}

.api-env-badge--local {
    background: #2e7d32;
}

.api-env-badge--prod {
    background: #c62828;
}

.api-env-badge--staging {
    background: #ef6c00;
}

.api-env-select {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    max-width: 220px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* _content/AppBasquet.Web.Client.Shared/Components/ContenidoSocialAdmin.razor.rz.scp.css */
.csa-wrap {
    background: #13131e;
    border: 1px solid #2a2a38;
    border-radius: 14px;
    padding: 16px;
    margin: 16px 0;
}

.csa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.csa-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #e5e5e5;
}
.csa-counter {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6666a0;
    background: rgba(255,255,255,.06);
    padding: 3px 9px;
    border-radius: 20px;
}

.csa-error {
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.3);
    color: #fca5a5;
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.csa-success {
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.3);
    color: #86efac;
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.csa-loading { display: flex; justify-content: center; padding: 12px 0; }
.csa-empty {
    font-size: 0.8rem;
    color: #6666a0;
    margin: 0 0 14px;
}

.csa-hint {
    font-size: 0.72rem;
    line-height: 1.45;
    color: #8b8bb0;
    margin: 8px 0 0;
}
.csa-hint code {
    font-size: 0.68rem;
    background: rgba(255,255,255,.06);
    padding: 1px 5px;
    border-radius: 4px;
}

/* â”€â”€ List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csa-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.csa-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a28;
    border: 1px solid #2e2e3e;
    border-radius: 10px;
    padding: 8px 10px;
}
.csa-item.is-live { border-color: rgba(239,68,68,.45); }

.csa-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.csa-item-platform {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6666a0;
}
.csa-item-platform.csa-tiktok    { color: #f9c3d5; }
.csa-item-platform.csa-youtube   { color: #f87171; }
.csa-item-platform.csa-instagram { color: #f0abfc; }

.csa-item-title {
    font-size: 0.8rem;
    color: #c4c4d0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.csa-item-expires {
    font-size: 0.68rem;
    color: #55556a;
}

.csa-item-actions { display: flex; gap: 6px; flex-shrink: 0; }

.csa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #2e2e3e;
    background: transparent;
    color: #9999b0;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .14s, color .14s;
}
.csa-btn:hover { background: rgba(255,255,255,.08); color: #e5e5e5; }
.csa-btn-del:hover { background: rgba(239,68,68,.15); color: #f87171; border-color: rgba(239,68,68,.3); }
.csa-btn:disabled { opacity: .45; cursor: not-allowed; }

/* â”€â”€ Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csa-form {
    border-top: 1px solid #2a2a38;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.csa-form-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #9999b0;
    margin-bottom: 2px;
}
.csa-field { display: flex; }
.csa-input {
    width: 100%;
    background: #0e0e18;
    border: 1px solid #2e2e3e;
    border-radius: 8px;
    padding: 8px 11px;
    color: #e5e5e5;
    font-size: 0.82rem;
    outline: none;
    transition: border-color .14s;
}
.csa-input:focus { border-color: #7c5cfc; }
.csa-input::placeholder { color: #44445a; }
.csa-input:disabled { opacity: .5; cursor: not-allowed; }
.csa-form-row { display: flex; gap: 8px; }
.csa-input-half { flex: 1; min-width: 0; }
.csa-form-checks { align-items: center; }
.csa-check {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #9999b0;
    cursor: pointer;
    user-select: none;
}
.csa-check input[type="checkbox"] { accent-color: #f97316; }

.csa-submit-btn {
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .14s;
    align-self: flex-start;
}
.csa-submit-btn:disabled { opacity: .45; cursor: not-allowed; }
.csa-submit-btn:hover:not(:disabled) { opacity: .88; }

.csa-limit-msg {
    font-size: 0.78rem;
    color: #6666a0;
    padding-top: 10px;
    border-top: 1px solid #2a2a38;
    margin: 0;
}
/* _content/AppBasquet.Web.Client.Shared/Components/ContenidoSocialViewer.razor.rz.scp.css */
/* â”€â”€ SecciÃ³n â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-section {
    margin: 20px 0 8px;
}
.csv-header {
    margin-bottom: 10px;
}
.csv-eyebrow {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a78bfa;
}
.csv-section--empty .csv-empty-msg {
    margin: 0;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.45);
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.csv-loading {
    display: flex;
    justify-content: center;
    padding: 16px 0;
}
.csv-spinner {
    width: 22px;
    height: 22px;
}

/* Misma â€œhuellaâ€ que el carrusel cargado: menos CLS que solo un spinner. */
.csv-section--loading {
    margin: 20px 0 8px;
    min-height: 132px;
}
.csv-loading-skel {
    display: flex;
    gap: 12px;
    overflow: hidden;
    padding-bottom: 8px;
    min-height: 120px;
}
.csv-loading-skel--compact {
    min-height: 108px;
}
.csv-skel-card {
    flex: 0 0 280px;
    height: 158px;
    border-radius: 14px;
    box-sizing: border-box;
}
.csv-skel-card--narrow {
    flex-basis: 200px;
}
@media (max-width: 480px) {
    .csv-skel-card {
        flex-basis: 82vw;
        max-width: 280px;
    }
    .csv-loading-skel--compact .csv-skel-card {
        flex: 0 0 52vw;
        height: 95px;
        max-width: 200px;
    }
}
.csv-loading-skel--compact .csv-skel-card {
    flex: 0 0 168px;
    height: 95px;
    border-radius: 12px;
}

/* â”€â”€ Carrusel (desktop): flechas estilo TikTok embed docs â€”â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-carousel-shell {
    position: relative;
}
.csv-carousel-shell--nav {
    padding: 0 6px;
}
@media (min-width: 640px) {
    .csv-carousel-shell--nav {
        padding: 0 40px;
    }
}
.csv-carousel-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
    background: rgba(30, 30, 40, 0.72);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    transition: background 0.15s, transform 0.15s;
}
.csv-carousel-nav:hover {
    background: rgba(50, 50, 68, 0.88);
}
.csv-carousel-nav:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 2px;
}
.csv-carousel-nav--prev { left: 0; }
.csv-carousel-nav--next { right: 0; }
@media (min-width: 640px) {
    .csv-carousel-shell--nav .csv-carousel-nav {
        display: flex;
    }
}

/* â”€â”€ Track horizontal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-cards-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
}
.csv-cards-track::-webkit-scrollbar { display: none; }

/* â”€â”€ Compact (portada liga): tarjetas mÃ¡s bajas y estrechas â”€â”€â”€â”€â”€â”€â”€ */
.csv-cards-track--compact {
    gap: 8px;
}
.csv-card--compact {
    flex: 0 0 168px;
    border-radius: 12px;
}
.csv-embed-wrap--compact {
    aspect-ratio: 16/9;
    max-height: 88px;
}
.csv-compact-yt-bar {
    padding: 4px 8px 0;
    text-align: right;
}
.csv-open-link-mini {
    font-size: 0.65rem;
    font-weight: 700;
    color: #93c5fd;
    text-decoration: none;
}
.csv-open-link-mini:hover { text-decoration: underline; }
.csv-preview--compact {
    aspect-ratio: 16/9;
    max-height: 88px;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.csv-preview--compact:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 2px;
}
.csv-thumb-fallback--compact .csv-platform-icon--compact {
    font-size: 1.35rem;
}
.csv-preview-overlay--compact {
    padding: 6px;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}
.csv-open-pill {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.csv-card-body--compact {
    padding: 6px 8px 4px;
}
.csv-card-body--compact .csv-card-title {
    font-size: 0.72rem;
    -webkit-line-clamp: 1;
    margin: 0;
}
.csv-card-footer--compact {
    padding: 4px 8px 8px;
}
.csv-platform-tag--compact {
    font-size: 0.58rem;
    padding: 2px 6px;
}

/* â”€â”€ Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-card {
    flex: 0 0 280px;
    background: #13131e;
    border: 1px solid #2a2a38;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .18s;
}
.csv-card:hover { border-color: #4e4e6a; }
.csv-card.is-live { border-color: rgba(239,68,68,.55); }
.csv-card.is-featured { border-color: rgba(249,115,22,.45); }

/* â”€â”€ Live badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: rgba(239,68,68,.9);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 3px 8px;
    border-radius: 6px;
}

/* â”€â”€ YouTube / TikTok embed â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}
/* TikTok es vertical: la tarjeta se hace mÃ¡s estrecha y el iframe usa 9/16 */
.csv-embed-wrap--tiktok {
    aspect-ratio: 9/16;
    max-height: min(480px, 70vh);
}
/* Vista â€œwidget pequeÃ±oâ€ en tablet/desktop (similar a TikTok doc Example 5) */
@media (min-width: 640px) {
    .csv-card--tiktok:not(.csv-card--compact) {
        flex: 0 0 210px;
        max-width: 210px;
    }
    .csv-card--tiktok:not(.csv-card--compact) .csv-embed-wrap--tiktok {
        max-height: min(320px, 48vh);
    }
}
@media (min-width: 1024px) {
    .csv-card--tiktok:not(.csv-card--compact) {
        flex: 0 0 200px;
        max-width: 200px;
    }
    .csv-card--tiktok:not(.csv-card--compact) .csv-embed-wrap--tiktok {
        max-height: min(300px, 44vh);
    }
}
.csv-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* â”€â”€ Non-embed preview â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #0e0e18;
    overflow: hidden;
}
.csv-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* width/height en el HTML reservan ratio 16:9 dentro del contenedor con aspect-ratio */
}
.csv-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.csv-platform-icon {
    font-size: 2.2rem;
    opacity: .6;
}
.csv-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 10px;
}
.csv-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .16s;
    white-space: nowrap;
}
.csv-open-btn:hover { background: rgba(255,255,255,.2); }

/* â”€â”€ Card body â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-card-body {
    padding: 10px 12px 6px;
    flex: 1;
}
.csv-card-title {
    font-size: 0.83rem;
    font-weight: 700;
    color: #e5e5e5;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.csv-card-desc {
    font-size: 0.74rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* â”€â”€ Card footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-card-footer {
    padding: 6px 12px 10px;
    display: flex;
    align-items: center;
}
.csv-platform-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6666a0;
    padding: 2px 7px;
    border-radius: 5px;
    background: rgba(255,255,255,.05);
}
.csv-platform-tag.csv-tiktok    { color: #f9c3d5; }
.csv-platform-tag.csv-youtube   { color: #f87171; }
.csv-platform-tag.csv-instagram { color: #f0abfc; }
.csv-platform-tag.csv-facebook  { color: #93c5fd; }

/* â”€â”€ TikTok click-to-play (compacto) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.csv-tiktok-play-btn {
    display: block;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 240px;
    position: relative;
    padding: 0;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}
.csv-tiktok-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #010101 0%, #1a0a14 60%, #010101 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.csv-tiktok-logo {
    font-size: 2.4rem;
    color: #f9c3d5;
    opacity: .7;
}
.csv-tiktok-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.32);
    transition: background .15s;
}
.csv-tiktok-play-btn:hover .csv-tiktok-play-overlay,
.csv-tiktok-play-btn:focus-visible .csv-tiktok-play-overlay {
    background: rgba(0,0,0,.18);
}
.csv-play-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #000;
    font-size: 1.1rem;
    padding-left: 3px; /* Ã³ptico para el triÃ¡ngulo */
    box-shadow: 0 2px 16px rgba(0,0,0,.5);
    transition: transform .15s, background .15s;
}
.csv-tiktok-play-btn:hover .csv-play-circle {
    transform: scale(1.08);
    background: #fff;
}
/* Cuando el TikTok se activa en compacto, usa embed-wrap--tiktok reducida */
.csv-card--compact .csv-embed-wrap--tiktok {
    aspect-ratio: 9/16;
    max-height: 300px;
}

/* â”€â”€ Responsive: stack single column on narrow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
    .csv-card { flex: 0 0 82vw; }
    .csv-card--compact { flex: 0 0 52vw; max-width: 200px; }
}
/* _content/AppBasquet.Web.Client.Shared/Components/GlobalSearchBar.razor.rz.scp.css */
/* â”€â”€ Global Search Bar â”€â”€ */

.gsearch-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}

/* Input row */
.gsearch-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px 12px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.gsearch-wrap--active .gsearch-input-row,
.gsearch-input-row:focus-within {
    border-color: rgba(130,71,229,0.5);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(130,71,229,0.12);
}

.gsearch-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    opacity: 0.55;
}

.gsearch-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    min-width: 0;
}

.gsearch-input::placeholder { color: #555; }

/* Clear button */
.gsearch-clear {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 0.75rem;
    padding: 2px 4px;
    border-radius: 4px;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.15s;
}
.gsearch-clear:hover { color: #aaa; }

/* Backdrop */
.gsearch-backdrop {
    position: fixed;
    inset: 0;
    z-index: 900;
}

/* Dropdown */
.gsearch-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: linear-gradient(158deg, #18182a 0%, #0e0e1a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.65), 0 0 0 1px rgba(130,71,229,0.1);
    z-index: 901;
    overflow: hidden;
    animation: gsearch-drop-b-a3zc38jvv6 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 70dvh;
    overflow-y: auto;
}

@keyframes gsearch-drop-b-a3zc38jvv6 {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* States */
.gsearch-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 16px;
    font-size: 0.82rem;
    color: #555;
}

.gsearch-state--empty { color: #555; }

/* Spinner */
.gsearch-spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(130,71,229,0.2);
    border-top-color: var(--accent, #8247e5);
    border-radius: 50%;
    animation: gspin-b-a3zc38jvv6 0.7s linear infinite;
}
@keyframes gspin-b-a3zc38jvv6 { to { transform: rotate(360deg); } }

/* Section */
.gsearch-section { padding: 6px 0; }
.gsearch-section + .gsearch-section {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.gsearch-section-head {
    padding: 8px 16px 4px;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #444;
}

/* Item */
.gsearch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 9px 16px;
    background: transparent;
    border: none;
    color: #ddd;
    cursor: pointer;
    text-align: left;
    transition: background 0.12s;
}
.gsearch-item:hover, .gsearch-item:focus-visible {
    background: rgba(130,71,229,0.1);
    outline: none;
}

.gsearch-item-logo {
    width: 28px; height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    flex-shrink: 0;
}

.gsearch-item-icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.gsearch-item-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.gsearch-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gsearch-item-sub {
    font-size: 0.72rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gsearch-item-arrow {
    font-size: 1rem;
    color: #333;
    flex-shrink: 0;
    transition: color 0.12s, transform 0.12s;
}
.gsearch-item:hover .gsearch-item-arrow { color: #7c3aed; transform: translateX(2px); }

/* Footer */
.gsearch-footer {
    padding: 6px 10px 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.gsearch-footer-btn {
    width: 100%;
    padding: 10px;
    background: rgba(130,71,229,0.08);
    border: 1px solid rgba(130,71,229,0.2);
    border-radius: 10px;
    color: #a78bfa;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
}
.gsearch-footer-btn:hover { background: rgba(130,71,229,0.15); }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 900px) {
    .gsearch-wrap {
        max-width: 100%;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/HomeHeroCarousel.razor.rz.scp.css */
    .home-hero-carousel {
        position: relative;
        min-height: min(52vh, 480px);
        background: linear-gradient(180deg, #06060c 0%, #030308 100%);
    }
    .home-hero-carousel--empty { min-height: 280px; }

    .home-hero-carousel--compact {
        min-height: min(36vh, 340px);
    }
    .home-hero-carousel--compact .home-hero-loading,
    .home-hero-carousel--compact .home-hero-track,
    .home-hero-carousel--compact .home-hero-slide,
    .home-hero-carousel--compact .home-hero-slide-content {
        min-height: min(36vh, 340px);
    }
    .home-hero-carousel--compact .home-hero-track > .home-hero-slide:not(:first-child) {
        contain-intrinsic-size: 100vw 340px;
    }
    .home-hero-carousel--compact .home-hero-edit-title {
        font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    }
    .home-hero-carousel--compact .home-hero-slide-shade {
        background:
            linear-gradient(105deg, rgba(4, 5, 12, 0.97) 0%, rgba(5, 6, 14, 0.88) 42%, rgba(3, 4, 10, 0.72) 100%),
            radial-gradient(ellipse 80% 60% at 20% 50%, rgba(130, 71, 229, 0.14) 0%, transparent 55%);
    }
    .home-hero-loading {
        display: flex; gap: 10px; justify-content: center; align-items: center;
        min-height: min(52vh, 480px);
    }
    .home-hero-loading span {
        width: 12px; height: 12px; border-radius: 50%;
        background: rgba(196, 181, 253, 0.55);
        animation: home-hero-pulse-b-6eiprq4g3s 1s ease-in-out infinite;
    }
    .home-hero-loading span:nth-child(2) { animation-delay: .12s; }
    .home-hero-loading span:nth-child(3) { animation-delay: .24s; }
    @keyframes home-hero-pulse-b-6eiprq4g3s { 0%,100% { opacity: .35; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

    .home-hero-fallback {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        text-align: center;
        min-height: min(52vh, 440px);
        padding: 32px 20px;
        background: radial-gradient(ellipse at 50% 0%, rgba(130, 71, 229, 0.2) 0%, transparent 55%), #080810;
    }
    .home-hero-fallback-k { font-size: .72rem; font-weight: 900; letter-spacing: .2em; color: #a78bfa; margin: 0 0 8px; }
    .home-hero-fallback-title { font-size: clamp(1.4rem, 5vw, 2.1rem); font-weight: 900; margin: 0 0 10px; color: #fff; }
    .home-hero-fallback-sub { color: #9ca3af; margin: 0 0 22px; max-width: 320px; line-height: 1.5; }

    .home-hero-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        min-height: min(52vh, 480px);
        scrollbar-width: none;
    }
    .home-hero-track::-webkit-scrollbar { display: none; }

    .home-hero-slide {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        position: relative;
        min-height: min(52vh, 480px);
    }
    /* Slides fuera de vista: el navegador omite trabajo de layout/pintura hasta acercarse al viewport. */
    .home-hero-track > .home-hero-slide:not(:first-child) {
        content-visibility: auto;
        contain-intrinsic-size: 100vw 480px;
    }
    .home-hero-slide-bg {
        position: absolute; inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.04);
        opacity: 0.22;
        filter: saturate(0.65) contrast(1.05);
    }
    picture.home-hero-slide-bg {
        margin: 0;
        padding: 0;
        border: 0;
    }
    picture.home-hero-slide-bg img {
        border: 0;
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    img.home-hero-slide-bg {
        border: 0;
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .home-hero-slide-shade {
        position: absolute; inset: 0; z-index: 1;
        background:
            linear-gradient(180deg, rgba(4, 5, 12, 0.97) 0%, rgba(5, 6, 14, 0.92) 38%, rgba(3, 4, 10, 0.96) 100%),
            radial-gradient(ellipse 80% 60% at 50% 0%, rgba(130, 71, 229, 0.12) 0%, transparent 55%);
        pointer-events: none;
    }
    .home-hero-slide-content {
        position: relative;
        z-index: 2;
        min-height: min(52vh, 480px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px clamp(18px, 4vw, 48px) 56px;
        max-width: min(1180px, 96vw);
        margin: 0 auto;
        gap: 0;
    }

    .home-hero-meta-block {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-top: 14px;
        margin-bottom: 0;
        padding: 10px 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .home-hero-badge {
        font-size: .62rem; font-weight: 900; letter-spacing: .2em;
        padding: 6px 14px; border-radius: 999px;
    }
    .home-hero-badge--live { color: #fecaca; background: rgba(220,38,38,.4); border: 1px solid rgba(248,113,113,.55); }
    .home-hero-badge--next { color: #1a1408; background: linear-gradient(180deg,#ffe566,#f5b100); border: 1px solid rgba(245,177,0,.6); }
    .home-hero-badge--final { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(245,177,0,.45); }
    .home-hero-badge--pend { color: #9ca3af; background: rgba(255,255,255,.05); border: 1px solid rgba(156,163,175,.25); }

    .home-hero-liga {
        font-size: clamp(.8rem, 2.2vw, 1rem);
        font-weight: 800;
        line-height: 1.3;
        margin: 0;
        color: #e2e8f0;
        text-shadow: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
        max-width: 100%;
    }
    .home-hero-j {
        font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
        color: #d4c4fc; margin: 0;
    }
    .home-hero-scoreblock {
        order: 1;
        margin-bottom: 8px;
    }
    .home-hero-mega-scores {
        display: flex; align-items: center; justify-content: center; gap: 12px 18px;
        flex-wrap: wrap;
    }
    .home-hero-mega-num {
        font-size: clamp(3.6rem, 12vw, 6.25rem);
        font-weight: 900;
        font-variant-numeric: tabular-nums;
        line-height: 0.95;
        color: #cbd5e1;
        letter-spacing: -0.04em;
    }
    .home-hero-mega-num--lead {
        color: #fff;
        text-shadow: 0 0 48px rgba(245, 177, 0, 0.45), 0 6px 28px rgba(0, 0, 0, 0.55);
        font-size: clamp(4rem, 13vw, 7rem);
    }
    .home-hero-mega-num--dim { color: #475569; font-size: clamp(2.4rem, 8vw, 4rem); font-weight: 800; }
    .home-hero-mega-sep { font-size: clamp(1.8rem, 5vw, 2.75rem); color: #64748b; font-weight: 800; opacity: .85; }

    .home-hero-teams {
        order: 3;
        display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
        gap: 10px 14px; margin-top: 6px; margin-bottom: 10px;
        max-width: 100%;
    }
    .home-hero-team {
        font-size: clamp(.92rem, 3.5vw, 1.2rem);
        font-weight: 800;
        color: #e5e7eb;
        max-width: 40%;
        line-height: 1.25;
    }
    .home-hero-team--win {
        color: #fff;
        font-weight: 900;
        text-shadow: 0 0 20px rgba(245, 177, 0, 0.35);
        padding: 6px 12px;
        border-radius: 12px;
        background: linear-gradient(90deg, rgba(245, 177, 0, 0.18) 0%, rgba(245, 177, 0, 0.05) 100%);
        border: 1px solid rgba(245, 177, 0, 0.35);
    }
    .home-hero-team--lose { opacity: .52; color: #9ca3af; font-weight: 600; }
    .home-hero-vs { font-size: .72rem; font-weight: 900; color: #6b7280; letter-spacing: .18em; }

    .home-hero-winner-line {
        order: 4;
        margin: 12px 0 20px;
        display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 8px;
        font-size: clamp(.85rem, 2.8vw, 1rem);
        font-weight: 800;
        color: #f5b100;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    }
    .home-hero-winner-k {
        font-size: .58rem;
        font-weight: 900;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: #fde68a;
    }
    .home-hero-winner-name {
        font-weight: 900;
        color: #fff;
        max-width: 90vw;
        text-align: center;
    }
    .home-hero-kick { font-size: .85rem; font-weight: 800; color: #f5b100; }
    .home-hero-kick.muted { color: #6b7280; font-weight: 700; }

    .home-hero-cta {
        order: 5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
        text-decoration: none;
        color: #0a0a0f;
        background: linear-gradient(180deg, #fff 0%, #e9e4f7 100%);
        border: 1px solid rgba(255,255,255,.35);
        box-shadow: 0 10px 32px rgba(0,0,0,.35);
        transition: transform .18s, box-shadow .18s;
    }
    .home-hero-cta:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 14px 40px rgba(130,71,229,.25);
    }

    .home-hero-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.15);
        background: rgba(8,8,16,.75);
        color: #fff;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        display: grid;
        place-items: center;
    }
    .home-hero-arrow:hover { background: rgba(130,71,229,.45); border-color: rgba(196,181,253,.5); }
    .home-hero-arrow--prev { left: max(8px, 2vw); }
    .home-hero-arrow--next { right: max(8px, 2vw); }

    .home-hero-dots {
        position: absolute;
        bottom: 14px;
        left: 0; right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 6;
    }
    .home-hero-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(255,255,255,.25);
        cursor: pointer;
        transition: transform .15s, background .15s;
    }
    .home-hero-dot--active {
        background: #f5b100;
        transform: scale(1.25);
    }

    /* â”€â”€ Modo solo imagen / branding (Home limpia) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .home-hero-slide-bg--brand {
        opacity: 0.72;
        filter: saturate(1.05) contrast(1.02);
        transform: scale(1.02);
    }
    .home-hero-slide-shade--brand {
        background:
            linear-gradient(180deg, rgba(6, 8, 18, 0.55) 0%, rgba(5, 7, 16, 0.72) 45%, rgba(4, 5, 12, 0.88) 100%),
            radial-gradient(ellipse 90% 55% at 50% 20%, rgba(245, 177, 0, 0.12) 0%, transparent 50%);
    }
    .home-hero-slide-content--brand {
        gap: 12px;
        justify-content: flex-end;
        padding-bottom: 64px;
    }
    .home-hero-brand-kicker {
        margin: 0;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.28em;
        color: #f5b100;
        text-transform: uppercase;
    }
    .home-hero-brand-title {
        margin: 0;
        font-size: clamp(1.65rem, 5.5vw, 2.35rem);
        font-weight: 900;
        letter-spacing: -0.03em;
        color: #fff;
        line-height: 1.12;
        max-width: 20ch;
    }
    .home-hero-brand-sub {
        margin: 0 0 8px;
        font-size: clamp(0.88rem, 2.4vw, 1rem);
        font-weight: 600;
        color: #cbd5e1;
        max-width: 36ch;
        line-height: 1.5;
    }
    .home-hero-cta--brand {
        margin-top: 8px;
        background: linear-gradient(180deg, #f5b100 0%, #d97706 100%);
        color: #0a0a0f;
        border: 1px solid rgba(255, 255, 255, 0.35);
    }
    .home-hero-cta--brand:hover {
        box-shadow: 0 14px 40px rgba(245, 177, 0, 0.35);
    }

    /* â”€â”€ Modo editorial (Home dinÃ¡mica tipo ESPN) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .home-hero-slide-content--editorial {
        gap: 10px;
        justify-content: flex-end;
        padding-bottom: 58px;
        align-items: stretch;
        text-align: left;
        max-width: min(640px, 94vw);
        margin-right: auto;
        margin-left: max(18px, 4vw);
    }
    .home-hero-slide-content--editorial .home-hero-badge {
        align-self: flex-start;
        margin-bottom: 4px;
    }
    .home-hero-edit-kicker {
        margin: 0;
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.22em;
        color: #fbbf24;
        text-transform: uppercase;
    }
    .home-hero-edit-title {
        margin: 0;
        font-size: clamp(1.35rem, 4.8vw, 2.05rem);
        font-weight: 900;
        letter-spacing: -0.02em;
        color: #fff;
        line-height: 1.15;
        text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    }
    .home-hero-edit-subtitle {
        margin: 0;
        font-size: clamp(0.8rem, 2.1vw, 0.92rem);
        font-weight: 700;
        color: #e2e8f0;
        line-height: 1.35;
    }
    .home-hero-edit-context {
        margin: 0;
        font-size: clamp(0.82rem, 2.2vw, 0.95rem);
        font-weight: 600;
        color: #cbd5e1;
        line-height: 1.45;
    }
    .home-hero-edit-info {
        margin: 0;
        font-size: clamp(0.8rem, 2vw, 0.92rem);
        font-weight: 700;
        color: #e2e8f0;
        line-height: 1.4;
    }
    .home-hero-edit-cta-note {
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #94a3b8;
        border: 1px solid rgba(148, 163, 184, 0.35);
        padding: 10px 18px;
        border-radius: 999px;
        align-self: flex-start;
    }
    .home-hero-slide-content--editorial .home-hero-cta--brand {
        align-self: flex-start;
        margin-top: 6px;
    }

    @media (max-width: 520px) {
        .home-hero-carousel,
        .home-hero-track,
        .home-hero-slide,
        .home-hero-slide-content,
        .home-hero-loading {
            min-height: min(72vh, 560px);
        }
        .home-hero-carousel--compact,
        .home-hero-carousel--compact .home-hero-track,
        .home-hero-carousel--compact .home-hero-slide,
        .home-hero-carousel--compact .home-hero-slide-content,
        .home-hero-carousel--compact .home-hero-loading {
            min-height: min(38vh, 260px);
        }
        .home-hero-carousel--compact .home-hero-edit-context,
        .home-hero-carousel--compact .home-hero-edit-info,
        .home-hero-carousel--compact .home-hero-edit-subtitle {
            display: none;
        }
        .home-hero-carousel--compact .home-hero-edit-title {
            font-size: clamp(1.45rem, 6.5vw, 1.9rem);
        }
        .home-hero-carousel--compact .home-hero-slide-content--editorial {
            padding-bottom: 44px;
            justify-content: center;
        }
        .home-hero-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
        .home-hero-slide-content { padding: 48px 16px 56px; }
        .home-hero-slide-content--editorial {
            margin-left: 16px;
            margin-right: 16px;
            max-width: none;
            padding-bottom: 52px;
        }
    }
/* _content/AppBasquet.Web.Client.Shared/Components/HomeLigasCarouselSection.razor.rz.scp.css */
/* Ligas carrusel (extraÃ­do de Home para aislar renders del timer). */

.home-ligas-carousel-shell {
    position: relative;
    margin: 0 clamp(-16px, -1.5vw, -8px);
    padding: 0 clamp(32px, 4vw, 48px);
}

.home-ligas-carousel-shell::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to left, #080810 0%, transparent 100%);
    pointer-events: none;
    z-index: 4;
}

.home-ligas-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(8,8,16,.72);
    color: #e8e8f4;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
}

.home-ligas-carousel-arrow:hover {
    background: rgba(130,71,229,.35);
    border-color: rgba(167,139,250,.45);
    color: #fff;
}

.home-ligas-carousel-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.home-ligas-carousel-arrow--prev { left: 4px; }
.home-ligas-carousel-arrow--next { right: 4px; }

.home-ligas-carousel {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 8px 22px;
    scrollbar-width: none;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

.home-ligas-carousel::-webkit-scrollbar {
    display: none;
}

.liga-home-card-nba {
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid #242438;
    background: linear-gradient(155deg, #12121f 0%, #0c0c16 100%);
    color: #fff;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s, box-shadow .22s;
    box-shadow: 0 10px 32px rgba(0,0,0,.35);
}

.liga-home-card-nba:hover {
    transform: translateY(-5px);
    border-color: rgba(130,71,229,.45);
    box-shadow: 0 16px 44px rgba(130,71,229,.2);
}

.liga-home-card-nba-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a12;
}

.liga-home-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .75s ease;
    transform: scale(1.03);
}

.liga-home-slide--active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    transition: opacity .75s ease, transform 5.5s ease-out;
}

.liga-home-slide--solid {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    background-image: linear-gradient(135deg, #14141f 0%, #0a0a12 40%, #1a1028 100%) !important;
}

.liga-home-card-nba:hover .liga-home-slide--active {
    transform: scale(1.045);
}

.liga-home-card-nba-media-grad {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(15, 23, 42, 0.35) 78%,
        rgba(15, 23, 42, 0.72) 100%
    );
    pointer-events: none;
}

.liga-home-card-nba-hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-indent: -9999px;
    overflow: hidden;
}

.liga-home-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4,4,10,.55);
    color: #f0f0f8;
    font-size: .95rem;
    font-weight: 800;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .18s, border-color .18s, transform .12s;
    backdrop-filter: blur(6px);
}

.liga-home-slide-arrow:hover {
    background: rgba(130,71,229,.4);
    border-color: rgba(200,180,255,.4);
}

.liga-home-slide-arrow--prev { left: 8px; }
.liga-home-slide-arrow--next { right: 8px; }

.liga-home-card-nba-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 18px;
}

.liga-home-card-nba-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #181828;
    border: 1px solid #2e2e44;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.liga-home-card-nba-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.liga-home-card-nba-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.liga-home-card-nba-name {
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.3;
    color: #f8f8ff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

.liga-home-card-nba-season {
    font-size: .72rem;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.liga-home-card-nba-cta {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0f;
    text-decoration: none;
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f5b100 0%, #d97706 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(245, 177, 0, 0.25);
    transition: transform .18s, box-shadow .18s;
}

.liga-home-card-nba:hover .liga-home-card-nba-cta {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(245, 177, 0, 0.35);
}

@media (min-width: 900px) {
    .liga-home-card-nba {
        flex: 0 0 280px;
    }
}

@media (max-width: 640px) {
    .home-ligas-carousel-shell {
        margin: 0 -16px;
        padding: 0 32px;
    }
    .home-ligas-carousel {
        padding-left: 4px;
        padding-right: 4px;
    }
    .home-ligas-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/HomeResultsCarousel.razor.rz.scp.css */
/* HomeResultsCarousel â€” premium dark (#0B0B0F), aislado al componente (Blazor CSS scope). */

.hrc-root {
    width: 100%;
}

.hrc-sec-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 16px;
}

.hrc-sec-copy {
    flex: 1;
    min-width: 0;
}

.hrc-sec-eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hrc-sec-title {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #f4f4f8;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hrc-sec-lead {
    margin: 0;
    font-size: 0.82rem;
    color: #8b93a7;
    line-height: 1.45;
}

.hrc-sec-nav {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
    padding-top: 2px;
}

.hrc-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(22, 22, 32, 0.95);
    color: #e8e8ef;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.18s, border-color 0.18s, transform 0.12s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hrc-nav-btn:hover {
    background: rgba(124, 58, 237, 0.35);
    border-color: rgba(167, 139, 250, 0.55);
}

.hrc-nav-btn:active {
    transform: scale(0.94);
}

@media (max-width: 520px) {
    .hrc-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

.hrc-shell {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.hrc-shell--loading {
    min-height: 260px;
    display: grid;
    place-items: center;
}

.hrc-loading {
    display: flex;
    gap: 8px;
}

.hrc-loading span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.55);
    animation: hrc-bounce-b-xuix3abihk 1s ease-in-out infinite;
}

.hrc-loading span:nth-child(2) {
    animation-delay: 0.15s;
}

.hrc-loading span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes hrc-bounce-b-xuix3abihk {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.85);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.hrc-empty {
    text-align: center;
    color: #6b7280;
    font-size: 0.88rem;
    padding: 28px 16px;
    border-radius: 16px;
    border: 1px dashed rgba(100, 116, 139, 0.35);
    background: rgba(18, 18, 26, 0.5);
}

.hrc-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 12px 10px;
    -webkit-overflow-scrolling: touch;
    outline: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hrc-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.hrc-slide {
    flex: 0 0 min(88vw, 360px);
    width: min(88vw, 360px);
    max-width: 400px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

@media (min-width: 720px) {
    .hrc-slide {
        flex: 0 0 380px;
        width: 380px;
    }
}

/* Card surface: negro profundo + acento violeta */
.hrc-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #ececf4;
    min-height: 312px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    background-color: #0b0b0f;
    background-image:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(124, 58, 237, 0.22) 0%, transparent 55%),
        linear-gradient(165deg, #101018 0%, #0b0b0f 45%, #060608 100%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 40px rgba(124, 58, 237, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.hrc-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.72),
        0 0 0 1px rgba(167, 139, 250, 0.35),
        0 0 48px rgba(124, 58, 237, 0.18);
    border-color: rgba(167, 139, 250, 0.45);
}

.hrc-card:active {
    transform: translateY(-1px) scale(0.988);
}

.hrc-card--live {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.65),
        0 0 48px rgba(220, 38, 38, 0.22);
    border-color: rgba(248, 113, 113, 0.4);
}

.hrc-card--next {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.65),
        0 0 40px rgba(59, 130, 246, 0.14);
}

.hrc-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: saturate(0.4) contrast(1.08);
    transform: scale(1.08);
    pointer-events: none;
}

.hrc-card__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0.15) 0%, rgba(11, 11, 15, 0.92) 50%, rgba(11, 11, 15, 0.98) 100%);
    pointer-events: none;
}

.hrc-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 312px;
    padding: 14px 14px 12px;
}

.hrc-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 8px;
    min-height: 28px;
}

.hrc-trophy {
    margin-left: auto;
    font-size: 1rem;
    filter: drop-shadow(0 0 10px rgba(245, 200, 90, 0.55));
}

.hrc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
}

.hrc-badge--live {
    color: #fecaca;
    background: rgba(185, 28, 28, 0.45);
    border: 1px solid rgba(248, 113, 113, 0.55);
    box-shadow: 0 0 22px rgba(220, 38, 38, 0.25);
}

.hrc-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f87171;
    box-shadow: 0 0 12px #ef4444;
    animation: hrc-live-blink-b-xuix3abihk 1.1s ease-in-out infinite;
}

@keyframes hrc-live-blink-b-xuix3abihk {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(0.85);
    }
}

.hrc-badge--next {
    color: #dbeafe;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.55) 0%, rgba(30, 64, 175, 0.45) 100%);
    border: 1px solid rgba(96, 165, 250, 0.55);
}

.hrc-badge--final {
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hrc-badge--pend {
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 163, 175, 0.22);
}

.hrc-pill {
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}

.hrc-pill--soft {
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.35);
}

.hrc-liga {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1.3;
    color: #9ca3af;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hrc-meta {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #a78bfa;
    text-transform: uppercase;
}

.hrc-rule {
    height: 1px;
    margin: 10px 0 12px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* â”€â”€ NBA-style: marcador primero â”€â”€ */
.hrc-mega {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    flex-wrap: wrap;
    margin-bottom: 4px;
    min-height: 3.5rem;
}

.hrc-mega--quiet {
    min-height: 2.5rem;
}

.hrc-mega-num {
    font-size: clamp(2.85rem, 12vw, 3.75rem);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.hrc-mega-num--win {
    color: #fff;
    text-shadow:
        0 0 32px rgba(245, 200, 90, 0.55),
        0 0 4px rgba(250, 204, 21, 0.95);
    filter: drop-shadow(0 0 14px rgba(245, 200, 90, 0.45));
}

.hrc-mega-num--lose {
    color: #3f3f46;
}

.hrc-mega-num--tie {
    color: #e4e4e7;
}

.hrc-mega-sep {
    font-size: clamp(1.5rem, 6vw, 2rem);
    font-weight: 800;
    color: #52525b;
    opacity: 0.9;
    user-select: none;
}

.hrc-mega-cta {
    font-size: 0.95rem;
    font-weight: 800;
    color: #93c5fd;
    letter-spacing: 0.02em;
}

.hrc-pend {
    margin: 0 0 8px;
    text-align: center;
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 700;
}

/* Identidades: logos + nombres (sin botones; lectura clara) */
.hrc-identities {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 8px 6px;
    margin-top: 6px;
    margin-bottom: 4px;
}

.hrc-id-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 0;
}

.hrc-id-col--win .hrc-id-name {
    color: #fafafa;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(245, 200, 90, 0.2);
}

.hrc-id-col--lose .hrc-id-name {
    color: #71717a;
    font-weight: 600;
}

.hrc-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hrc-id-col--win .hrc-logo-wrap {
    border-color: rgba(245, 200, 90, 0.45);
    box-shadow:
        0 0 0 1px rgba(245, 200, 90, 0.15) inset,
        0 0 28px rgba(245, 200, 90, 0.12);
}

.hrc-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.hrc-logo--ph {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    font-weight: 900;
    color: #c4b5fd;
    background: rgba(124, 58, 237, 0.2);
}

.hrc-id-name {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.2;
    color: #d4d4d8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.hrc-id-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 14px;
}

.hrc-id-vs span {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #c4b5fd;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.15);
}

.hrc-countdown {
    margin: 8px 0 0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #93c5fd;
    letter-spacing: 0.02em;
}

.hrc-countdown--muted {
    color: #6b7280;
    font-weight: 700;
}

.hrc-venue {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #9ca3af;
}

.hrc-venue__icon {
    flex-shrink: 0;
    color: #8b5cf6;
    opacity: 0.95;
    display: grid;
    place-items: center;
}

.hrc-venue__text {
    min-width: 0;
    line-height: 1.35;
}

/* â”€â”€ Category badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hrc-cat-badge {
    font-size: .52rem;
    font-weight: 900;
    letter-spacing: .7px;
    padding: 2px 7px;
    border-radius: 999px;
    flex-shrink: 0;
    white-space: nowrap;
}
.hrc-cat-badge--femenil { color: var(--cat-femenil-color, #f472b6); background: rgba(244,114,182,.15); border: 1px solid rgba(244,114,182,.30); }
.hrc-cat-badge--varonil { color: var(--cat-varonil-color, #60a5fa); background: rgba(96,165,250,.15);  border: 1px solid rgba(96,165,250,.30);  }
.hrc-cat-badge--mixto   { color: var(--cat-mixto-color,   #a78bfa); background: rgba(167,139,250,.15); border: 1px solid rgba(167,139,250,.28); }
.hrc-cat-badge--juvenil { color: var(--cat-juvenil-color, #4ade80); background: rgba(74,222,128,.12);  border: 1px solid rgba(74,222,128,.26);  }

/* â”€â”€ Category card theming â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hrc-card[data-cat="femenil"] { border-color: var(--cat-femenil-border, rgba(244,114,182,.32)); box-shadow: 0 20px 50px rgba(0,0,0,.65), 0 0 48px var(--cat-femenil-glow, rgba(244,114,182,.20)); }
.hrc-card[data-cat="varonil"] { border-color: var(--cat-varonil-border, rgba(96,165,250,.32));  box-shadow: 0 20px 50px rgba(0,0,0,.65), 0 0 48px var(--cat-varonil-glow, rgba(96,165,250,.20)); }
.hrc-card[data-cat="mixto"]   { border-color: var(--cat-mixto-border,   rgba(167,139,250,.30)); box-shadow: 0 20px 50px rgba(0,0,0,.65), 0 0 40px var(--cat-mixto-glow,   rgba(167,139,250,.20)); }
.hrc-card[data-cat="juvenil"] { border-color: var(--cat-juvenil-border, rgba(74,222,128,.28));  box-shadow: 0 20px 50px rgba(0,0,0,.65), 0 0 40px var(--cat-juvenil-glow, rgba(74,222,128,.18)); }
/* _content/AppBasquet.Web.Client.Shared/Components/Home/HomeFeaturedLeaguesGrid.razor.rz.scp.css */
.home-ligas-grid {
    margin: 28px 0 0;
    padding-top: 0;
    border-top: none;
}

.home-ligas-grid__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.home-ligas-grid__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.home-ligas-grid__title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: -0.02em;
}

.home-ligas-grid__link {
    flex-shrink: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #f5b100;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.home-ligas-grid__link:hover {
    color: #ffe08a;
}

.home-ligas-grid__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-ligas-grid__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 16, 28, 0.92);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s, background 0.15s, box-shadow 0.15s;
    min-height: 92px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.home-ligas-grid__card--featured {
    border-color: rgba(245, 177, 0, 0.38);
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.08), rgba(16, 16, 28, 0.95));
}

.home-ligas-grid__card:hover {
    border-color: rgba(245, 177, 0, 0.35);
    background: rgba(22, 22, 38, 0.98);
    transform: translateY(-1px);
}

.home-ligas-grid__media {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-ligas-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-ligas-grid__logo-fallback {
    font-size: 1.45rem;
    line-height: 1;
}

.home-ligas-grid__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.home-ligas-grid__name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.home-ligas-grid__meta {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-ligas-grid__cta {
    font-size: 0.72rem;
    font-weight: 800;
    color: #f5b100;
    letter-spacing: 0.03em;
    margin-top: 2px;
}

.home-ligas-grid__loading,
.home-ligas-grid__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.88rem;
}

.home-ligas-grid__spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(245, 177, 0, 0.2);
    border-top-color: #f5b100;
    border-radius: 50%;
    animation: home-ligas-spin-b-7r7kl5laas 0.75s linear infinite;
}

@keyframes home-ligas-spin-b-7r7kl5laas {
    to { transform: rotate(360deg); }
}

@media (min-width: 481px) and (max-width: 767px) {
    .home-ligas-grid__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .home-ligas-grid {
        margin: 48px 0 0;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .home-ligas-grid__head {
        margin-bottom: 18px;
    }

    .home-ligas-grid__cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .home-ligas-grid__card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 18px;
        min-height: 160px;
    }

    .home-ligas-grid__media {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .home-ligas-grid__media {
        width: 56px;
        height: 56px;
    }

    .home-ligas-grid__card {
        min-height: 96px;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Home/HomeQuickAccess.razor.rz.scp.css */
.home-quick {
    margin: 24px 0 0;
    padding-top: 0;
    border-top: none;
}

.home-quick__head {
    margin-bottom: 14px;
}

.home-quick__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.home-quick__title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 800;
    color: #cbd5e1;
}

.home-quick__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.home-quick__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 72px;
    padding: 12px 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 14, 24, 0.75);
    text-decoration: none;
    color: #e2e8f0;
    transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.home-quick__item:hover {
    border-color: rgba(130, 71, 229, 0.45);
    background: rgba(22, 22, 38, 0.9);
    transform: translateY(-2px);
}

.home-quick__item--profile {
    border-color: rgba(245, 177, 0, 0.25);
    background: rgba(245, 177, 0, 0.06);
}

.home-quick__icon {
    font-size: 1.45rem;
    line-height: 1;
}

.home-quick__label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    /* En mÃ³vil la barra inferior ya cubre la navegaciÃ³n principal */
    .home-quick {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-quick__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-quick__item {
        min-height: 80px;
    }

    .home-quick__item--profile {
        grid-column: span 1;
    }
}

@media (max-width: 430px) {
    .home-quick__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-quick__item {
        min-height: 88px;
    }

    .home-quick__item--profile {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .home-quick__item {
        min-height: 88px;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Home/HoyEnClutchMx.razor.rz.scp.css */
.hoy-clutch {
    margin-bottom: 24px;
}

.hoy-clutch--collapsed,
.hoy-clutch--open {
    border: 1px solid rgba(245, 177, 0, 0.14);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(18, 18, 30, 0.96), rgba(10, 10, 18, 0.92));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.hoy-clutch--open {
    padding-bottom: 4px;
}

.hoy-clutch__collapsed-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.hoy-clutch__collapsed-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    color: inherit;
    min-height: 44px;
}

.hoy-clutch__collapsed-link:active {
    background: rgba(255, 255, 255, 0.03);
}

.hoy-clutch__expand-btn,
.hoy-clutch__collapse-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 44px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(245, 177, 0, 0.08);
    color: #f5b100;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.hoy-clutch__collapse-btn {
    border-left: 0;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
}

.hoy-clutch__head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px 0 16px;
}

.hoy-clutch__summary-line {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

.hoy-clutch__cta {
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #f5b100;
    letter-spacing: 0.02em;
}

.hoy-clutch__body {
    padding: 0 16px 16px;
}

.hoy-clutch__head {
    margin-bottom: 0;
}

.hoy-clutch__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f5b100;
    margin-bottom: 4px;
}

.hoy-clutch__title {
    display: block;
    margin: 0;
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #f8fafc;
    line-height: 1.12;
}

.hoy-clutch__lead {
    display: block;
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

.hoy-clutch__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.hoy-clutch__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 18, 30, 0.9);
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.hoy-clutch__tab:hover {
    border-color: rgba(245, 177, 0, 0.35);
    color: #fff;
}

.hoy-clutch__tab--active {
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.22), rgba(130, 71, 229, 0.18));
    border-color: rgba(245, 177, 0, 0.45);
    color: #fff;
}

.hoy-clutch__tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
}

.hoy-clutch__tab-dot--live {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
    animation: hoy-live-pulse-b-l2bipcew2n 1.4s ease-in-out infinite;
}

@keyframes hoy-live-pulse-b-l2bipcew2n {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.hoy-clutch__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.hoy-clutch__grid  .pc-card {
    height: 100%;
}

.hoy-clutch__loading,
.hoy-clutch__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 20, 0.65);
    text-align: center;
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
}

.hoy-clutch__empty-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.hoy-clutch__empty p {
    margin: 0;
}

.hoy-clutch__empty-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(245, 177, 0, 0.4);
    background: rgba(245, 177, 0, 0.12);
    color: #f5d78a;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.hoy-clutch__spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(245, 177, 0, 0.2);
    border-top-color: #f5b100;
    border-radius: 50%;
    animation: hoy-spin-b-l2bipcew2n 0.75s linear infinite;
}

@keyframes hoy-spin-b-l2bipcew2n {
    to { transform: rotate(360deg); }
}

.hoy-clutch__footer {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.hoy-clutch__view-all {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    color: #f5b100;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.hoy-clutch__view-all:hover {
    color: #ffe08a;
}

@media (min-width: 640px) {
    .hoy-clutch {
        margin-bottom: 32px;
    }

    .hoy-clutch__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1024px) {
    .hoy-clutch__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hoy-clutch__tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hoy-clutch__tabs::-webkit-scrollbar {
        display: none;
    }

    .hoy-clutch__tab {
        flex: 0 0 auto;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/League/LeagueContactFab.razor.rz.scp.css */
/* FAB: por encima del contenido, bajo modales fullscreen (z ~350) */
.lcf-fab {
    position: fixed;
    z-index: 302;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: calc(16px + var(--site-bottomnav-total, 0px));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lcf-fab:active {
    transform: scale(0.96);
}

.lcf-fab--wa {
    background: #25d366;
    color: #fff;
}

.lcf-fab--wa:hover {
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.lcf-fab--alt {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.lcf-fab__icon {
    width: 28px;
    height: 28px;
}

.lcf-overlay {
    position: fixed;
    inset: 0;
    z-index: 372;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    animation: lcf-fade-b-lz0bvvhahp 0.22s ease;
}

@keyframes lcf-fade-b-lz0bvvhahp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lcf-sheet {
    background: linear-gradient(180deg, #14141f 0%, #0a0a10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    max-height: min(88dvh, 560px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: lcf-slideup-b-lz0bvvhahp 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}

@keyframes lcf-slideup-b-lz0bvvhahp {
    from { transform: translateY(100%); opacity: 0.92; }
    to { transform: translateY(0); opacity: 1; }
}

.lcf-handle {
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px auto 0;
    flex-shrink: 0;
}

.lcf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.lcf-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    color: #f8fafc;
    letter-spacing: 0.02em;
}

.lcf-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

.lcf-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.lcf-body {
    padding: 16px 18px max(20px, env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lcf-name {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.25;
}

.lcf-league {
    margin: -4px 0 0;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.lcf-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 14px;
    background: #25d366;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: filter 0.15s, transform 0.12s;
}

.lcf-wa-btn:hover {
    filter: brightness(1.06);
}

.lcf-wa-btn:active {
    transform: scale(0.99);
}

.lcf-wa-btn__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.lcf-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.lcf-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lcf-secondary-btn--mail {
    word-break: break-all;
    text-align: center;
    line-height: 1.35;
}

.lcf-legal {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lcf-legal-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.lcf-legal-chevron {
    font-size: 0.7rem;
    opacity: 0.8;
}

.lcf-legal-text {
    margin: 0 0 4px;
    font-size: 0.65rem;
    color: #6b7280;
    line-height: 1.45;
}

@media (max-width: 480px) {
    .lcf-fab {
        width: 48px;
        height: 48px;
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: calc(12px + var(--site-bottomnav-total, 0px));
    }
    .lcf-fab__icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 600px) {
    .lcf-overlay {
        justify-content: center;
        align-items: center;
        padding: 24px;
    }

    .lcf-sheet {
        max-width: 400px;
        width: 100%;
        border-radius: 20px;
        max-height: min(80dvh, 520px);
        animation: lcf-pop-b-lz0bvvhahp 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes lcf-pop-b-lz0bvvhahp {
        from {
            opacity: 0;
            transform: scale(0.96) translateY(12px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .lcf-handle {
        display: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/League/ModalPositions.razor.rz.scp.css */
/* â•â• MODAL POSICIONES â€” slide-up bottom sheet â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.lv-smodal-overlay {
    position: fixed;
    inset: 0;
    z-index: 350;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: smo-fade-b-h80dlw7g9x 0.2s ease;
    touch-action: none;
}

@keyframes smo-fade-b-h80dlw7g9x {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lv-smodal {
    max-height: 90dvh;
    max-height: 90vh;
    background: linear-gradient(180deg, #0e0e1c 0%, #080810 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: smo-slideup-b-h80dlw7g9x 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes smo-slideup-b-h80dlw7g9x {
    from { transform: translateY(100%); }
    to   { transform: translateY(0);    }
}

@media (max-width: 900px) {
    .lv-smodal-overlay {
        justify-content: stretch;
        align-items: stretch;
    }

    .lv-smodal {
        flex: 1 1 auto;
        min-height: 0;
        max-height: min(90dvh, 90vh);
        border-radius: 20px 20px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lv-smodal-handle {
        margin-top: max(10px, env(safe-area-inset-top, 0px));
    }

    .lv-smodal-head {
        padding-top: max(10px, env(safe-area-inset-top, 0px));
    }
}

/* Hide on desktop â€” inline tab already shows the full table */
@media (min-width: 901px) {
    .lv-smodal-overlay { display: none !important; }
}

.lv-smodal-handle {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin: 10px auto 0;
    flex-shrink: 0;
}

.lv-smodal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.lv-smodal-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
}

.lv-smodal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
    flex-shrink: 0;
}

.lv-smodal-close:hover  { background: rgba(255, 255, 255, 0.15); color: #fff; }
.lv-smodal-close:active { background: rgba(255, 255, 255, 0.22); color: #fff; transform: scale(0.92); }

.lv-smodal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 12px 10px max(20px, env(safe-area-inset-bottom, 0px));
}

.lv-smodal-standings-container {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.lv-smodal-body .rank-num {
    font-size: 0.95rem;
}
/* _content/AppBasquet.Web.Client.Shared/Components/League/StandingsPositionsTable.razor.rz.scp.css */
/* â”€â”€ MÃ³vil: cards (sin tabla ancha) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.standings-mobile-cards {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.standings-mcard {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(18, 18, 28, 0.96) 0%, rgba(10, 10, 18, 0.98) 100%);
    color: inherit;
    text-align: left;
    cursor: pointer;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

.standings-mcard:active {
    transform: scale(0.99);
    background: rgba(245, 177, 0, 0.08);
}

.standings-mcard__rank {
    flex: 0 0 2rem;
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--accent, #f5b100);
    font-variant-numeric: tabular-nums;
}

.standings-mcard--p1 .standings-mcard__rank { color: #fbbf24; }
.standings-mcard--p2 .standings-mcard__rank { color: #9ca3af; }
.standings-mcard--p3 .standings-mcard__rank { color: #b45309; }

.standings-mcard__team {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.standings-mcard__team img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
}

.standings-mcard__init {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 900;
    color: var(--accent, #f5b100);
    background: #1a1a28;
    border: 1px solid rgba(245, 177, 0, 0.25);
}

.standings-mcard__name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #f1f5f9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.standings-mcard__stats {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.standings-mcard__record {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.standings-mcard__pts {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.standings-mcard__pts-lbl {
    font-size: 0.58rem;
    color: #64748b;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.standings-mcard--p1 {
    border-color: rgba(251, 191, 36, 0.35);
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.08) 0%, rgba(18, 18, 28, 0.96) 55%);
}

@media (max-width: 900px) {
    .standings-mobile-cards {
        display: flex;
    }

    .standings-desktop-table {
        display: none;
    }
}

@media (min-width: 901px) {
    .standings-mobile-cards {
        display: none !important;
    }
}

/* Contenedor externo (scroll horizontal opcional) */
.standings-compact-outer {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.standings-compact-outer--scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.standings-compact {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(18, 18, 28, 0.96) 0%, rgba(10, 10, 18, 0.98) 100%);
    overflow: hidden;
}

/* Tabla semÃ¡ntica â€” alineaciÃ³n estable (table-layout: fixed) */
.table-posiciones.standings-pos-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.table-posiciones th,
.table-posiciones td {
    text-align: center;
    padding: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
}

.table-posiciones thead th {
    background: rgba(12, 12, 20, 0.96);
    color: #64748b;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 4;
}

.table-posiciones .col-equipo,
.table-posiciones th.col-equipo {
    text-align: left;
}

.table-posiciones .col-pos {
    width: 2.25rem;
    font-weight: 900;
}

.table-posiciones .col-pend {
    width: 2.6rem;
    color: #fcd34d;
    font-weight: 800;
}

.standings-row--sin-jugar .col-pj {
    color: #fcd34d;
    font-weight: 800;
}

.table-posiciones .col-equipo {
    width: auto;
    min-width: 0;
    max-width: 100%;
}

.rank-num {
    color: var(--accent, #f5b100);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.team-info img {
    max-width: 40px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    background: rgba(255, 255, 255, 0.06);
}

.standings-initials {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--accent, #f5b100);
    background: linear-gradient(145deg, #222 0%, #111 100%);
    border: 1px solid rgba(245, 177, 0, 0.25);
    flex-shrink: 0;
}

.standings-team-name {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 700;
    color: #f1f5f9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.25;
    font-size: 0.8rem;
}

/* MÃ¡s espacio para el nombre en escritorio sin romper columnas numÃ©ricas */
@media (min-width: 901px) {
    /* Reparte mÃ¡s ancho a Â«EquipoÂ» sin forzar scroll horizontal en contenedores compactos */
    .table-posiciones.standings-pos-table .col-equipo {
        width: 47%;
    }

    .standings-team-name {
        font-size: 0.88rem;
    }
}

@media (max-width: 900px) {
    /* Ligeramente mÃ¡s compacto en mÃ³vil; tooltip (title) sigue mostrando el nombre completo en soporte tÃ¡ctil/de escritorio */
    .standings-team-name {
        font-size: 0.78rem;
    }

    .table-posiciones.standings-pos-table .col-equipo {
        min-width: 6.75rem;
    }
}

.standings-stat--pts {
    font-weight: 900;
    color: #fff;
    font-size: 0.88rem;
}

.dif-pos {
    color: #4ade80 !important;
}

.dif-neg {
    color: #f87171 !important;
}

.clickable-row {
    cursor: pointer;
    transition: background 0.15s;
}

.clickable-row:hover,
.clickable-row:focus-visible {
    background: rgba(245, 177, 0, 0.06);
    outline: none;
}

.clickable-row:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(245, 177, 0, 0.35);
}

.standings-compact--modal .table-posiciones th,
.standings-compact--modal .table-posiciones td {
    padding: 8px 6px;
}

/* Top 3 */
.standings-row--p1 .rank-num { color: #fbbf24; }
.standings-row--p2 .rank-num { color: #9ca3af; }
.standings-row--p3 .rank-num { color: #b45309; }
.standings-row--p1 { background: linear-gradient(90deg, rgba(251,191,36,0.05) 0%, transparent 60%); }
.standings-row--p1:hover,
.standings-row--p1:focus-visible { background: rgba(251,191,36,0.09) !important; }

/* MÃ³vil compacto en pestaÃ±a liga: solo #, equipo, PTS */
@media (max-width: 900px) {
    .standings-compact--ultracompact .table-posiciones .col-pj,
    .standings-compact--ultracompact .table-posiciones .col-pg,
    .standings-compact--ultracompact .table-posiciones .col-pp,
    .standings-compact--ultracompact .table-posiciones .col-pf,
    .standings-compact--ultracompact .table-posiciones .col-pc,
    .standings-compact--ultracompact .table-posiciones .col-dif {
        display: none;
    }

    .standings-compact--ultracompact .standings-stat--pts {
        font-size: 1.05rem;
    }

    .standings-compact--ultracompact .team-info img,
    .standings-compact--ultracompact .standings-initials {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .standings-compact--ultracompact .table-posiciones .col-pos {
        width: 2rem;
    }
}

/* ESPN scroll: ancho mÃ­nimo + columnas fijas pegajosas */
.standings-espn-wrap {
    position: relative;
    min-width: 0;
}

@media (max-width: 900px) {
    .standings-compact--espn tbody tr {
        background: #0d0d1c;
    }

    .standings-espn-wrap--active .standings-compact-outer--scroll {
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }
    .standings-espn-wrap--active .standings-compact-outer--scroll::-webkit-scrollbar {
        display: none;
    }

    .standings-compact--espn .table-posiciones.standings-pos-table {
        min-width: 320px;
    }

    .standings-compact--espn .table-posiciones .col-pos {
        position: sticky;
        left: 0;
        z-index: 3;
        background: #0d0d1c;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.35);
    }

    .standings-compact--espn .table-posiciones .col-equipo {
        position: sticky;
        left: 2.25rem;
        z-index: 3;
        background: #0d0d1c;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.22);
    }

    .standings-compact--espn thead .col-pos,
    .standings-compact--espn thead .col-equipo {
        background: #0c0c14;
        z-index: 5;
    }

    .standings-compact--espn .clickable-row:hover {
        background: #151528;
    }

    .standings-espn-wrap--active::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 36px;
        background: linear-gradient(to left, rgba(8, 8, 16, 0.85) 0%, rgba(8, 8, 16, 0) 100%);
        pointer-events: none;
        z-index: 10;
        border-radius: 0 14px 14px 0;
    }
}

@media (min-width: 901px) {
    .standings-compact--espn {
        overflow: hidden;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/MaintenanceGate.razor.rz.scp.css */
.maint-gate-loading {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050508;
    color: rgba(255, 255, 255, 0.7);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.maint-gate-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050508;
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    padding: 24px;
}

.maint-gate-card {
    text-align: center;
    max-width: 420px;
    padding: 40px 32px;
    background: #12121e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.12);
}

.maint-gate-brand {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin: 0 0 24px;
}

.maint-gate-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(245, 177, 0, 0.12);
    border: 1px solid rgba(245, 177, 0, 0.35);
    color: #f5b100;
    margin: 0 0 20px;
}

.maint-gate-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f5b100;
    animation: maint-gate-blink-b-cfze0kguk7 1.2s step-start infinite;
}

@keyframes maint-gate-blink-b-cfze0kguk7 {
    50% {
        opacity: 0.25;
    }
}

.maint-gate-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    line-height: 1.2;
}

.maint-gate-sub {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}
/* _content/AppBasquet.Web.Client.Shared/Components/Nav/ContextualSidebar.razor.rz.scp.css */
.ctx-sidebar {
    width: 260px;
    height: 100vh;
    background: #0f172a;
    color: #f8fafc;
    display: flex;
    flex-direction: column;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ctx-sidebar.collapsed {
    width: 72px;
}

.ctx-sidebar-brand {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 72px;
    overflow: hidden;
    white-space: nowrap;
}

.brand-logo {
    width: 32px;
    height: 32px;
    min-width: 32px;
}

.brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.025em;
    opacity: 1;
    transition: opacity 0.2s;
}

.collapsed .brand-text {
    opacity: 0;
    pointer-events: none;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
    border-radius: 6px;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
}

.ctx-sidebar-nav {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
}

.nav-item.active {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.nav-icon {
    margin-right: 12px;
    font-size: 24px;
    min-width: 24px;
}

.nav-label {
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.collapsed .nav-label {
    opacity: 0;
    pointer-events: none;
}

.nav-badge {
    margin-left: auto;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.ctx-sidebar-footer {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    color: #fca5a5;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.nav-loading {
    padding: 12px;
}

.shimmer {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: loading-b-hzajb20uc0 1.5s infinite;
}

@keyframes loading-b-hzajb20uc0 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
    .ctx-sidebar {
        position: fixed;
        left: -260px;
        transition: left 0.3s;
    }
    .ctx-sidebar.open {
        left: 0;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/NotificationBell.razor.rz.scp.css */
.notification-bell-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.bell-icon {
    position: relative;
    padding: 8px;
    color: var(--bs-body-color, #ffffff);
    transition: color 0.2s ease;
}

.bell-icon:hover {
    color: var(--bs-primary, #0d6efd);
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--bs-body-bg, #1a1a1a);
    border: 1px solid var(--bs-border-color, #333);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1050;
    margin-top: 8px;
    overflow: hidden;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bs-border-color, #333);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-header h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.btn-clear {
    background: none;
    border: none;
    color: var(--bs-primary, #0d6efd);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
}

.btn-clear:hover {
    text-decoration: underline;
}

.dropdown-body {
    max-height: 400px;
    overflow-y: auto;
}

.notification-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-item {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bs-border-color, #333);
    cursor: pointer;
    transition: background 0.2s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.notification-item.unread {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--bs-primary, #0d6efd);
}

.notif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 12px;
    flex-shrink: 0;
}

.notif-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.notif-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.notif-message {
    font-size: 0.85rem;
    color: var(--bs-secondary-color, #aaa);
    margin-bottom: 4px;
    line-height: 1.3;
}

.notif-time {
    font-size: 0.75rem;
    color: var(--bs-tertiary-color, #777);
}
/* _content/AppBasquet.Web.Client.Shared/Components/Planilla/PlanillaAnalisisAutomaticoOverlay.razor.rz.scp.css */
.planilla-auto-overlay-root {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 12px 32px;
    background: rgba(15, 23, 42, 0.72);
    overflow: auto;
}

.planilla-auto-overlay-card {
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 12px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    background: rgba(30, 41, 59, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.planilla-auto-overlay-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.planilla-auto-overlay-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #e2e8f0;
}

.planilla-auto-overlay-hint {
    margin: 0;
    padding: 8px 14px 0;
    color: #94a3b8;
}

.planilla-auto-overlay-stage {
    padding: 12px 14px 16px;
}

.planilla-auto-overlay-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    line-height: 0;
}

.planilla-auto-overlay-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.planilla-auto-box {
    position: absolute;
    box-sizing: border-box;
    border: 2px solid rgba(52, 211, 153, 0.85);
    background: rgba(52, 211, 153, 0.12);
    pointer-events: none;
}

.planilla-auto-box.tipo-equipo-a {
    border-color: rgba(96, 165, 250, 0.95);
    background: rgba(96, 165, 250, 0.12);
}

.planilla-auto-box.tipo-equipo-b {
    border-color: rgba(244, 114, 182, 0.95);
    background: rgba(244, 114, 182, 0.12);
}

.planilla-auto-box.tipo-arbitros {
    border-color: rgba(250, 204, 21, 0.95);
    background: rgba(250, 204, 21, 0.12);
}

.planilla-auto-box.tipo-marcador {
    border-color: rgba(52, 211, 153, 0.95);
    background: rgba(52, 211, 153, 0.12);
}

.planilla-auto-box-lbl {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0f172a;
    background: rgba(248, 250, 252, 0.92);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}
/* _content/AppBasquet.Web.Client.Shared/Components/Planilla/PlanillaOcrDropChips.razor.rz.scp.css */
.planilla-ocr-chips-card--readonly {
    border-color: rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.35);
}

.planilla-ocr-chip--readonly {
    cursor: default;
    border-style: dashed;
    opacity: 0.95;
}

.planilla-ocr-chips-card {
    margin: 0 0 14px 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(129, 140, 248, 0.35);
    background: rgba(15, 23, 42, 0.55);
}

.planilla-ocr-chips-title {
    margin: 0 0 4px 0;
    font-size: 0.88rem;
    font-weight: 800;
    color: #e2e8f0;
}

.planilla-ocr-chips-hint {
    margin: 0 0 10px 0;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.35;
}

.planilla-ocr-chips-selection {
    font-size: 0.74rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    word-break: break-word;
}

.planilla-ocr-chips-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 10px;
}

.planilla-ocr-chips-toolbar-lbl {
    font-size: 0.68rem;
    color: #94a3b8;
    margin-right: 4px;
}

.planilla-ocr-chip-action {
    font-size: 0.65rem !important;
    padding: 4px 10px !important;
    border-radius: 999px;
    border: 1px solid rgba(167, 139, 250, 0.45);
    background: rgba(99, 102, 241, 0.25);
    color: #f1f5f9;
    cursor: pointer;
}

.planilla-ocr-chip-action:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.planilla-ocr-chip-action--ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.35);
    color: #94a3b8;
}

.planilla-ocr-chips-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.planilla-ocr-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(30, 41, 59, 0.9);
    color: #f8fafc;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: grab;
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.planilla-ocr-chip:active {
    cursor: grabbing;
}

.planilla-ocr-chip--selected {
    border-color: rgba(34, 197, 94, 0.65);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    background: rgba(22, 101, 52, 0.35);
}

.planilla-ocr-chip-txt {
    word-break: break-word;
    max-width: 220px;
}

.planilla-ocr-chip--line {
    border-radius: 10px;
    max-width: min(640px, 100%);
}

.planilla-ocr-chip--line .planilla-ocr-chip-txt {
    max-width: min(600px, 96vw);
    white-space: normal;
    line-height: 1.25;
}

.planilla-ocr-chip-sug {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a5b4fc;
    opacity: 0.9;
}
/* _content/AppBasquet.Web.Client.Shared/Components/Planilla/PlanillaOcrDropField.razor.rz.scp.css */
.planilla-ocr-drop-field {
    border-radius: 10px;
    transition: box-shadow 0.15s ease, background 0.15s ease;
}

.planilla-ocr-drop-field--hl:not(.planilla-ocr-drop-field--disabled) {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.55);
    background: rgba(99, 102, 241, 0.06);
}

.planilla-ocr-drop-field--over:not(.planilla-ocr-drop-field--disabled) {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.08);
}

.planilla-ocr-drop-field--disabled {
    opacity: 0.55;
    pointer-events: none;
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerAchievements.razor.rz.scp.css */
.pach-block {
    margin-top: 1.25rem;
}

.pach-head {
    margin-bottom: 0.75rem;
}

.pach-title {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #a1a1aa;
    margin: 0;
    text-transform: uppercase;
}

.pach-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pach-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: pach-in-b-7a5fguidsl 0.45s ease backwards;
    animation-delay: calc(var(--pach-i, 0) * 55ms);
}

@keyframes pach-in-b-7a5fguidsl {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pach-card--common {
    background: linear-gradient(135deg, rgba(39, 39, 48, 0.95), rgba(18, 18, 24, 0.98));
}

.pach-card--epic {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.22), rgba(18, 18, 26, 0.96));
    border-color: rgba(129, 140, 248, 0.35);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.18);
}

.pach-card--legendary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(124, 58, 237, 0.18), rgba(12, 12, 18, 0.96));
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 0 32px rgba(245, 158, 11, 0.22);
}

.pach-glow {
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
}

.pach-ic {
    position: relative;
    z-index: 1;
    font-size: 1.5rem !important;
    color: #fbbf24;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.35));
}

.pach-card--epic .pach-ic {
    color: #a5b4fc;
}

.pach-card--legendary .pach-ic {
    color: #fde68a;
}

.pach-text {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pach-text strong {
    font-size: 0.88rem;
    color: #fafafa;
    font-weight: 900;
}

.pach-text span {
    font-size: 0.72rem;
    color: #a1a1aa;
    line-height: 1.35;
}

.pach-time {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #52525b;
    margin-top: 0.15rem;
}

.pach-rarity {
    position: relative;
    z-index: 1;
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.45rem;
    border-radius: 8px;
    align-self: center;
    background: rgba(0, 0, 0, 0.35);
    color: #d4d4d8;
}

.pach-card--legendary .pach-rarity {
    color: #fde68a;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.pach-card--epic .pach-rarity {
    color: #c7d2fe;
    border: 1px solid rgba(129, 140, 248, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .pach-card {
        animation: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerActivity.razor.rz.scp.css */
.pact-block {
    padding: 0;
}

.pact-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.pact-title {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #a1a1aa;
    margin: 0;
    text-transform: uppercase;
}

.pact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(22, 22, 30, 0.95), rgba(12, 12, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    animation: pact-in-b-f39w61cgev 0.5s ease backwards;
    animation-delay: var(--pact-delay, 0ms);
}

@keyframes pact-in-b-f39w61cgev {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pact-icon .material-icons {
    font-size: 1.2rem !important;
}

.pact-icon--game {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.15);
}

.pact-icon--train {
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.15);
}

.pact-icon--misc {
    background: rgba(167, 139, 250, 0.1);
    color: #c4b5fd;
}

.pact-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pact-date {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #71717a;
    text-transform: uppercase;
}

.pact-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.pact-btn strong,
.pact-static strong {
    display: block;
    color: #fafafa;
    font-size: 0.88rem;
    font-weight: 800;
}

.pact-btn span,
.pact-static span {
    font-size: 0.72rem;
    color: #71717a;
    line-height: 1.35;
}

.pact-empty {
    color: #52525b;
    font-size: 0.85rem;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .pact-item {
        animation: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerCompetitionPanel.razor.rz.scp.css */
.pc-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pc-team {
    border: 1px solid #27272a;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(26, 26, 34, 0.98), rgba(14, 14, 20, 0.98));
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.pc-team[open] {
    border-color: rgba(245, 158, 11, 0.28);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(245, 158, 11, 0.08);
}

.pc-team-summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    cursor: pointer;
    user-select: none;
}

.pc-team-summary::-webkit-details-marker {
    display: none;
}

.pc-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #27272a;
    border: 1px solid #3f3f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #f59e0b;
    overflow: hidden;
    flex-shrink: 0;
}

.pc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-summary-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pc-summary-top {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    min-width: 0;
}

.pc-team-name {
    font-size: 0.95rem;
    font-weight: 900;
    color: #fafafa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-jersey {
    font-size: 0.75rem;
    font-weight: 900;
    color: #f59e0b;
    flex-shrink: 0;
}

.pc-summary-sub {
    font-size: 0.72rem;
    color: #71717a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-chevron {
    color: #52525b;
    flex-shrink: 0;
    transition: transform 0.15s ease, color 0.15s ease;
}

.pc-team[open] .pc-chevron {
    transform: rotate(180deg);
    color: #f59e0b;
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 1rem 0.75rem;
}

.pc-competitions {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border-top: 1px solid #1c1c21;
}

.pc-comp {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 18, 21, 0.75);
    border-radius: 14px;
    padding: 0.75rem 0.85rem;
}

.pc-comp-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pc-comp-title {
    flex: 1;
    min-width: 0;
}

.pc-comp-title strong {
    display: block;
    color: #e4e4e7;
    font-size: 0.88rem;
}

.pc-comp-meta {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.7rem;
    color: #71717a;
    line-height: 1.35;
}

.pc-comp-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
    flex-shrink: 0;
}

.pc-pill {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    color: #0a0a0f;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pc-pill--inactive {
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #3f3f46;
}

.pc-comp-notes {
    margin-top: 0.45rem;
    font-size: 0.72rem;
    color: #a1a1aa;
}

.pc-actions {
    margin-top: 0.6rem;
    display: flex;
    justify-content: flex-end;
}

.pc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.55rem;
    border-radius: 10px;
    border: 1px solid #27272a;
    background: rgba(24, 24, 27, 0.6);
    color: #a5b4fc;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
}

.pc-link:hover {
    border-color: rgba(167, 139, 250, 0.35);
    color: #c4b5fd;
}

.pc-link .material-icons {
    font-size: 1.05rem !important;
}

@media (max-width: 519px) {
    .pc-team-name,
    .pc-summary-sub {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
    }
}

/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerHeader.razor.rz.scp.css */
.ph-hero {
    position: relative;
    padding: 1.5rem 1.1rem 1.35rem;
    margin-bottom: 0.35rem;
    overflow: hidden;
}

.ph-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 130% 90% at 50% -25%, rgba(124, 58, 237, 0.42), transparent 58%),
        radial-gradient(ellipse 70% 55% at 100% 110%, rgba(249, 115, 22, 0.18), transparent 52%),
        radial-gradient(ellipse 50% 40% at 0% 95%, rgba(245, 158, 11, 0.12), transparent 48%),
        linear-gradient(185deg, #07070c 0%, #050508 55%, #09090b 100%);
    border-radius: 0 0 26px 26px;
}

.ph-hero-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: 18%;
    transform: translate(-50%, -40%);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 68%);
    filter: blur(28px);
    pointer-events: none;
    opacity: 0.9;
}

.ph-hero-noise {
    position: absolute;
    inset: 0;
    border-radius: 0 0 26px 26px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
    opacity: 0.06;
    pointer-events: none;
}

.ph-hero-toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0.45rem;
    justify-content: flex-end;
    margin: -0.15rem 0 0.25rem;
}

.ph-btn-edit,
.ph-btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.72rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(16, 16, 22, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #a1a1aa;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

.ph-btn-edit .material-icons,
.ph-btn-logout .material-icons {
    font-size: 1.05rem !important;
    opacity: 0.88;
}

.ph-btn-edit {
    color: #fde68a;
    border-color: rgba(245, 158, 11, 0.35);
}

.ph-btn-edit:hover {
    border-color: rgba(245, 158, 11, 0.55);
    color: #fef3c7;
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.22);
}

.ph-btn-logout:hover {
    border-color: rgba(248, 113, 113, 0.45);
    color: #fecaca;
    box-shadow: 0 0 18px rgba(248, 113, 113, 0.15);
}

.ph-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 520px) {
    .ph-hero-inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.35rem;
    }
}

.ph-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.ph-avatar-btn {
    display: block;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 22px;
}

.ph-avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(124, 58, 237, 0.75), rgba(249, 115, 22, 0.65));
    opacity: 0.95;
    filter: blur(0.5px);
    animation: ph-pulse-b-ahzt7m9mgq 3.2s ease-in-out infinite;
}

@keyframes ph-pulse-b-ahzt7m9mgq {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.ph-avatar-img {
    position: relative;
    width: 124px;
    height: 124px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(12, 12, 16, 0.95);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(245, 158, 11, 0.22);
}

.ph-avatar-ph {
    position: relative;
    width: 124px;
    height: 124px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1e1e24 0%, #12121a 100%);
    border: 2px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.ph-avatar-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 170px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 20;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.ph-avatar-menu-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.03);
    color: #e4e4e7;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.42rem 0.5rem;
    cursor: pointer;
    text-align: left;
}

.ph-avatar-menu-item:hover {
    border-color: rgba(245, 158, 11, 0.35);
    color: #fde68a;
}

.ph-avatar-initial {
    position: relative;
    font-size: 2.85rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    user-select: none;
}

.ph-num-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    min-width: 2.4rem;
    padding: 0.22rem 0.48rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #0a0a0f;
    font-size: 0.78rem;
    font-weight: 900;
    border-radius: 10px;
    border: 2px solid #09090b;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.ph-text {
    flex: 1;
    min-width: 0;
}

.ph-kicker {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    color: #71717a;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
}

.ph-name {
    font-size: clamp(1.55rem, 5.5vw, 2rem);
    font-weight: 900;
    color: #fafafa;
    margin: 0 0 0.6rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.ph-fullname {
    margin: -0.25rem 0 0.55rem;
    color: #a1a1aa;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ph-banner-line {
    height: 3px;
    width: min(260px, 68%);
    border-radius: 999px;
    margin: 0.1rem 0 0.55rem;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.95), rgba(124, 58, 237, 0.75), rgba(34, 197, 94, 0.6));
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.25);
}

.ph-account {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    margin: -0.15rem 0 0.6rem;
    padding: 0.45rem 0.55rem;
    border-radius: 12px;
    background: rgba(10, 10, 14, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ph-account-row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.ph-account-k {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #71717a;
}

.ph-account-v {
    font-size: 0.76rem;
    color: #d4d4d8;
    font-weight: 700;
}

.ph-account-v.ok {
    color: #6ee7b7;
}

.ph-account-v.pending {
    color: #facc15;
}

.ph-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    margin-bottom: 0.65rem;
}

@media (min-width: 520px) {
    .ph-meta {
        justify-content: flex-start;
    }
}

.ph-chip {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ph-chip--pos {
    background: rgba(124, 58, 237, 0.2);
    color: #ddd6fe;
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.ph-chip--status {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    border: 1px solid #3f3f46;
    background: rgba(0, 0, 0, 0.25);
}

.ph-chip-ic {
    font-size: 0.95rem !important;
}

.ph-btn-photo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.15rem;
    padding: 0.5rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #e4e4e7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.15s;
}

.ph-btn-photo .material-icons {
    font-size: 1.05rem !important;
    color: #fbbf24;
}

.ph-chevron {
    font-size: 1.1rem !important;
    opacity: 0.7;
}

.ph-btn-photo:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.18);
}

.ph-born {
    margin: 0.45rem 0 0;
    font-size: 0.68rem;
    color: #52525b;
}

.ph-hint {
    margin: 0.65rem 0 0;
    font-size: 0.7rem;
    color: #52525b;
    font-weight: 600;
    line-height: 1.4;
    max-width: 22rem;
}

@media (min-width: 520px) {
    .ph-hint {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ph-avatar-ring {
        animation: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerPhotoModal.razor.rz.scp.css */
.ppm-root {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.ppm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 8, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ppm-panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 520px);
    max-height: min(88vh, 720px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.ppm-close {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(24, 24, 32, 0.75);
    color: #e4e4e7;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ppm-close:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

.ppm-close .material-icons {
    font-size: 1.35rem !important;
}

.ppm-stage {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 24px 64px rgba(0, 0, 0, 0.65),
        0 0 48px rgba(124, 58, 237, 0.25);
    background: #0a0a0f;
    touch-action: manipulation;
}

.ppm-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(72vh, 640px);
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.ppm-img--zoom {
    transform: scale(1.65);
    cursor: zoom-out;
}

.ppm-hint {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #71717a;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .ppm-img {
        transition: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerProfileDashboard.razor.rz.scp.css */
/* Jugador dashboard â€” estilo app deportiva (dark, cards, tipografÃ­a clara) */

.pv-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 600;
}

.pv-loader-ring {
    width: 44px;
    height: 44px;
    border: 3px solid #27272a;
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: pv-spin-b-wpg2m65wo6 0.75s linear infinite;
}

@keyframes pv-spin-b-wpg2m65wo6 {
    to { transform: rotate(360deg); }
}

.pv-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: #f87171;
    max-width: 420px;
    margin: 0 auto;
}

.pv-error .material-icons {
    font-size: 2.5rem;
    opacity: 0.9;
}

.pv-btn-retry {
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0a0a0f;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.pv-btn-retry:hover {
    filter: brightness(1.06);
}

/* â”€â”€ Empty â”€â”€ */
.pv-empty {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
}

.pv-empty-visual {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #3f3f46 0%, #18181b 70%);
    border: 2px solid #3f3f46;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.pv-empty-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fafafa;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.pv-empty-msg {
    color: #a1a1aa;
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
    line-height: 1.45;
}

.pv-empty-hint {
    color: #52525b;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* â”€â”€ Shell â”€â”€ */
.pv-shell {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2.5rem;
    background:
        radial-gradient(ellipse 90% 60% at 50% -15%, rgba(88, 28, 135, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 45% at 100% 20%, rgba(234, 88, 12, 0.12), transparent 50%),
        #050508;
    min-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Mi Perfil coach: el shell es flex; el scroll lo aplica la pÃ¡gina (AcademiaDashboard) sobre .pv-tab-panel */
.pv-shell--coach-academia-scroll {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

/* Incrustado en academia dashboard: sin hero duplicado */
.pv-shell--no-hero {
    min-height: auto;
}

.pv-shell--no-hero .pv-tabs-scroll {
    padding-top: 0.75rem;
}

/* Identidad embebida: estilos en PlayerProfileEmbedIdentity.razor.css (scoped al subcomponente). */

/* â”€â”€ Tabs (sticky, scroll horizontal mÃ³vil) â”€â”€ */
/* SiteLayout oculta #site-nav en /jugador/* â†’ pegar al borde superior del viewport */
.pv-tabs {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.97) 0%, rgba(9, 9, 11, 0.92) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #18181b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pv-tabs-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.65rem 1rem 0.75rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3f3f46 transparent;
}

.pv-tabs-scroll::-webkit-scrollbar {
    height: 4px;
}

.pv-tabs-scroll::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 4px;
}

.pv-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #27272a;
    background: rgba(24, 24, 27, 0.9);
    color: #a1a1aa;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.pv-tab:hover {
    color: #e4e4e7;
    border-color: #3f3f46;
}

.pv-tab--active {
    color: #0a0a0f;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.pv-tab-panel {
    min-height: 40vh;
}

.pv-tab-panel > .pv-block:first-child {
    padding-top: 1rem;
}

.pv-hero-hint {
    margin: 0.75rem 0 0;
    font-size: 0.72rem;
    color: #52525b;
    font-weight: 600;
    line-height: 1.35;
    max-width: 22rem;
}

@media (min-width: 520px) {
    .pv-hero-hint {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }
}

.pv-liga-chips--panel {
    justify-content: flex-start;
    padding: 0 0 0.5rem;
}

.pv-block-pad {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

/* â”€â”€ Hero â”€â”€ */
.pv-hero {
    position: relative;
    padding: 1.75rem 1.25rem 1.5rem;
    margin-bottom: 0.5rem;
}

.pv-hero-toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin: -0.25rem 0 0.35rem;
    padding: 0 0.15rem;
}

.pv-btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #3f3f46;
    background: rgba(24, 24, 27, 0.85);
    color: #a1a1aa;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pv-btn-logout .material-icons {
    font-size: 1.1rem !important;
    opacity: 0.85;
}

.pv-btn-logout:hover {
    border-color: rgba(248, 113, 113, 0.45);
    color: #fecaca;
    background: rgba(127, 29, 29, 0.2);
}

.pv-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 58, 237, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(245, 158, 11, 0.12), transparent 50%),
        linear-gradient(180deg, #0c0c12 0%, #09090b 100%);
    border-radius: 0 0 22px 22px;
}

.pv-hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    z-index: 1;
}

@media (min-width: 520px) {
    .pv-hero-inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.25rem;
    }
}

.pv-hero-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.pv-hero-avatar {
    width: 112px;
    height: 112px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(245, 158, 11, 0.65);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pv-hero-avatar--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #27272a 0%, #18181b 100%);
    border: 2px solid rgba(245, 158, 11, 0.5);
}

.pv-hero-initial {
    font-size: 2.75rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
    user-select: none;
}

.pv-num-chip {
    position: absolute;
    bottom: -6px;
    right: -6px;
    min-width: 2.25rem;
    padding: 0.2rem 0.45rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0a0a0f;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 8px;
    border: 2px solid #09090b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pv-hero-text {
    flex: 1;
    min-width: 0;
}

.pv-hero-kicker {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #71717a;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
}

.pv-hero-name {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    font-weight: 900;
    color: #fafafa;
    margin: 0 0 0.65rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pv-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 520px) {
    .pv-hero-meta {
        justify-content: flex-start;
    }
}

.pv-pill {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #a1a1aa;
    border: 1px solid #3f3f46;
}

.pv-pill--pos {
    background: rgba(124, 58, 237, 0.15);
    color: #c4b5fd;
    border-color: rgba(124, 58, 237, 0.35);
}

.pv-hero-line {
    margin: 0.15rem 0 0;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

@media (min-width: 520px) {
    .pv-hero-line {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }
}

.pv-hero-line-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #52525b;
    text-transform: uppercase;
}

.pv-hero-line-val {
    font-weight: 700;
    color: #e4e4e7;
}

.pv-hero-line--league .pv-hero-line-val {
    color: #a1a1aa;
    font-weight: 600;
    font-size: 0.82rem;
}

.pv-hero-muted {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #52525b;
    font-weight: 600;
}

/* â”€â”€ Ficha (edad, estatura, peso, jersey) + estado â”€â”€ */
.pv-ficha {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.75rem 0.65rem;
    background: rgba(24, 24, 27, 0.65);
    border: 1px solid #27272a;
    border-radius: 14px;
}

.pv-ficha-item {
    text-align: center;
    min-width: 0;
}

.pv-ficha-lbl {
    display: block;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #52525b;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.pv-ficha-val {
    font-size: 1rem;
    font-weight: 900;
    color: #fafafa;
    font-variant-numeric: tabular-nums;
}

.pv-ficha-born {
    margin: 0.5rem 0 0;
    font-size: 0.68rem;
    color: #52525b;
    text-align: center;
    width: 100%;
}

.pv-pill--status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #3f3f46;
    background: rgba(0, 0, 0, 0.2);
}

.pv-pill-ic {
    font-size: 0.95rem !important;
    opacity: 0.9;
}

.pv-injury {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-top: 0.85rem;
    padding: 0.75rem 0.85rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    border-radius: 12px;
    text-align: left;
    width: 100%;
}

.pv-injury-ic {
    color: #f87171;
    flex-shrink: 0;
    font-size: 1.35rem !important;
}

.pv-injury-body {
    min-width: 0;
}

.pv-injury-title {
    display: block;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #fca5a5;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pv-injury-text {
    margin: 0;
    font-size: 0.82rem;
    color: #e4e4e7;
    line-height: 1.45;
}

.pv-injury-dates {
    margin: 0.4rem 0 0;
    font-size: 0.72rem;
    color: #a1a1aa;
}

.pv-team-jersey {
    font-weight: 800;
    color: #f59e0b;
}

.pv-liga-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 1.25rem 0.75rem;
    justify-content: center;
}

.pv-chip {
    font-size: 0.65rem;
    font-weight: 700;
    color: #a1a1aa;
    background: rgba(39, 39, 42, 0.8);
    border: 1px solid #3f3f46;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    max-width: 100%;
    text-align: left;
    line-height: 1.3;
}

.pv-game-row--past {
    opacity: 0.95;
}

.pv-game-stats {
    font-size: 0.78rem;
    font-weight: 900;
    color: #f59e0b;
    flex-shrink: 0;
    min-width: 3rem;
    text-align: right;
}

.pv-section--timeline {
    border-top: 1px solid #18181b;
    margin-top: 0.35rem;
}

.pv-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pv-timeline-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #1c1c21;
}

.pv-timeline-item:last-child {
    border-bottom: none;
}

.pv-timeline-date {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #71717a;
}

.pv-timeline-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.pv-timeline-btn strong {
    display: block;
    color: #fafafa;
    font-size: 0.85rem;
}

.pv-timeline-btn span {
    font-size: 0.72rem;
    color: #71717a;
}

.pv-timeline-static strong {
    display: block;
    color: #e4e4e7;
    font-size: 0.85rem;
}

.pv-timeline-static span {
    font-size: 0.72rem;
    color: #71717a;
}

.pv-metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: #a5b4fc;
}

@media (max-width: 380px) {
    .pv-ficha {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* â”€â”€ Stats (FIFA / rating) â”€â”€ */
.pv-block {
    padding: 1.25rem 1.25rem 1.5rem;
}

.pv-block-title {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #52525b;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.pv-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.pv-stat-card {
    background: linear-gradient(165deg, #18181b 0%, #121215 100%);
    border: 1px solid #27272a;
    border-radius: 14px;
    padding: 1rem 0.65rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pv-stat-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #f59e0b;
    margin-bottom: 0.35rem;
}

.pv-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fafafa;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.pv-stat-sub {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    color: #52525b;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pv-pj-note {
    margin: 1rem 0 0;
    font-size: 0.72rem;
    color: #71717a;
    text-align: center;
}

.pv-pj-note strong {
    color: #a1a1aa;
    font-weight: 800;
}

.pv-stat-scope {
    margin: -0.35rem 0 1rem;
    font-size: 0.72rem;
    color: #71717a;
    line-height: 1.4;
}

.pv-stat-scope--tight {
    margin-top: 0;
    margin-bottom: 0.85rem;
}

.pv-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin: -0.25rem 0 1rem;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    background: rgba(24, 24, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pv-filter-bar--photo {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.pv-photo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem 1rem;
    width: 100%;
}

.pv-photo-title {
    width: 100%;
    margin-bottom: 0.1rem;
}

.pv-photo-preview {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0c0c10;
}

.pv-photo-preview img {
    display: block;
    object-fit: cover;
}

.pv-photo-url-wrap {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pv-photo-hint {
    margin: 0;
    font-size: 0.72rem;
    color: #71717a;
    line-height: 1.45;
}

.pv-photo-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.pv-photo-file {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e4e4e7;
    max-width: 100%;
}

.pv-btn-retry--ghost {
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fbbf24;
}

.pv-photo-upload-msg {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.pv-photo-upload-msg--ok {
    color: #34d399;
}

.pv-photo-upload-msg--err {
    color: #f87171;
}

.pv-crop-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pv-crop-modal {
    width: min(540px, 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #101018;
    padding: 1rem;
}

.pv-crop-modal h3 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: #f4f4f5;
    font-weight: 900;
}

.pv-crop-frame {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1;
    margin: 0.75rem auto;
    border-radius: 16px;
    border: 1px solid rgba(245, 177, 0, 0.45);
    overflow: hidden;
    background: #050507;
    position: relative;
    cursor: grab;
    touch-action: none;
}

.pv-crop-frame img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-crop-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.pv-crop-controls label {
    color: #d4d4d8;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pv-next-game {
    width: 100%;
    margin: 0 0 0.9rem;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 16px;
    background:
        radial-gradient(circle at 10% -10%, rgba(245, 158, 11, 0.24), transparent 38%),
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.24), transparent 46%),
        linear-gradient(155deg, #11111a, #09090e);
    color: #f4f4f5;
    text-align: left;
    cursor: pointer;
    padding: 0.8rem 0.95rem;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.pv-next-game-k {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    font-weight: 900;
    color: #fbbf24;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pv-next-game-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pv-next-game-main strong {
    font-size: 1rem;
    font-weight: 900;
}

.pv-next-game-vs {
    color: #a1a1aa;
    font-size: 0.68rem;
    font-weight: 800;
}

.pv-next-game-meta {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.pv-next-game-meta span {
    font-size: 0.66rem;
    color: #d4d4d8;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.22rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.pv-mini-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pv-mini-kpi {
    padding: 0.58rem 0.64rem;
    border-radius: 12px;
    border: 1px solid #27272a;
    background: #101015;
}

.pv-mini-kpi-l {
    display: block;
    font-size: 0.57rem;
    color: #71717a;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.pv-mini-kpi strong {
    font-size: 1rem;
    color: #fafafa;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.pv-filter-lbl {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #71717a;
    text-transform: uppercase;
}

.pv-filter-select {
    flex: 1;
    min-width: 140px;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    border: 1px solid #3f3f46;
    background: #12121a;
    color: #e4e4e7;
    font-size: 0.78rem;
    font-weight: 600;
}

/* â”€â”€ Secciones Liga / Academia â”€â”€ */
.pv-section {
    margin: 0;
    padding-bottom: 0.25rem;
}

.pv-section--league {
    border-top: 1px solid #18181b;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, transparent 120px);
}

.pv-section--academy {
    border-top: 1px solid #18181b;
    margin-top: 0.5rem;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, transparent 140px);
}

.pv-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.35rem 1.25rem 1rem;
}

.pv-section-ic {
    font-size: 1.75rem !important;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pv-section--academy .pv-section-ic {
    color: #a5b4fc;
}

.pv-section-head-text {
    min-width: 0;
}

.pv-section-title {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fafafa;
}

.pv-section-desc {
    margin: 0;
    font-size: 0.78rem;
    color: #71717a;
    line-height: 1.45;
}

.pv-table-hint {
    margin: -0.35rem 0 0.75rem;
    font-size: 0.68rem;
    color: #52525b;
    line-height: 1.35;
}

/* â”€â”€ Teams â”€â”€ */
.pv-team-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pv-team-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
    color: inherit;
    font: inherit;
}

.pv-team-row:hover {
    border-color: rgba(245, 158, 11, 0.35);
    background: #1c1c21;
}

.pv-team-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #27272a;
    border: 1px solid #3f3f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.pv-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-team-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pv-team-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fafafa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-team-league {
    font-size: 0.72rem;
    color: #71717a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-team-chevron {
    font-size: 1.25rem !important;
    color: #3f3f46;
    flex-shrink: 0;
}

.pv-team-row:hover .pv-team-chevron {
    color: #f59e0b;
}

.pv-team-row--premium {
    background: linear-gradient(145deg, rgba(26, 26, 34, 0.98), rgba(14, 14, 20, 0.98)) !important;
    border: 1px solid rgba(124, 58, 237, 0.22) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pv-team-row--premium:hover {
    border-color: rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(245, 158, 11, 0.12);
}

.pv-muted {
    color: #52525b;
    font-size: 0.85rem;
    margin: 0;
}

.pv-block--soft {
    background: rgba(24, 24, 27, 0.5);
    border-bottom: 1px solid #18181b;
}

.pv-block--private {
    border-left: 3px solid rgba(99, 102, 241, 0.45);
}

.pv-badge-private {
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    vertical-align: middle;
    margin-left: 0.35rem;
}

/* Games */
.pv-games {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.pv-game-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    background: #121215;
    border: 1px solid #27272a;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font: inherit;
    transition: border-color 0.15s;
}

.pv-game-row:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.pv-game-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
    padding: 0.35rem 0.45rem;
    background: #18181b;
    border-radius: 10px;
    border: 1px solid #27272a;
}

.pv-game-day {
    font-size: 1.15rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
}

.pv-game-mon {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #71717a;
}

.pv-game-mid {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pv-game-mid strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fafafa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-game-mid span {
    font-size: 0.68rem;
    color: #71717a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-game-time {
    font-size: 0.78rem;
    font-weight: 800;
    color: #a1a1aa;
    flex-shrink: 0;
}

/* Table */
.pv-table-wrap {
    overflow-x: auto;
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
}

.pv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.pv-table th {
    text-align: left;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #52525b;
    padding: 0.5rem 0.4rem;
    border-bottom: 1px solid #27272a;
    text-transform: uppercase;
}

.pv-table td {
    padding: 0.55rem 0.4rem;
    border-bottom: 1px solid #1c1c21;
    color: #a1a1aa;
    text-align: center;
}

.pv-table td:first-child {
    text-align: left;
}

.pv-td-name {
    color: #e4e4e7 !important;
    font-weight: 700;
}

.pv-td-accent {
    color: #f59e0b !important;
    font-weight: 800;
}

/* Rank */
.pv-rank-foot {
    font-size: 0.68rem;
    color: #52525b;
    margin: 0 0 0.75rem;
}

.pv-rank-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1c1c21;
    font-size: 0.82rem;
}

.pv-rank-row:last-child {
    border-bottom: none;
}

.pv-rank-lbl {
    width: 2.5rem;
    font-weight: 900;
    color: #71717a;
    font-size: 0.7rem;
}

.pv-rank-val {
    flex: 1;
    font-weight: 900;
    color: #fafafa;
}

.pv-rank-pct {
    font-size: 0.65rem;
    font-weight: 800;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
}

/* Progress */
.pv-prog-scope {
    margin: -0.35rem 0 0.65rem;
    font-size: 0.68rem;
    color: #52525b;
    line-height: 1.35;
}

.pv-prog-head {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pv-prog-badge {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
}

.pv-prog-badge.mejora {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.pv-prog-badge.baja {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.pv-prog-badge.estable {
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border: 1px solid #3f3f46;
}

.pv-prog-msg {
    margin: 0;
    font-size: 0.8rem;
    color: #71717a;
    line-height: 1.45;
}

.pv-rachas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.65rem;
}

.pv-racha {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
}

.pv-racha.pos {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.pv-racha.neg {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

/* Logros */
.pv-logros {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pv-logro {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.pv-logro-ic {
    font-size: 1.25rem !important;
    color: #f59e0b;
    flex-shrink: 0;
}

.pv-logro strong {
    display: block;
    font-size: 0.85rem;
    color: #e4e4e7;
    margin-bottom: 0.15rem;
}

.pv-logro span {
    font-size: 0.72rem;
    color: #71717a;
}

/* Academia (cards) */
.pv-acad-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.75rem 0.85rem;
    background: #121215;
    border: 1px solid #27272a;
    border-radius: 12px;
}

.pv-acad-card:first-of-type {
    margin-top: 0;
}

.pv-acad-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3f3f46;
    flex-shrink: 0;
    background: #18181b;
}

.pv-acad-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-acad-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.pv-acad-body strong {
    font-size: 0.9rem;
    color: #e4e4e7;
}

.pv-acad-body span {
    font-size: 0.72rem;
    color: #71717a;
}

.pv-acad-card--link {
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.pv-acad-card--link:hover {
    border-color: #3f3f46;
    background: #16161a;
}

.pv-acad-chevron {
    margin-left: auto;
    font-size: 1.25rem !important;
    color: #52525b;
    flex-shrink: 0;
}

/* Historial mÃ©dico (hero) */
.pv-hm {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-top: 0.85rem;
    padding: 0.75rem 0.85rem;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 12px;
    text-align: left;
    width: 100%;
}

.pv-hm-ic {
    color: #60a5fa;
    flex-shrink: 0;
    font-size: 1.35rem !important;
}

.pv-hm-body {
    min-width: 0;
}

.pv-hm-title {
    display: block;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #93c5fd;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pv-hm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.pv-pill--hm {
    border-color: rgba(96, 165, 250, 0.45);
    color: #bfdbfe;
    background: rgba(0, 0, 0, 0.2);
}

.pv-pill--recover {
    border-color: rgba(245, 158, 11, 0.45);
    color: #fcd34d;
}

.pv-hm-text {
    margin: 0;
    font-size: 0.82rem;
    color: #e4e4e7;
    line-height: 1.45;
}

.pv-hm-meta {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    color: #a1a1aa;
}

.pv-hm-notes {
    margin: 0.4rem 0 0;
    font-size: 0.72rem;
    color: #71717a;
    font-style: italic;
    line-height: 1.4;
}

.pv-hm-ok {
    margin: 0;
    font-size: 0.8rem;
    color: #86efac;
    font-weight: 600;
}

/* Equipo formaciÃ³n + links */
.pv-form-team {
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1c1c21;
}

.pv-form-team:first-of-type {
    margin-top: 0;
}

.pv-form-team:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pv-form-team-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    padding: 0.35rem 0;
}

.pv-form-team-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.pv-form-team-text strong {
    font-size: 0.88rem;
    color: #fafafa;
}

.pv-form-team-text span {
    font-size: 0.72rem;
    color: #71717a;
}

.pv-form-team-chevron {
    font-size: 1.25rem !important;
    color: #52525b;
    flex-shrink: 0;
}

.pv-form-team-link {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.72rem;
    font-weight: 700;
    color: #60a5fa;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Resumen desarrollo + mapa tiros */
.pv-dev-summary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pv-dev-stat {
    flex: 1;
    min-width: 120px;
    padding: 0.65rem 0.75rem;
    background: #121215;
    border: 1px solid #27272a;
    border-radius: 10px;
}

.pv-dev-stat-lbl {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #71717a;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.pv-dev-stat-val {
    font-size: 1.05rem;
    font-weight: 900;
    color: #fafafa;
    font-variant-numeric: tabular-nums;
}

.pv-saw-host {
    margin-top: 0.75rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* SecciÃ³n historial completo */
.pv-section--history {
    margin-top: 0.25rem;
}

.pv-history-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pv-history-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    border-bottom: 1px solid #1c1c21;
    padding: 0.55rem 0;
}

.pv-history-row:last-child {
    border-bottom: none;
}

.pv-history-date {
    font-size: 0.65rem;
    font-weight: 800;
    color: #a1a1aa;
    width: 3.25rem;
    flex-shrink: 0;
}

.pv-history-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.pv-history-main strong {
    font-size: 0.82rem;
    color: #e4e4e7;
}

.pv-history-main span {
    font-size: 0.68rem;
    color: #71717a;
}

.pv-history-stat {
    font-size: 0.75rem;
    font-weight: 800;
    color: #f59e0b;
    flex-shrink: 0;
}

.pv-history-stat-ic {
    font-size: 1.15rem !important;
    color: #52525b;
    flex-shrink: 0;
}

.pv-hm-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pv-hm-li {
    display: flex;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #1c1c21;
}

.pv-hm-li:last-child {
    border-bottom: none;
}

.pv-hm-li-date {
    font-size: 0.65rem;
    font-weight: 800;
    color: #60a5fa;
    width: 4.5rem;
    flex-shrink: 0;
}

.pv-hm-li-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pv-hm-li-body strong {
    font-size: 0.8rem;
    color: #e4e4e7;
}

.pv-hm-li-body > span {
    font-size: 0.72rem;
    color: #a1a1aa;
    line-height: 1.35;
}

.pv-hm-li-rec {
    font-size: 0.68rem !important;
    color: #86efac !important;
}

/* Train */
.pv-train {
    display: flex;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #1c1c21;
}

.pv-train:last-child {
    border-bottom: none;
}

.pv-train-date {
    font-size: 0.65rem;
    font-weight: 900;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    align-self: flex-start;
}

.pv-train strong {
    display: block;
    font-size: 0.82rem;
    color: #e4e4e7;
}

.pv-train span {
    font-size: 0.7rem;
    color: #71717a;
}

.pv-train--link {
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    border-bottom: 1px solid #1c1c21;
    align-items: flex-start;
}

.pv-train--link:last-child {
    border-bottom: none;
}

.pv-train-mid {
    flex: 1;
    min-width: 0;
}

.pv-train-go {
    align-self: center;
    font-size: 1.1rem !important;
    color: #52525b;
    flex-shrink: 0;
}

@media (max-width: 380px) {
    .pv-stat-num {
        font-size: 1.65rem;
    }

    .pv-hero-avatar,
    .pv-hero-avatar--ph {
        width: 96px;
        height: 96px;
    }
}

/* â€”â€” MÃ³vil: una columna, cards a ancho completo, menos saturaciÃ³n â€”â€” */
@media (max-width: 519px) {
    .pv-shell {
        padding-bottom: 1.75rem;
    }

    .pv-hero {
        padding: 1.35rem 1rem 1.25rem;
    }

    .pv-block {
        padding: 1rem 1rem 1.25rem;
    }

    .pv-block-pad {
        padding: 0 1rem 1rem;
    }

    .pv-section-head {
        padding: 1.1rem 1rem 0.85rem;
    }

    .pv-liga-chips {
        padding: 0 1rem 0.65rem;
    }

    .pv-stat-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pv-ficha {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pv-tabs-scroll {
        padding: 0.55rem 0.75rem 0.65rem;
    }

    .pv-game-row {
        flex-wrap: wrap;
        align-items: flex-start;
        row-gap: 0.25rem;
    }

    .pv-game-stats {
        flex: 1 1 100%;
        text-align: right;
        min-width: 0;
    }

    .pv-game-mid strong,
    .pv-game-mid span {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
    }

    .pv-team-name,
    .pv-team-league {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
    }
}

/* â”€â”€ Perfil: correo, posiciones mÃºltiples, sheet â”€â”€ */
.pv-filter-bar--stack {
    flex-direction: column;
    align-items: stretch;
}

.pv-email-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.pv-email-input {
    flex: 1 1 180px;
    min-width: 0;
}

.pv-email-verify-row {
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-end;
}

.pv-email-verify-row .pv-filter-select {
    flex: 1 1 140px;
}

.pv-email-badge {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pv-email-badge--ok {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.pv-email-badge--warn {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.pv-email-badge--bad {
    background: rgba(248, 113, 113, 0.14);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.pv-email-badge--muted {
    background: rgba(161, 161, 170, 0.12);
    color: #a1a1aa;
    border: 1px solid rgba(113, 113, 122, 0.35);
}

.pv-pos-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.pv-pos-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(39, 39, 42, 0.95);
    border: 1px solid #3f3f46;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e4e4e7;
}

.pv-pos-chip-x {
    appearance: none;
    border: none;
    background: transparent;
    color: #a1a1aa;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0 0.15rem;
}

.pv-pos-chip-x:hover {
    color: #f87171;
}

.pv-pos-add {
    appearance: none;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: 10px;
    border: 1px dashed #52525b;
    background: transparent;
    color: #d4d4d8;
    font-weight: 700;
    font-size: 0.78rem;
}

.pv-pos-add:hover {
    border-color: #f59e0b;
    color: #fbbf24;
}

.pv-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(0, 0, 0, 0.55);
}

.pv-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 121;
    max-height: min(78vh, 520px);
    overflow: auto;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    background: linear-gradient(185deg, #14141a 0%, #0c0c10 100%);
    border: 1px solid #27272a;
    border-bottom: none;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pv-sheet-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #fafafa;
}

.pv-sheet-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 40vh;
    overflow: auto;
}

.pv-sheet-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.35rem;
    border-radius: 8px;
    cursor: pointer;
    color: #e4e4e7;
    font-size: 0.85rem;
}

.pv-sheet-item:hover {
    background: rgba(39, 39, 42, 0.65);
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerProfileEmbedIdentity.razor.rz.scp.css */
/* Scoped a este componente: sin esto, el <img> en AcademiaDashboard no hereda tamaÃ±os y puede ocupar toda la pantalla. */

.pv-embed-identity {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    box-sizing: border-box;
}

.pv-embed-identity-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    min-height: 0;
}

.pv-embed-avatar-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

/* Imagen con tamaÃ±o fijo (avatar); impide expansiÃ³n por flex o img natural */
.pv-embed-avatar,
.pv-embed-avatar--ph {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 2px solid rgba(245, 177, 0, 0.42);
    box-sizing: border-box;
}

.pv-embed-avatar--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3f3f46, #27272a);
    color: #fafafa;
}

.pv-embed-initial {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.pv-embed-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12rem;
}

.pv-embed-kicker {
    margin: 0;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #71717a;
    line-height: 1.15;
}

.pv-embed-name {
    margin: 0;
    font-size: clamp(0.88rem, 2.4vw, 1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fafafa;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

/* Evitar que el h2 herede estilos globales enormes */
.pv-embed-identity .pv-embed-name {
    font-weight: 800;
}

.pv-embed-chips {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    max-width: 100%;
}

.pv-embed-pill {
    display: inline-block;
    margin: 0;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 800;
    background: rgba(245, 177, 0, 0.12);
    border: 1px solid rgba(245, 177, 0, 0.38);
    color: #f5b100;
    line-height: 1.2;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-embed-pill--muted {
    background: rgba(113, 113, 122, 0.12);
    border-color: rgba(113, 113, 122, 0.35);
    color: #a1a1aa;
}

.pv-embed-pill--estado {
    background: rgba(255, 255, 255, 0.04);
    max-width: min(200px, 100%);
}

.pv-embed-note {
    margin: 0.5rem 0 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(39, 39, 42, 0.9);
    font-size: 0.72rem;
    line-height: 1.4;
    color: #a1a1aa;
}

@media (max-width: 400px) {
    .pv-embed-identity-main {
        gap: 0.5rem;
    }

    .pv-embed-avatar-wrap,
    .pv-embed-avatar,
    .pv-embed-avatar--ph {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        max-width: 36px;
        max-height: 36px;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerStatsCards.razor.rz.scp.css */
.psc-wrap {
    margin: 0 0 0.75rem;
    padding: 0 0.75rem;
}

.psc-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0 0.5rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.35) transparent;
}

.psc-scroll::-webkit-scrollbar {
    height: 3px;
}

.psc-scroll::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.35);
    border-radius: 4px;
}

.psc-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 104px;
    padding: 0.75rem 0.65rem 0.65rem;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(28, 28, 36, 0.92) 0%, rgba(14, 14, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
}

.psc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.psc-card--rating::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(249, 115, 22, 0.08) 60%, transparent);
}

.psc-ic {
    font-size: 1.1rem !important;
    color: rgba(251, 191, 36, 0.85);
    position: relative;
    z-index: 1;
}

.psc-card--rating .psc-ic {
    color: #c4b5fd;
}

.psc-val {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fef3c7;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.psc-val--rating {
    font-size: 1.45rem;
    background: linear-gradient(180deg, #fde68a 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.45));
}

.psc-lbl {
    position: relative;
    z-index: 1;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #71717a;
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/PlayerTabs.razor.rz.scp.css */
.ppt-tabs {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(6, 6, 10, 0.98) 0%, rgba(8, 8, 12, 0.94) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.ppt-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.65rem 0.85rem 0.75rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 58, 237, 0.45) transparent;
}

.ppt-scroll::-webkit-scrollbar {
    height: 4px;
}

.ppt-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.55), rgba(245, 158, 11, 0.45));
    border-radius: 4px;
}

 .ppt-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 28, 0.85);
    color: #a1a1aa;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

 .ppt-tab:hover {
    color: #e4e4e7;
    border-color: rgba(167, 139, 250, 0.35);
    transform: translateY(-1px);
}

 .ppt-tab--active {
    color: #0a0a0f;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #ea580c 100%);
    border-color: rgba(251, 191, 36, 0.65);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 6px 22px rgba(245, 158, 11, 0.45),
        0 0 28px rgba(249, 115, 22, 0.25);
    animation: ppt-tab-glow-b-0g9iavvnxn 2.4s ease-in-out infinite;
}

@keyframes ppt-tab-glow-b-0g9iavvnxn {
    0%, 100% { box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45), 0 0 22px rgba(124, 58, 237, 0.2); }
    50% { box-shadow: 0 8px 28px rgba(245, 158, 11, 0.55), 0 0 36px rgba(124, 58, 237, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
     .ppt-tab--active {
        animation: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Player/ShotMap.razor.rz.scp.css */
.psm-section {
    padding: 0;
}

.psm-intro {
    margin-bottom: 1rem;
}

.psm-title {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #a1a1aa;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.psm-copy {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    color: #71717a;
    line-height: 1.45;
}

.psm-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.psm-pill {
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #c4b5fd;
}

.psm-widget {
    margin-top: 0.5rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(16, 16, 22, 0.6), rgba(8, 8, 12, 0.85));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.psm-widget  .saw-wrapper {
    padding: 0.5rem 0.35rem 0.75rem;
}
/* _content/AppBasquet.Web.Client.Shared/Components/ShareButton.razor.rz.scp.css */
.share-container {
    display: inline-block;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.5);
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn.success {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.share-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.share-btn:hover .icon {
    transform: scale(1.1);
}

.share-btn .text {
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .share-btn {
        padding: 8px 16px;
    }
    .share-btn .text {
        display: none;
    }
}
/* _content/AppBasquet.Web.Client.Shared/Components/Shooting/ShootingCourt.razor.rz.scp.css */
/* Styles moved to internal razor block to ensure cache-busting visibility */
/* _content/AppBasquet.Web.Client.Shared/Components/SuperAdmin/SaQuickActionCard.razor.rz.scp.css */
.sa-qact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(160deg, rgba(20, 20, 32, 0.95) 0%, rgba(10, 10, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.sa-qact:hover {
    border-color: rgba(130, 71, 229, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.sa-qact--btn {
    cursor: pointer;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.sa-qact--btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(130, 71, 229, 0.5);
}

.sa-qact__icon {
    font-size: 1.45rem;
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(130, 71, 229, 0.12);
    border: 1px solid rgba(130, 71, 229, 0.22);
    flex-shrink: 0;
}

.sa-qact__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sa-qact__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.01em;
}

.sa-qact__sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.35;
}

.sa-qact__chev {
    font-size: 1.25rem;
    font-weight: 300;
    color: #64748b;
    flex-shrink: 0;
}
/* _content/AppBasquet.Web.Client.Shared/Components/SuperAdmin/SaSectionHeader.razor.rz.scp.css */
.sa-sec-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 14px;
}

.sa-sec-head__title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.sa-sec-head__sub {
    margin: 4px 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    max-width: 52ch;
    line-height: 1.45;
}

.sa-sec-head__actions {
    flex-shrink: 0;
}


/* /Components/Team/TeamJuegosEnfrentamientosStrip.razor.rz.scp.css */
.tj-mu-root {
    margin-top: 6px;
    margin-bottom: 18px;
}

.tj-mu-head {
    margin-bottom: 10px;
}

.tj-mu-title {
    margin-bottom: 4px !important;
}

.tj-mu-sub {
    margin: 0;
    font-size: 0.78rem;
    color: #7a7a88;
    line-height: 1.45;
    max-width: 52ch;
}

.tj-mu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #a8a8b8;
}

.tj-mu-leg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tj-mu-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tj-mu-leg--fresh .tj-mu-dot {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.tj-mu-leg--recent .tj-mu-dot {
    background: #facc15;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.28);
}

.tj-mu-leg--repeated .tj-mu-dot {
    background: #f87171;
    box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.28);
}

.tj-mu-scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.tj-mu-scroller::-webkit-scrollbar {
    height: 6px;
}

.tj-mu-scroller::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.tj-mu-card {
    position: relative;
    flex: 0 0 min(300px, 86vw);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 14px 12px;
    border-radius: 16px;
    background: linear-gradient(165deg, #15151c 0%, #0c0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.tj-mu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.tj-mu-card:active {
    transform: translateY(-1px) scale(0.99);
}

.tj-mu-card--fresh {
    border-color: rgba(34, 197, 94, 0.35);
}

.tj-mu-card--fresh:hover {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.tj-mu-card--recent {
    border-color: rgba(250, 204, 21, 0.4);
}

.tj-mu-card--recent:hover {
    border-color: rgba(250, 204, 21, 0.62);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(250, 204, 21, 0.12);
}

.tj-mu-card--repeated {
    border-color: rgba(248, 113, 113, 0.42);
}

.tj-mu-card--repeated:hover {
    border-color: rgba(248, 113, 113, 0.65);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(248, 113, 113, 0.12);
}

.tj-mu-r-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 900;
    color: #fff;
    background: rgba(239, 68, 68, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.tj-mu-floating-badge {
    position: absolute;
    top: -8px;
    left: 14px;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.35);
}

.tj-mu-floating-badge--fresh {
    background: rgba(34, 197, 94, 0.95);
    color: #052e14;
}

.tj-mu-floating-badge--recent {
    background: rgba(250, 204, 21, 0.95);
    color: #422006;
}

.tj-mu-floating-badge--repeated {
    background: rgba(248, 113, 113, 0.95);
    color: #450a0a;
}

.tj-mu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-right: 28px;
}

.tj-mu-date {
    font-size: 0.74rem;
    font-weight: 800;
    color: #c4c4d4;
}

.tj-mu-jn {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--accent, #f5b100);
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(245, 177, 0, 0.12);
    border: 1px solid rgba(245, 177, 0, 0.28);
}

.tj-mu-duel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tj-mu-side {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.tj-mu-vs {
    flex-shrink: 0;
    font-size: 1.35rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.14);
    letter-spacing: 0.04em;
    line-height: 1;
}

.tj-mu-av {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 900;
    color: #f5b100;
}

.tj-mu-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tj-mu-av--away {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(129, 140, 248, 0.35);
    color: #a5b4fc;
}

.tj-mu-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: #f3f4f6;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tj-mu-role {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.tj-mu-meta {
    font-size: 0.68rem;
    color: #8b8b9a;
    line-height: 1.35;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
}

.tj-mu-meta-sep {
    opacity: 0.5;
}

.tj-mu-venue {
    font-size: 0.68rem;
    color: #9ca3af;
    padding-top: 2px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.35;
}

.tj-mu-venue::before {
    content: "ðŸ“";
    font-size: 0.72rem;
    flex-shrink: 0;
}

.tj-mu-foot {
    font-size: 0.68rem;
    font-weight: 700;
    color: #9ca3af;
    padding-top: 2px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

@media (min-width: 720px) {
    .tj-mu-card {
        flex-basis: 320px;
    }
}
/* /Components/Team/TeamRivalesPendientesSection.razor.rz.scp.css */
.trp-wrap {
    margin: 20px 0 8px;
    padding: 16px 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(155deg, rgba(20, 22, 34, 0.98) 0%, rgba(10, 11, 18, 0.99) 100%);
}

.trp-head {
    margin-bottom: 12px;
}

.trp-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: #f8fafc;
}

.trp-sub {
    margin: 4px 0 0;
    font-size: 0.76rem;
    color: #94a3b8;
}

.trp-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.trp-card {
    position: relative;
    flex: 0 0 min(200px, 78vw);
    scroll-snap-align: start;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 16, 26, 0.95);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trp-card--fresh {
    border-color: rgba(34, 197, 94, 0.45);
    background: linear-gradient(165deg, rgba(22, 101, 52, 0.22) 0%, rgba(14, 16, 26, 0.96) 60%);
}

.trp-card--heavy {
    border-color: rgba(248, 113, 113, 0.35);
}

.trp-card--recent {
    border-color: rgba(251, 191, 36, 0.4);
}

.trp-card-hit {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    z-index: 1;
}

.trp-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trp-logo {
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trp-mono {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.05rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trp-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trp-name {
    font-size: 0.82rem;
    font-weight: 800;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trp-badge {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    width: fit-content;
}

.trp-badge--pend {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.trp-badge--played {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trp-foot {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trp-hint {
    font-size: 0.72rem;
    font-weight: 700;
    color: #86efac;
}

.trp-tag {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.trp-tag--rep {
    color: #fecaca;
    background: rgba(239, 68, 68, 0.15);
}

.trp-tag--rec {
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.16);
}

.trp-date {
    font-size: 0.66rem;
    color: #94a3b8;
}

.trp-empty {
    text-align: center;
    padding: 16px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.trp-empty--err {
    color: #fecaca;
}

.trp-load-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 4px 0 0;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(252, 211, 77, 0.45);
    background: linear-gradient(135deg, rgba(120, 90, 20, 0.35), rgba(20, 22, 34, 0.95));
    color: #fefce8;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .12s, border-color .15s, box-shadow .15s;
}

.trp-load-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(252, 211, 77, 0.75);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.trp-load-btn:active {
    transform: translateY(0);
}

.trp-banner-ok--solo {
    margin-top: 4px;
}
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: rgba(22, 101, 52, 0.15);
    color: #d1fae5;
    font-size: 0.82rem;
}

.trp-banner-ok strong {
    display: block;
    margin-bottom: 4px;
    color: #ecfdf5;
}

.trp-banner-sub {
    margin: 0;
    opacity: 0.9;
    font-size: 0.76rem;
}

.trp-banner-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trp-card--skel {
    min-height: 96px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.09), rgba(255,255,255,0.04));
    background-size: 200% 100%;
    animation: trp-shimmer-b-cv0i889813 1.1s ease-in-out infinite;
}

@keyframes trp-shimmer-b-cv0i889813 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* /Pages/AcademiaDashboard.razor.rz.scp.css */
/* AcademiaDashboard: SiteLayout oculta #site-nav â†’ altura completa del viewport (no restar 64px). */
.acad-page.acad-page--dashboard {
    min-height: 100dvh;
    min-height: 100vh;
}

/* Mi Perfil (coach): columna a altura de viewport; solo el panel del perfil hace scroll */
.acad-page.acad-page--coach-perfil-tab {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
}

.acad-page.acad-page--coach-perfil-tab > .acad-hero {
    flex-shrink: 0;
}

.acad-page.acad-page--coach-perfil-tab > .acad-coach-perf-embed-sticky {
    flex-shrink: 0;
}

.acad-page.acad-page--coach-perfil-tab > .acad-tab-bar {
    flex-shrink: 0;
}

.acad-page.acad-page--coach-perfil-tab > .acad-perfil-tab--scroll-host.acad-section {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    gap: 0;
}

.acad-page.acad-page--coach-perfil-tab .acad-perfil-tab--scroll-host .acad-embedded-profile--coach-tabs {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 0;
}

.acad-page.acad-page--coach-perfil-tab .acad-embedded-profile--coach-tabs  .pv-shell--coach-academia-scroll {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 0;
}

.acad-page.acad-page--coach-perfil-tab .acad-embedded-profile--coach-tabs  .pv-shell--coach-academia-scroll .pv-tabs {
    flex-shrink: 0;
    border-bottom: 1px solid #27272a;
    background: #09090b;
}

.acad-page.acad-page--coach-perfil-tab .acad-embedded-profile--coach-tabs  .pv-shell--coach-academia-scroll .pv-tab-panel {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* PestaÃ±as del perfil embebido: caben mejor en pantallas estrechas */
@media (max-width: 520px) {
    .acad-page.acad-page--coach-perfil-tab .acad-embedded-profile--coach-tabs  .pv-shell--coach-academia-scroll .pv-tab {
        padding: 0.42rem 0.62rem;
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }

    .acad-page.acad-page--coach-perfil-tab .acad-embedded-profile--coach-tabs  .pv-tabs-scroll {
        padding: 0.5rem 0.6rem 0.6rem;
    }
}

@media (max-width: 380px) {
    .acad-page.acad-page--coach-perfil-tab .acad-embedded-profile--coach-tabs  .pv-shell--coach-academia-scroll .pv-tab {
        padding: 0.38rem 0.5rem;
        font-size: 0.58rem;
    }
}

.acad-page {
    box-sizing: border-box;
    min-height: calc(100vh - 64px);
    padding: 16px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(1000px 500px at 0% 0%, rgba(245, 177, 0, 0.15), transparent 60%),
        radial-gradient(900px 480px at 100% 100%, rgba(145, 71, 255, 0.18), transparent 60%),
        linear-gradient(180deg, #090909 0%, #0f0f14 100%);
    color: #f2f2f3;
}

.loading-wrap {
    min-height: 50vh;
    display: grid;
    place-items: center;
    color: #d0d0d3;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #2b2b2b;
    border-top-color: #f5b100;
    border-radius: 50%;
    animation: spin-b-b0dxwnvec8 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin-b-b0dxwnvec8 {
    to {
        transform: rotate(360deg);
    }
}

.acad-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid #2b2b33;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #101017 0%, #141421 70%, #121218 100%);
}

.acad-hero-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(245, 177, 0, 0.14), transparent 55%);
    pointer-events: none;
}

.acad-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
}

.acad-hero-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: #1b1b25;
    border: 1px solid #2f2f44;
    flex-shrink: 0;
}

.acad-hero-logo--photo {
    padding: 0;
    overflow: hidden;
    border-color: rgba(245, 177, 0, 0.45);
    box-shadow: 0 0 0 2px rgba(245, 177, 0, 0.12);
}

.acad-hero-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acad-hero-logo-initials {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #f5b100;
    line-height: 1;
}

/* Perfil de jugador embebido (tab Mi Perfil) â€” sin overflow:hidden: rompe position:sticky en descendientes */
.acad-embedded-profile {
    margin-top: 4px;
    border-radius: 16px;
    overflow: visible;
    border: 1px solid #2b2b33;
}

.acad-embedded-profile--coach-tabs {
    margin-top: 0;
    max-width: 100%;
}

.acad-embedded-profile  .pv-shell {
    min-height: auto;
    max-width: none;
    margin: 0;
    padding-bottom: 1.5rem;
}

/* Barra horizontal tipo "top profile" bajo el hero del coach.
   En esta ruta SiteLayout oculta #site-nav â†’ sticky al borde superior (safe-area en mÃ³vil). */
.acad-coach-perf-embed-sticky {
    position: sticky;
    top: env(safe-area-inset-top, 0px);
    z-index: 90;
    margin: 0 0 8px 0;
    padding: 8px 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    min-height: 0;
    background: rgba(9, 9, 14, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(43, 43, 56, 0.95);
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.acad-coach-perf-embed-sticky  .pv-embed-identity {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    flex: 1;
    min-width: 0;
}

/* Refuerzo: ninguna foto/global puede expandir el avatar fuera de tamaÃ±o perfil */
.acad-coach-perf-embed-sticky  .pv-embed-avatar-wrap {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    flex-shrink: 0;
}

.acad-coach-perf-embed-sticky  .pv-embed-avatar,
.acad-coach-perf-embed-sticky  .pv-embed-avatar--ph {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 520px) {
    .acad-coach-perf-embed-sticky {
        padding: 7px 10px;
        border-radius: 10px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .acad-coach-perf-embed-sticky  .pv-embed-avatar-wrap,
    .acad-coach-perf-embed-sticky  .pv-embed-avatar,
    .acad-coach-perf-embed-sticky  .pv-embed-avatar--ph {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
    }
}

.acad-btn-retry-profile {
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(245, 177, 0, 0.65);
    background: rgba(245, 177, 0, 0.14);
    color: #f5b100;
    font-weight: 800;
    cursor: pointer;
}

.acad-btn-retry-profile:hover {
    background: rgba(245, 177, 0, 0.22);
}

.acad-hero-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f5b100;
    color: #151515;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.acad-hero-title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: 0.5px;
    line-height: 1.15;
    word-break: break-word;
}

.acad-hero-identity {
    min-width: 0;
}

.acad-hero-sub {
    margin: 4px 0 0;
    color: #a8a8b3;
}

.acad-hero-academy {
    margin: 6px 0 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8e8e9e;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.acad-hero-academy-lbl {
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a6a7a;
}

.acad-hero-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.acad-logout-btn {
    justify-self: end;
    align-self: center;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(245, 177, 0, 0.65);
    background: rgba(245, 177, 0, 0.14);
    color: #f5b100;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, border-color .15s, transform .08s;
}

.acad-logout-btn:hover {
    background: rgba(245, 177, 0, 0.22);
    border-color: rgba(245, 177, 0, 0.95);
}

.acad-logout-btn:active {
    transform: translateY(1px);
}

.acad-stat-pill {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #2f2f39;
    background: #12121b;
    min-width: 90px;
    text-align: center;
}

.acad-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.acad-stat-lbl {
    color: #9a9aa8;
    font-size: 0.72rem;
}

/* â”€â”€ LEGACY role bar (kept for backwards compat) â”€â”€ */
.acad-role-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.acad-role-btn { border: 1px solid #343444; background: #14141e; color: #d7d7e4; border-radius: 10px; padding: 8px 12px; font-weight: 700; cursor: pointer; }
.acad-role-btn:hover { border-color: #5d5d84; }
.acad-role-btn.active { background: linear-gradient(180deg, #f5b100, #d79600); color: #111; border-color: #f5b100; }

/* â”€â”€ MAIN TAB BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-tab-bar {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    background: #0e0e18;
    border: 1px solid #1e1e2e;
    border-radius: 14px;
    padding: 5px;
}

.acad-tab {
    flex: 1;
    min-width: 80px;
    border: 1px solid transparent;
    background: transparent;
    color: #7070a0;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}

.acad-tab:hover { color: #c0c0d8; background: #18182a; }

.acad-tab.active {
    background: linear-gradient(135deg, #f5b100, #d47a00);
    color: #111;
    border-color: #f5b100;
    box-shadow: 0 2px 12px rgba(245,177,0,0.28);
}

/* â”€â”€ COMPARISON SUB-TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-subtab-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.acad-subtab {
    border: 1px solid #2a2a3a;
    background: #13131e;
    color: #7070a0;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: all .15s;
}

.acad-subtab:hover { color: #c0c0d8; border-color: #3a3a50; }

.acad-subtab.active {
    background: rgba(145, 71, 255, 0.18);
    border-color: rgba(145, 71, 255, 0.55);
    color: #c47eff;
}

/* â”€â”€ JUGADORES LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-jugadores-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 14px;
    align-items: start;
}

@media (max-width: 768px) {
    .acad-jugadores-layout { grid-template-columns: 1fr; }

    .acad-page {
        padding: 10px;
        padding-left: max(10px, env(safe-area-inset-left, 0px));
        padding-right: max(10px, env(safe-area-inset-right, 0px));
        padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
    }
    .acad-hero { padding: 14px; }
    .psp-bar { margin: 0 -10px 14px; }

    /* Hero inner: collapse 4-col â†’ 2-col, then stats+logout wrap to new rows */
    .acad-hero-inner {
        grid-template-columns: auto 1fr;
        row-gap: 10px;
    }
    .acad-hero-stats {
        grid-column: 1 / -1;
        flex-wrap: wrap;
    }
    .acad-logout-btn {
        grid-column: 1 / -1;
        justify-self: end;
    }

    /* Tab bar: allow horizontal scroll on very small */
    .acad-tab-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px;
        gap: 3px;
    }
    .acad-tab-bar::-webkit-scrollbar { display: none; }
    .acad-tab {
        flex-shrink: 0;
        min-width: 72px;
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .acad-hero-logo { width: 44px; height: 44px; font-size: 22px; }
    .acad-hero-title { font-size: 1.3rem; }
    .acad-hero-sub { font-size: 0.82rem; }
    .acad-hero-academy { white-space: normal; }
    .acad-stat-pill { min-width: 72px; padding: 6px 8px; }
    .acad-stat-num { font-size: 0.95rem; }
}

.acad-jugadores-list-panel { max-height: 680px; display: flex; flex-direction: column; }
.acad-jugadores-list-panel .acad-player-list { flex: 1; overflow-y: auto; }

.acad-jugador-detail-panel { display: flex; flex-direction: column; gap: 10px; }

.acad-jugadores-empty-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* â•â• PLAYER STICKY PROFILE BAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.psp-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin: 0 -16px 16px;
    background: rgba(9, 9, 14, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(145, 71, 255, 0.20);
    overflow: hidden;
}

.psp-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 150% at 0% 50%, rgba(145, 71, 255, 0.07), transparent 65%);
    pointer-events: none;
}

/* Avatar */
.psp-avatar-wrap {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9147ff, #6b2fd4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(145, 71, 255, 0.45);
    overflow: hidden;
}

.psp-avatar-wrap--photo {
    border-color: rgba(245, 177, 0, 0.50);
    background: #1b1b25;
    box-shadow: 0 0 0 3px rgba(245, 177, 0, 0.10);
}

.psp-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.psp-avatar-initial {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    user-select: none;
}

/* Identity block */
.psp-identity {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.psp-top-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 2px;
}

.psp-badge {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    color: #9147ff;
    text-transform: uppercase;
    line-height: 1;
}

.psp-pos-chip {
    font-size: .60rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(245, 177, 0, 0.10);
    border: 1px solid rgba(245, 177, 0, 0.28);
    color: #f5b100;
    letter-spacing: .5px;
    line-height: 1.4;
}

.psp-name {
    font-size: 1.05rem;
    font-weight: 900;
    color: #f0f0f8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
    letter-spacing: -.2px;
}

.psp-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3px;
}

.psp-meta {
    font-size: .67rem;
    color: #55556a;
    font-weight: 500;
}

.psp-meta + .psp-meta::before {
    content: "Â·";
    margin: 0 6px;
    color: #2e2e42;
}

.psp-meta--academy {
    color: #44447a;
    font-weight: 600;
}

/* OVR pill */
.psp-ovr {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(145, 71, 255, .14), rgba(145, 71, 255, .04));
    border: 1px solid rgba(145, 71, 255, 0.28);
    flex-shrink: 0;
}

.psp-ovr-num {
    font-size: 1.15rem;
    font-weight: 900;
    color: #c084fc;
    line-height: 1;
    letter-spacing: -.5px;
}

.psp-ovr-lbl {
    font-size: .50rem;
    font-weight: 700;
    color: #6644aa;
    letter-spacing: 1.2px;
    margin-top: 2px;
    text-transform: uppercase;
}

/* â”€â”€ PLAYER DETAIL HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-jd-bio-card { padding: 16px 20px; }

.acad-jd-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.acad-jd-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9147ff, #6b2fd4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.acad-jd-info { flex: 1; min-width: 0; }

.acad-jd-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f0f0f8;
    margin-bottom: 6px;
}

.acad-jd-meta { display: flex; flex-wrap: wrap; gap: 6px; }

.acad-jd-chip {
    font-size: .75rem;
    padding: 3px 9px;
    border-radius: 999px;
    background: #1a1a2a;
    border: 1px solid #2a2a3e;
    color: #9090b8;
    font-weight: 600;
}

.acad-privacy-pill {
    font-size: .78rem;
    color: #f5b100;
    background: rgba(245,177,0,.1);
    border: 1px solid rgba(245,177,0,.3);
    border-radius: 999px;
    padding: 4px 12px;
    display: inline-block;
}

/* â”€â”€ EMPTY STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-empty-state {
    padding: 28px 16px;
    text-align: center;
    color: #4a4a6a;
    font-size: .88rem;
    font-style: italic;
    line-height: 1.6;
}

/* â”€â”€ COMPARISON LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.compare-selectors {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: end;
}

.compare-selector-col { display: flex; flex-direction: column; gap: 6px; }

.compare-vs-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #9147ff;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.compare-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    padding: 10px 4px 14px;
    font-weight: 700;
}

.compare-name-a { text-align: left; color: #4db8ff; font-size: .9rem; }
.compare-name-b { text-align: right; color: #ff6b8a; font-size: .9rem; }
.compare-title-center { text-align: center; color: #555; font-size: .72rem; letter-spacing: 1.5px; font-weight: 800; }

.compare-grid { display: flex; flex-direction: column; gap: 10px; }

.compare-row { padding: 4px 0; }

.compare-values {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    margin-bottom: 5px;
    align-items: center;
}

.compare-val-a { text-align: left; font-weight: 700; color: #4db8ff; font-size: .9rem; }
.compare-val-b { text-align: right; font-weight: 700; color: #ff6b8a; font-size: .9rem; }

.compare-metric-label {
    text-align: center;
    font-size: .72rem;
    color: #666;
    font-weight: 600;
    letter-spacing: .5px;
}

.compare-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    height: 6px;
}

.compare-bar {
    height: 100%;
    border-radius: 3px;
    min-width: 2px;
    transition: width .5s ease;
}

.compare-bar.left { background: #4db8ff; justify-self: end; }
.compare-bar.right { background: #ff6b8a; justify-self: start; }

.compare-label { font-size: .78rem; color: #888; font-weight: 600; }

/* â”€â”€ COMPARE COURTS (side by side ShotAnalysisWidget) â”€â”€â”€â”€â”€â”€â”€ */
.compare-courts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 900px) {
    .compare-courts-grid { grid-template-columns: 1fr; }
}

.compare-court-col { display: flex; flex-direction: column; gap: 8px; }

.compare-court-player-label {
    font-size: .85rem;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    letter-spacing: .5px;
}

.compare-label-a {
    background: rgba(77, 184, 255, 0.12);
    border: 1px solid rgba(77, 184, 255, 0.35);
    color: #4db8ff;
}

.compare-label-b {
    background: rgba(255, 107, 138, 0.12);
    border: 1px solid rgba(255, 107, 138, 0.35);
    color: #ff6b8a;
}

/* â”€â”€ COMPARE MODE TOGGLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.compare-mode-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.compare-mode-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #2f2f44;
    background: #1a1a2e;
    color: #aaa;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.compare-mode-btn.active {
    background: #9147ff;
    border-color: #9147ff;
    color: #fff;
}

/* â”€â”€ COMPARE INSIGHT CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.compare-insight-card { margin-bottom: 12px; }

.compare-winner-banner {
    background: rgba(245, 177, 0, 0.12);
    border: 1px solid rgba(245, 177, 0, 0.35);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .88rem;
    color: #f5b100;
    margin-bottom: 12px;
    text-align: center;
}

.compare-winner-tie {
    background: rgba(145, 71, 255, 0.12);
    border-color: rgba(145, 71, 255, 0.35);
    color: #b47fff;
}

.compare-insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.compare-insight-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-insight-name {
    font-size: .8rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2px;
}

.compare-insight-item {
    font-size: .82rem;
    color: #ccc;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1.4;
}

.compare-insight-item.weak { color: #ff6b8a; background: rgba(255,107,138,0.06); }
.compare-insight-item.muted { color: #666; font-style: italic; }

@media (max-width: 600px) {
    .compare-insight-grid { grid-template-columns: 1fr; }
}

.acad-section {
    display: grid;
    gap: 14px;
}

.acad-kpi-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.acad-kpi-card {
    border-radius: 14px;
    border: 1px solid #2f2f3c;
    background: #14141d;
    padding: 12px;
}

.acad-kpi-card.accent { border-color: rgba(145, 71, 255, 0.5); }
.acad-kpi-card.green { border-color: rgba(76, 175, 80, 0.55); }
.acad-kpi-card.gold { border-color: rgba(245, 177, 0, 0.6); }
.acad-kpi-card.red { border-color: rgba(255, 82, 82, 0.55); }

.acad-kpi-icon { font-size: 1.2rem; }

.acad-kpi-num {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    margin-top: 4px;
}

.acad-kpi-lbl {
    color: #a8a8b3;
    font-size: 0.78rem;
}

.acad-two-col {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.25fr 1fr;
}

.acad-card {
    border-radius: 14px;
    border: 1px solid #2d2d37;
    background: #12121a;
    padding: 12px;
}

.acad-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.acad-card-title {
    font-size: 0.95rem;
    font-weight: 800;
}

.acad-badge {
    background: #1d1d2b;
    border: 1px solid #383856;
    color: #c8c8de;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.72rem;
}

.acad-player-list {
    max-height: 440px;
    overflow: auto;
    display: grid;
    gap: 8px;
}

.acad-player-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    align-items: center;
    border: 1px solid #2f2f39;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
}

.acad-player-row:hover { border-color: #5f5f7f; }
.acad-player-row.selected { border-color: #f5b100; background: rgba(245, 177, 0, 0.09); }

.acad-player-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #27273a;
    display: grid;
    place-items: center;
}

.acad-avatar-initials { font-weight: 800; }
.acad-player-name { display: block; font-weight: 700; }
.acad-player-meta, .acad-mini-stat { color: #9b9bab; font-size: 0.8rem; }

.acad-player-ovr {
    border-radius: 8px;
    color: #fff;
    font-weight: 900;
    min-width: 34px;
    text-align: center;
    padding: 5px 6px;
}

.acad-game-row,
.acad-pay-row,
.acad-comment-row {
    border: 1px solid #2f2f39;
    border-radius: 10px;
    padding: 8px;
    margin-top: 8px;
    background: #101018;
}

.acad-game-date { color: #f5b100; font-size: 0.78rem; }
.acad-game-teams { font-weight: 700; }
.acad-game-venue, .acad-comment-date, .acad-comment-ex, .acad-pay-fecha { color: #9f9fb0; font-size: 0.8rem; }

.acad-input {
    width: 100%;
    border: 1px solid #3a3a49;
    border-radius: 10px;
    background: #0f0f15;
    color: #f5f5f9;
    padding: 10px;
}

.acad-jugador-search-input {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .acad-jugador-search-input {
        padding: 14px 16px;
    }
}

.acad-textarea { min-height: 68px; }
.acad-form { display: grid; gap: 8px; }

.acad-btn-primary {
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 800;
    color: #171717;
    background: linear-gradient(180deg, #f5b100, #dd9b00);
    cursor: pointer;
}

.acad-success-msg {
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #2c6f3f;
    background: rgba(54, 155, 84, 0.14);
    color: #9ce3b2;
}

.acad-table-wrap { overflow: auto; }

.acad-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.acad-table th,
.acad-table td {
    border-bottom: 1px solid #2a2a35;
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

.acad-table th { color: #c9c9d8; font-size: 0.78rem; letter-spacing: 0.4px; }
.acad-table td { color: #e5e5ea; }

.acad-mini-bar {
    width: 80px;
    height: 7px;
    background: #242430;
    border-radius: 999px;
    overflow: hidden;
}

.acad-mini-bar-fill { height: 100%; }
.acad-mini-bar-fill.green { background: #48b866; }
.acad-mini-bar-fill.accent { background: #8c56f9; }
.acad-mini-bar-fill.red { background: #ff5a5a; }

.acad-fifa-wrap { display: grid; gap: 12px; grid-template-columns: 340px 1fr; }

.acad-fifa-card {
    border: 1px solid #4c3c12;
    border-radius: 16px;
    background: linear-gradient(180deg, #1d1607 0%, #141008 100%);
    padding: 14px;
}

.acad-fifa-header { display: flex; justify-content: space-between; align-items: center; }
.acad-fifa-ovr { font-size: 2rem; font-weight: 900; color: #f5b100; }
.acad-fifa-pos { color: #f7d77b; font-weight: 800; }
.acad-fifa-avatar { display: grid; place-items: center; margin: 10px 0; }
.acad-fifa-avatar-inner { width: 120px; height: 120px; border-radius: 50%; background: #2a2110; display: grid; place-items: center; }
.acad-fifa-name { text-align: center; font-weight: 900; letter-spacing: 0.8px; }
.acad-fifa-club { text-align: center; color: #b5b5c3; font-size: 0.82rem; }
.acad-fifa-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.acad-fifa-attr { background: #0f0f17; border: 1px solid #2b2b3a; border-radius: 8px; text-align: center; padding: 5px; }
.acad-fifa-attr .val { display: block; font-weight: 800; }
.acad-fifa-attr .lbl { color: #9f9fb1; font-size: 0.72rem; }

.acad-bio-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.acad-bio-item { border: 1px solid #2f2f39; border-radius: 10px; padding: 8px; }
.acad-bio-lbl { display: block; color: #9a9aaa; font-size: 0.75rem; }
.acad-bio-val { font-weight: 700; }

.acad-radar-wrap { margin-top: 10px; }
.acad-radar-title { margin: 0 0 8px; font-size: 0.92rem; }
.acad-radar-svg { width: 100%; max-width: 340px; }
.acad-radar-legend { display: grid; gap: 6px; margin-top: 8px; }
.acad-legend-item { display: grid; gap: 8px; grid-template-columns: 10px 74px 1fr auto; align-items: center; }
.acad-legend-dot { width: 8px; height: 8px; border-radius: 50%; background: #9147ff; }
.acad-legend-name { font-size: 0.78rem; color: #b5b5c2; }
.acad-legend-bar { height: 7px; border-radius: 999px; background: #262633; overflow: hidden; }
.acad-legend-fill { height: 100%; background: linear-gradient(90deg, #9147ff, #f5b100); }
.acad-legend-val { font-size: 0.78rem; color: #d8d8e3; }

.acad-stats-grid-large {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.acad-stat-card {
    border: 1px solid #2f2f39;
    border-radius: 10px;
    background: #101019;
    text-align: center;
    padding: 8px;
}

.acad-stat-big { display: block; font-size: 1.3rem; font-weight: 900; }
.acad-stat-label { color: #9f9fb2; font-size: 0.72rem; }

.acad-metrics-list { display: grid; gap: 8px; }
.acad-metric-row { display: grid; gap: 10px; grid-template-columns: 112px 1fr auto; align-items: center; }
.acad-metric-name { font-size: 0.82rem; color: #c5c5d3; }
.acad-metric-bar { height: 8px; border-radius: 999px; background: #252533; overflow: hidden; }
.acad-metric-fill { height: 100%; }
.acad-metric-fill.accent { background: #9147ff; }
.acad-metric-fill.green { background: #4caf50; }
.acad-metric-fill.gold { background: #f5b100; }
.acad-metric-fill.red { background: #ff5a5a; }
.acad-metric-val { font-size: 0.8rem; color: #d8d8e3; }

.acad-line-chart-wrap {
    border: 1px solid #2c2c3a;
    background: #0d0d14;
    border-radius: 10px;
    padding: 8px;
    overflow: auto;
}

.acad-padre-header { display: flex; gap: 10px; align-items: center; }
.acad-padre-avatar { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #25253a; font-size: 1.4rem; }
.acad-padre-name { margin: 0; font-size: 1.4rem; }
.acad-padre-sub { margin: 2px 0 6px; color: #a0a0ae; }
.acad-padre-ovr-badge { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #f5b100; color: #111; font-weight: 800; font-size: 0.75rem; }

.acad-pay-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.acad-pay-concepto { font-weight: 700; }
.acad-pay-monto { font-weight: 900; text-align: right; }
.acad-pay-status { font-size: 0.78rem; }
.acad-pay-status.paid { color: #8fe2a9; }
.acad-pay-status.pending { color: #f8d18c; }

.acad-teams-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.acad-team-card {
    display: grid;
    gap: 10px;
    grid-template-columns: auto 1fr;
    border: 1px solid #2f2f3a;
    border-radius: 12px;
    background: #12121a;
    padding: 10px;
    cursor: pointer;
}

.acad-team-card:hover { border-color: #5c5c7e; }
.acad-team-logo-wrap { width: 48px; height: 48px; border-radius: 10px; background: #1f1f30; display: grid; place-items: center; overflow: hidden; }
.acad-team-img { width: 100%; height: 100%; object-fit: cover; }
.acad-team-logo-placeholder { font-size: 1.3rem; }
.acad-team-name { display: block; font-weight: 800; }
.acad-team-cat, .acad-team-meta { color: #9f9fb2; font-size: 0.8rem; }
.acad-team-action { grid-column: 1 / -1; color: #f5b100; font-weight: 700; font-size: 0.82rem; }

.coach-priority-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.coach-teams-mini {
    display: grid;
    gap: 8px;
}

.coach-team-pill {
    border: 1px solid #2f2f3d;
    background: #111723;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
}

.coach-team-pill:hover { border-color: #72729e; }
.coach-team-name { display: block; font-weight: 800; }
.coach-team-meta { color: #a9a9bc; font-size: 0.78rem; }

.coach-player-highlight {
    display: grid;
    gap: 10px;
}

.coach-player-highlight-main {
    display: flex;
    gap: 10px;
    align-items: center;
}

.coach-player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: #2b2242;
}

.coach-player-name { font-weight: 900; }
.coach-player-meta { color: #a5a5b5; font-size: 0.82rem; }

.coach-player-stats {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
}

.coach-player-stats > div {
    border: 1px solid #2f2f3d;
    border-radius: 8px;
    background: #11161f;
    text-align: center;
    padding: 6px;
}

.coach-player-stats strong {
    display: block;
    font-size: 1.02rem;
}

.coach-player-stats span {
    color: #9f9fb1;
    font-size: 0.74rem;
}

.compare-selectors {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.compare-label {
    display: block;
    color: #b6b6c6;
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.compare-header {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    font-weight: 800;
    color: #f0f0f3;
}

.compare-header span:nth-child(2) {
    background: #f5b100;
    color: #131313;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.75rem;
}

.compare-grid {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.compare-row {
    border: 1px solid #2d2d3a;
    background: #0f1219;
    border-radius: 9px;
    padding: 8px;
}

.compare-values {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    font-size: 0.78rem;
    margin-bottom: 5px;
}

.compare-values span:first-child { text-align: left; color: #9fd2ff; font-weight: 700; }
.compare-values span:nth-child(2) { text-align: center; color: #d0d0dd; }
.compare-values span:last-child { text-align: right; color: #ffb2b2; font-weight: 700; }

.compare-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.compare-bar {
    height: 7px;
    border-radius: 999px;
}

.compare-bar.left {
    justify-self: end;
    background: linear-gradient(90deg, #1f6ff5, #63b3ff);
}

.compare-bar.right {
    justify-self: start;
    background: linear-gradient(90deg, #ff6161, #ff8d8d);
}

.shot-analytics-grid {
    margin-top: 12px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1.15fr 1fr;
}

.shot-map-card,
.shot-breakdown-card {
    border: 1px solid #2c3242;
    border-radius: 10px;
    background: #0d121c;
    padding: 10px;
}

.shot-map-card h4,
.shot-breakdown-card h4 {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #d7d7e3;
}

.shot-map-svg {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #293045;
}

.shot-map-note {
    margin: 8px 0 0;
    color: #9ea2b4;
    font-size: 0.78rem;
}

.shot-row {
    display: grid;
    grid-template-columns: 120px 1fr 56px;
    gap: 8px;
    align-items: center;
    margin-bottom: 7px;
}

.shot-row-title {
    color: #c4c8d9;
    font-size: 0.78rem;
}

.shot-stack {
    height: 8px;
    border-radius: 999px;
    background: #1f2736;
    overflow: hidden;
    display: flex;
}

.shot-stack .made {
    background: #20d07a;
    height: 100%;
}

.shot-stack .missed {
    background: #ff4d58;
    height: 100%;
}

.shot-row-total {
    text-align: right;
    color: #d6dae6;
    font-size: 0.78rem;
}

@media (max-width: 1100px) {
    .acad-two-col,
    .acad-fifa-wrap,
    .coach-priority-grid,
    .shot-analytics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .acad-page {
        padding: 10px;
        padding-left: max(10px, env(safe-area-inset-left, 0px));
        padding-right: max(10px, env(safe-area-inset-right, 0px));
        padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
    }
    .acad-hero-inner { grid-template-columns: 1fr; }
    .acad-logout-btn { justify-self: end; }
    .acad-metric-row { grid-template-columns: 90px 1fr auto; }
    .acad-player-row { grid-template-columns: auto 1fr auto; }
    .acad-player-ppts { display: none; }
    .compare-selectors { grid-template-columns: 1fr; }
    .coach-player-stats { grid-template-columns: repeat(2, 1fr); }
    .shot-row { grid-template-columns: 92px 1fr 52px; }
}

/* â”€â”€ Team card modern (tab Equipos) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-team-card-modern {
    border: 1px solid #2b2b3a;
    border-radius: 14px;
    background: #10101a;
    padding: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .18s, background .18s;
}

.acad-team-card-modern:hover {
    border-color: #f5b100;
    background: #13130f;
}

.acad-team-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.acad-team-avatar-big {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f1b35, #2a1f50);
    border: 1px solid #3c3060;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #c9b8ff;
    flex-shrink: 0;
    overflow: hidden;
}

.acad-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
}

.acad-team-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #f0f0f5;
}

.acad-team-cat {
    color: #9f9fb2;
    font-size: 0.78rem;
    margin-top: 2px;
}

.acad-team-kpis {
    display: flex;
    gap: 10px;
}

.team-kpi {
    flex: 1;
    border: 1px solid #232335;
    border-radius: 10px;
    background: #0e0e19;
    padding: 8px;
    text-align: center;
}

.team-kpi strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: #f5b100;
}

.team-kpi span {
    font-size: 0.72rem;
    color: #8f8fa2;
}

.acad-team-action {
    font-size: 0.8rem;
    font-weight: 700;
    color: #9147ff;
    text-align: right;
    opacity: 0;
    transition: opacity .18s;
}

.acad-team-card-modern:hover .acad-team-action {
    opacity: 1;
}

.acad-section-title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #e8e8f0;
}

/* â”€â”€ PestaÃ±as jugador (resumen/juego/entrenamiento/comparaciÃ³n/comentarios) â”€â”€ */
.player-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.player-tab-btn {
    border: 1px solid #2f2f44;
    background: #15151f;
    color: #b4b4c8;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.player-tab-btn.active {
    background: linear-gradient(180deg, #f5b100, #d79600);
    color: #111;
    border-color: transparent;
}

/* â”€â”€ PestaÃ±as + vista cancha (macro-zonas) en estadÃ­sticas de tiro â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-shot-card-header {
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.acad-shot-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.acad-shot-tab {
    border: 1px solid #2f2f44;
    background: #15151f;
    color: #b4b4c8;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.acad-shot-tab.active {
    background: linear-gradient(180deg, #9147ff, #6b2fd9);
    border-color: transparent;
    color: #fff;
}

.acad-shot-court-hint {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: #8f92a8;
    line-height: 1.45;
}

.acad-court-macro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 14px;
}

.acad-court-macro-cell {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #2a2a38;
    background: #13131f;
    padding: 10px 8px;
    text-align: center;
}

.acad-court-macro-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--zone-accent, #888);
    opacity: 0.12;
    pointer-events: none;
}

.acad-court-macro-pct {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--zone-accent, #c8c8de);
}

.acad-court-macro-name {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 2px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6f86;
}

.acad-court-macro-meta {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    color: #8b8fa4;
}

.acad-cvz-paint { grid-column: 2; grid-row: 1; }
.acad-cvz-left { grid-column: 1; grid-row: 2; }
.acad-cvz-top { grid-column: 2; grid-row: 2; }
.acad-cvz-right { grid-column: 3; grid-row: 2; }

.acad-court-detail-head {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c5f75;
    margin: 4px 0 10px;
}

.acad-zone-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.acad-zone-bar-name {
    font-size: 0.78rem;
    color: #b8bcd0;
    min-width: 118px;
}

.acad-zone-bar-track {
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: #1a1a2e;
    overflow: hidden;
}

.acad-zone-bar-fill {
    height: 100%;
    border-radius: 999px;
    min-width: 2px;
    transition: width 0.45s ease;
}

.acad-zone-bar-pct {
    font-size: 0.78rem;
    font-weight: 800;
    min-width: 40px;
    text-align: right;
}

.acad-zone-bar-shots {
    font-size: 0.72rem;
    color: #5c6078;
    min-width: 48px;
    text-align: right;
}

@media (max-width: 520px) {
    .acad-zone-bar-row { flex-wrap: wrap; }
    .acad-zone-bar-name { min-width: 100%; }
}

/* â”€â”€ Academia empty state + Liga activa â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-league-card {
    margin-bottom: 14px;
}

.acad-league-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    color: #c4c8d9;
    flex-wrap: wrap;
}

.acad-league-label {
    color: #a8a8b3;
    font-size: 0.82rem;
    font-weight: 800;
}

.acad-league-muted {
    color: #a3a3b1;
    font-weight: 700;
}

.acad-league-cta {
    margin-top: 12px;
}

.acad-empty-state {
    padding: 22px 18px;
    border: 1px dashed rgba(245, 177, 0, 0.45);
    background: rgba(245, 177, 0, 0.06);
    border-radius: 16px;
    text-align: center;
    margin-bottom: 14px;
}

.acad-empty-title {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #f2f2f3;
}

.acad-empty-sub {
    color: #a8a8b3;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.acad-empty-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 760px) {
    .acad-empty-state { padding: 20px 12px; }
}

/* â”€â”€ MI PERFIL COACH ENHANCEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.coach-profile-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(20,20,30,0.8) 0%, rgba(30,30,45,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    margin-bottom: 20px;
}

.coach-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.coach-profile-avatar, .coach-profile-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f5b100, #d47a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    border: 3px solid #1a1a2e;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.coach-profile-avatar-img {
    object-fit: cover;
    border: 3px solid #1a1a2e;
}

.coach-avatar-upload-btn {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    background: #2a2a3e;
    border: 2px solid #1a1a2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s, background 0.2s;
}

.coach-avatar-upload-btn:hover {
    transform: scale(1.1);
    background: #3a3a54;
}

.coach-profile-main-info {
    flex: 1;
}

.coach-profile-name {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
}

.coach-profile-sub {
    color: #f5b100;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 2px;
}

.coach-profile-email {
    color: #888;
    font-size: 0.85rem;
    margin-top: 4px;
}

.coach-player-bio-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.coach-profile-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.coach-chip {
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.72rem;
    font-weight: 800;
    color: #bbb;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.coach-chip.gold {
    background: rgba(245, 177, 0, 0.12);
    border-color: rgba(245, 177, 0, 0.3);
    color: #f5b100;
}

.coach-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.coach-memberships-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.membership-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s ease;
}

.membership-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(245, 177, 0, 0.3);
    transform: translateX(6px);
}

.membership-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.membership-info { flex: 1; }
.membership-name { font-weight: 800; font-size: 0.95rem; color: #f0f0f8; }
.membership-meta { font-size: 0.72rem; color: #7a7a8d; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.coach-level-card-inline {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
    .coach-profile-grid { grid-template-columns: 1fr; }
    .coach-profile-hero { flex-direction: column; text-align: center; }
    .coach-profile-badges { align-items: center; margin-top: 10px; }
}

/* Dashboard academia â€” KPIs + grid de jugadores */
.acad-dash-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 4px;
}

.acad-dash-kpi {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 28, 0.85);
}

.acad-dash-kpi-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #7a7a8d;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.acad-dash-kpi-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: #f5b100;
    line-height: 1.1;
}

.acad-dash-kpi-value--name {
    font-size: 1rem;
    font-weight: 800;
    color: #f2f2f3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.acad-player-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

@media (max-width: 520px) {
    .acad-player-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* â”€â”€ Coach dashboard: equipos y ligas reales â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.acad-coach-teams-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 4px 0 2px;
}

.acad-coach-team-chip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
    min-width: 160px;
    max-width: 220px;
    border-radius: 12px;
    border: 1px solid rgba(130, 71, 229, 0.35);
    background: rgba(27, 27, 47, 0.85);
    color: #e8e8ec;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, transform 0.12s ease;
}

.acad-coach-team-chip:hover {
    border-color: #a855f7;
    transform: translateY(-1px);
}

.acad-coach-team-chip-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.acad-coach-team-chip-initial {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #6b21a8, #8247e5);
    color: #fff;
}

.acad-coach-team-chip-name {
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.25;
}

.acad-coach-team-chip-meta {
    font-size: 0.72rem;
    color: #9ca3af;
}

.acad-coach-ligas-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.acad-coach-liga-pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(130, 71, 229, 0.45);
    background: rgba(40, 36, 58, 0.9);
    color: #ddd6fe;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.acad-coach-liga-pill:hover {
    background: rgba(130, 71, 229, 0.25);
}

.acad-game-row--match .acad-game-score {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    color: #c4b5fd;
    margin-bottom: 4px;
}

/* â”€â”€ PSP responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
    .psp-bar {
        padding: 10px 12px;
        gap: 10px;
        margin: 0 -10px 14px;
    }

    .psp-avatar-wrap { width: 44px; height: 44px; }
    .psp-avatar-initial { font-size: 1.05rem; }
    .psp-name { font-size: .95rem; }
    .psp-ovr { width: 44px; height: 44px; border-radius: 10px; }
    .psp-ovr-num { font-size: 1rem; }
}
/* /Pages/AppDashboard.razor.rz.scp.css */
/* Hub /dashboard â€” mobile-first, alineado visualmente con panel SuperAdmin (cards sa-qact) */

.ux-app-dash {
    max-width: 920px;
    margin: 0 auto;
    padding: 16px 12px 40px;
    color: #ececec;
    box-sizing: border-box;
    position: relative;
    border-radius: 18px;
}

@media (min-width: 640px) {
    .ux-app-dash {
        padding: 22px 18px 48px;
    }
}

.ux-app-dash__header {
    margin-bottom: 18px;
    position: relative;
    padding: 0.4rem 0.2rem 0.35rem;
    isolation: isolate;
}

.ux-app-dash__header::before {
    content: "";
    position: absolute;
    inset: -0.3rem -0.2rem -0.2rem;
    z-index: -1;
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(124, 58, 237, 0.14), rgba(245, 177, 0, 0.08) 55%, rgba(14, 14, 22, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ux-app-dash__eyebrow {
    margin: 0 0 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #a78bfa;
    text-transform: uppercase;
}

.ux-app-dash__title {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 4.2vw, 1.9rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.ux-app-dash__role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f5b100;
    background: rgba(245, 177, 0, 0.08);
    border: 1px solid rgba(245, 177, 0, 0.25);
    border-radius: 999px;
    padding: 6px 14px;
    width: fit-content;
}

.ux-app-dash__hint {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #8b8b9e;
    max-width: 52ch;
}

/* PestaÃ±as â€” scroll horizontal en mÃ³vil */
.ux-app-dash__tabs {
    display: flex;
    gap: 4px;
    margin: 18px 0 20px;
    padding: 6px;
    background: #101018;
    border: 1px solid #252532;
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    position: sticky;
    top: 0.25rem;
    z-index: 4;
}

.ux-app-dash__tabs::-webkit-scrollbar {
    display: none;
}

.ux-app-dash__tab {
    flex: 1 1 auto;
    min-width: max-content;
    scroll-snap-align: start;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #7a7a8e;
    background: transparent;
    cursor: pointer;
    transition: color 0.15s, background 0.15s, box-shadow 0.15s;
}

.ux-app-dash__tab:hover {
    color: #c4c4d4;
}

.ux-app-dash__tab--active {
    color: #0a0a0c;
    background: linear-gradient(135deg, #f5b100, #e89400);
    box-shadow: 0 2px 14px rgba(245, 177, 0, 0.28);
}

.ux-app-dash__main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ux-dash-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 14px;
    padding: 0.45rem;
}

.ux-dash-stack--resumen {
    background: linear-gradient(180deg, rgba(16, 16, 24, 0.48), rgba(10, 10, 14, 0.22));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.ux-dash-stack--explorar {
    background:
        radial-gradient(circle at 10% -10%, rgba(245, 177, 0, 0.12), transparent 35%),
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.12), transparent 45%),
        linear-gradient(170deg, rgba(12, 12, 18, 0.7), rgba(10, 10, 14, 0.4));
    border: 1px solid rgba(245, 177, 0, 0.22);
}

.ux-dash-stack--gestion {
    background: linear-gradient(180deg, rgba(20, 20, 30, 0.55), rgba(10, 10, 15, 0.25));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

/* Grilla de SaQuickActionCard: 1 col mÃ³vil â†’ 2 tablet â†’ 3 escritorio (resumen) */
.ux-dash-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.ux-next-game {
    border: 1px solid rgba(245, 177, 0, 0.4);
    border-radius: 14px;
    background:
        radial-gradient(circle at 10% 0, rgba(245, 177, 0, 0.2), transparent 35%),
        radial-gradient(circle at 100% 0, rgba(124, 58, 237, 0.22), transparent 45%),
        linear-gradient(150deg, #12121a, #0a0a0f);
    color: #f4f4f5;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ux-next-game:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 177, 0, 0.58);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.ux-next-game__k {
    margin: 0 0 6px;
    font-size: 0.62rem;
    font-weight: 900;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.ux-next-game__teams {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ux-next-game__teams strong {
    font-size: 1rem;
    font-weight: 900;
}

.ux-next-game__teams span {
    font-size: 0.72rem;
    color: #a1a1aa;
    font-weight: 800;
}

.ux-next-game__meta {
    margin: 8px 0 0;
    font-size: 0.74rem;
    color: #d4d4d8;
}

.ux-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ux-mini-card {
    border: 1px solid #262638;
    border-radius: 12px;
    background: #101018;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.16s ease, transform 0.16s ease;
}

.ux-mini-card:hover {
    border-color: rgba(245, 177, 0, 0.35);
    transform: translateY(-1px);
}

.ux-mini-card span {
    color: #8b8b9e;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ux-mini-card strong {
    color: #f4f4f5;
    font-size: 1.05rem;
    font-weight: 900;
}

@media (min-width: 520px) {
    .ux-dash-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 880px) {
    .ux-dash-grid--featured {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ux-panel-foot {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
    color: #5c5c6e;
    line-height: 1.5;
}

.ux-panel-foot strong {
    color: #8b8b9e;
    font-weight: 800;
}

.ux-app-dash--explorar .ux-app-dash__header::before {
    background: linear-gradient(145deg, rgba(245, 177, 0, 0.15), rgba(124, 58, 237, 0.1) 62%, rgba(10, 10, 18, 0.22));
}

.ux-app-dash--gestion .ux-app-dash__header::before {
    background: linear-gradient(145deg, rgba(148, 163, 184, 0.16), rgba(99, 102, 241, 0.08) 60%, rgba(10, 10, 18, 0.22));
}
/* /Pages/ArbitroDashboard.razor.rz.scp.css */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ArbitroDashboard â€” Dark NBA-style panel
   All selectors are scoped to .arb-* to avoid collisions
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-page {
    min-height: 100vh;
    background: #0a0a0f;
    color: #f0f0f8;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-bottom: 40px;
}

/* â”€â”€ Loader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 12px;
    color: #8b8ba7;
}
.arb-loader-ring {
    width: 44px;
    height: 44px;
    border: 3px solid #1e1e2e;
    border-top-color: #f97316;
    border-radius: 50%;
    animation: arb-spin-b-6paengftqq 0.8s linear infinite;
}
@keyframes arb-spin-b-6paengftqq { to { transform: rotate(360deg); } }

/* â”€â”€ Error banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-error-banner {
    margin: 24px 16px;
    padding: 14px 16px;
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.35);
    border-radius: 10px;
    color: #fca5a5;
    font-size: .9rem;
}

/* â”€â”€ Hero header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 50%, #0d1117 100%);
    padding: 20px 16px 18px;
    overflow: hidden;
}
.arb-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(249,115,22,.12), transparent);
    pointer-events: none;
}
.arb-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Avatar */
.arb-hero-avatar {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #dc2626);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(249,115,22,.3);
    overflow: hidden;
}
.arb-hero-avatar--photo { background: #1e1e2e; }
.arb-hero-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.arb-hero-initial { font-size: 1.6rem; font-weight: 900; color: #fff; }

/* Identity */
.arb-hero-identity { flex: 1 1 160px; }
.arb-hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f97316, #ef4444);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}
.arb-hero-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
}
.arb-hero-sub { font-size: .75rem; color: #8b8ba7; margin: 0; }

/* KPI pills in hero */
.arb-hero-kpis {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.arb-kpi {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    padding: 6px 12px;
    min-width: 44px;
}
.arb-kpi-num { font-size: 1.1rem; font-weight: 800; color: #f97316; }
.arb-kpi-lbl { font-size: .6rem; color: #8b8ba7; text-transform: uppercase; letter-spacing: .06em; }

/* Logout */
.arb-logout-btn {
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.3);
    color: #fca5a5;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.arb-logout-btn:hover { background: rgba(239,68,68,.28); }

/* â”€â”€ Tab bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-tab-bar {
    display: flex;
    background: #0f0f1a;
    border-bottom: 1px solid #1e1e2e;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.arb-tab-bar::-webkit-scrollbar { display: none; }
.arb-tab {
    flex: 1 0 auto;
    padding: 13px 16px;
    background: transparent;
    border: none;
    color: #5a5a7a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.arb-tab.active {
    color: #f97316;
    border-bottom-color: #f97316;
}
.arb-tab:hover:not(.active) { color: #aaa; }

/* â”€â”€ Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-section { padding: 16px 14px; }
.arb-empty {
    text-align: center;
    color: #5a5a7a;
    padding: 40px 0;
    font-size: .9rem;
}

/* â”€â”€ Match card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-match-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    transition: border-color .2s;
}
.arb-match-card:hover { border-color: #2e2e48; }
.arb-match-card--hoy { border-left: 3px solid #f97316; }
.arb-match-card--futuro { border-left: 3px solid #3b82f6; }

.arb-match-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.arb-match-liga { font-size: .7rem; color: #8b8ba7; font-weight: 600; }

/* Estado chips */
.arb-estado {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
}
.arb-estado--finalizado, .arb-estado--jugado, .arb-estado--cerrado {
    background: rgba(34,197,94,.15); color: #86efac;
}
.arb-estado--encurso {
    background: rgba(249,115,22,.2); color: #fb923c;
}
.arb-estado--pendiente, .arb-estado--programado {
    background: rgba(59,130,246,.15); color: #93c5fd;
}
.arb-estado--cancelado, .arb-estado--anulado {
    background: rgba(239,68,68,.15); color: #fca5a5;
}

/* Teams row */
.arb-match-teams {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.arb-team {
    display: flex; align-items: center; gap: 8px;
    flex: 1;
}
.arb-team--visit { flex-direction: row-reverse; }
.arb-team-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.arb-team-name { font-size: .85rem; font-weight: 700; color: #e0e0f0; flex: 1; }
.arb-score {
    font-size: 1.1rem;
    font-weight: 900;
    color: #f97316;
    min-width: 28px;
    text-align: center;
}
.arb-vs {
    font-size: .65rem;
    font-weight: 900;
    color: #3a3a58;
    letter-spacing: .1em;
    flex-shrink: 0;
}

/* Match meta row */
.arb-match-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: .72rem;
    color: #6b6b8a;
}
.arb-rol-chip {
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.25);
    color: #fb923c;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
}
.arb-checkin-ok {
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.25);
    color: #86efac;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: .65rem;
    font-weight: 700;
}
.arb-checkin-btn {
    background: linear-gradient(90deg, #f97316, #ef4444);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}
.arb-checkin-btn:hover { opacity: .85; }

/* â”€â”€ Stats KPI grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.arb-kpi-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.arb-kpi-card.accent { border-left: 3px solid #f97316; }
.arb-kpi-card.green  { border-left: 3px solid #22c55e; }
.arb-kpi-card.gold   { border-left: 3px solid #eab308; }
.arb-kpi-card.blue   { border-left: 3px solid #3b82f6; }
.arb-kpi-icon { font-size: 1.3rem; }
.arb-kpi-big  { font-size: 1.8rem; font-weight: 900; color: #f0f0f8; }
.arb-kpi-lbl  { font-size: .7rem; color: #8b8ba7; font-weight: 600; text-align: center; }

/* Card container */
.arb-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 16px;
}
.arb-card-title { font-size: .85rem; font-weight: 700; color: #e0e0f0; margin-bottom: 4px; }
.arb-card-sub   { font-size: .75rem; color: #6b6b8a; margin-bottom: 14px; }

/* League rows in stats */
.arb-league-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #1e1e2e;
    font-size: .82rem;
}
.arb-league-row:last-child { border-bottom: none; }
.arb-league-name { color: #d0d0e8; }
.arb-league-count { font-weight: 800; color: #f97316; }

/* â”€â”€ Disponibilidad â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-dia-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #1e1e2e;
}
.arb-dia-row:last-of-type { border-bottom: none; }
.arb-dia-lbl {
    width: 36px;
    font-size: .72rem;
    font-weight: 700;
    color: #8b8ba7;
    padding-top: 6px;
    text-transform: uppercase;
}
.arb-dia-slots { flex: 1; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.arb-slot {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.2);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: .72rem;
    color: #fb923c;
}
.arb-slot-del {
    background: none; border: none;
    color: rgba(249,115,22,.6); cursor: pointer;
    padding: 0; line-height: 1;
    font-size: .8rem;
}
.arb-add-slot-btn {
    background: rgba(255,255,255,.05);
    border: 1px dashed #2e2e48;
    color: #6b6b8a;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .72rem;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.arb-add-slot-btn:hover { border-color: #f97316; color: #fb923c; }

.arb-add-form {
    background: #0f0f1a;
    border: 1px solid #2e2e48;
    border-radius: 10px;
    padding: 14px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.arb-add-form label { font-size: .78rem; color: #8b8ba7; display: flex; flex-direction: column; gap: 4px; }
.arb-time-input {
    background: #1a1a2e;
    border: 1px solid #2e2e48;
    border-radius: 6px;
    color: #e0e0f0;
    padding: 6px 10px;
    font-size: .85rem;
    width: 100%;
}
.arb-add-form-actions { display: flex; gap: 8px; }

/* Buttons */
.arb-btn-primary {
    background: linear-gradient(90deg, #f97316, #ef4444);
    color: #fff; border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}
.arb-btn-primary:hover { opacity: .88; }
.arb-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.arb-btn-ghost {
    background: rgba(255,255,255,.05);
    border: 1px solid #2e2e48;
    color: #8b8ba7;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: .85rem;
    cursor: pointer;
    transition: background .2s;
}
.arb-btn-ghost:hover { background: rgba(255,255,255,.1); }

.arb-disp-msg {
    font-size: .78rem;
    color: #86efac;
    padding: 6px 0;
    text-align: center;
}
.arb-disp-msg--error { color: #fca5a5; }

/* â”€â”€ Ligas â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.arb-liga-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color .2s;
}
.arb-liga-card:hover { border-color: #2e2e48; }
.arb-liga-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.arb-liga-info { flex: 1; }
.arb-liga-nombre { font-size: .95rem; font-weight: 700; color: #e0e0f0; margin-bottom: 4px; }
.arb-liga-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .72rem; color: #6b6b8a; }
.arb-liga-notas { font-size: .72rem; color: #6b6b8a; margin-top: 4px; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 600px) {
    .arb-kpi-grid { grid-template-columns: repeat(4, 1fr); }
    .arb-hero-inner { flex-wrap: nowrap; }
    .arb-section { padding: 20px 20px; }
}
/* /Pages/Comunidad/SubirPlanilla.razor.rz.scp.css */
/* â”€â”€ Page shell â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 16px 64px;
    font-family: var(--font-sans, system-ui, sans-serif);
    color: #f0f0f0;
}

/* â”€â”€ Loading / empty â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-loading, .sp-uploading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 0;
    color: #9ca3af;
}

.sp-empty {
    text-align: center;
    padding: 64px 24px;
}
.sp-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.sp-empty-title { font-size: 1.4rem; font-weight: 700; margin: 0 0 8px; }
.sp-empty-hint { color: #9ca3af; margin-bottom: 24px; }

/* â”€â”€ Spinner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: #f97316;
    border-radius: 50%;
    animation: sp-spin-b-peaxtayii6 0.7s linear infinite;
}
@keyframes sp-spin-b-peaxtayii6 { to { transform: rotate(360deg); } }

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-back-btn {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #d1d5db;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}
.sp-back-btn:hover { background: rgba(255,255,255,0.14); }
.sp-liga-name { font-size: 1.1rem; font-weight: 600; }

.sp-jornada-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.4);
    border-radius: 999px;
    padding: 5px 14px;
}
.sp-j-label { font-size: 0.68rem; color: #f97316; text-transform: uppercase; letter-spacing: .05em; }
.sp-j-num   { font-size: 1rem; font-weight: 700; color: #fb923c; }
.sp-j-nombre { font-size: 0.8rem; color: #9ca3af; }

/* â”€â”€ Existing banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-existing-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #93c5fd;
}
.sp-existing-icon { font-size: 1.2rem; flex-shrink: 0; }

/* â”€â”€ Upload card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-upload-card {
    background: #1e1e2e;
    border: 2px dashed #374151;
    border-radius: 16px;
    transition: border-color 0.2s, background 0.2s;
    overflow: hidden;
    margin-bottom: 16px;
}
.sp-upload-card.sp-drag-over {
    border-color: #f97316;
    background: rgba(249,115,22,0.06);
}

/* Drop area (no file) */
.sp-drop-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 40px 24px;
    text-align: center;
}
.sp-drop-icon  { font-size: 2.5rem; }
.sp-drop-title { font-size: 1rem; font-weight: 600; margin: 0; }
.sp-drop-hint  { font-size: 0.82rem; color: #6b7280; margin: 0; }

/* Preview */
.sp-preview {
    position: relative;
}
.sp-preview-img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    display: block;
    background: #111;
}
.sp-clear-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #f1f5f9;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.sp-clear-btn:hover { background: rgba(239,68,68,0.8); }

/* Hide the actual <input> */
.sp-file-input { display: none; }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s, background 0.15s;
    text-decoration: none;
}
.sp-btn:disabled { opacity: 0.45; cursor: default; }

.sp-btn-pri {
    background: #f97316;
    color: #fff;
}
.sp-btn-pri:hover { background: #ea6a0a; }

.sp-btn-sec {
    background: rgba(255,255,255,0.08);
    color: #d1d5db;
    border: 1px solid rgba(255,255,255,0.12);
}
.sp-btn-sec:hover { background: rgba(255,255,255,0.14); }

.sp-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    margin-bottom: 16px;
}

/* â”€â”€ Feedback â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-error-msg {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.35);
    color: #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.sp-success-card {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 24px;
}
.sp-success-icon  { font-size: 2.5rem; margin-bottom: 8px; }
.sp-success-title { font-size: 1.2rem; font-weight: 700; color: #86efac; margin: 0 0 8px; }
.sp-success-hint  { color: #9ca3af; font-size: 0.9rem; margin-bottom: 20px; }
.sp-success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ History â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sp-history {
    margin-top: 32px;
}
.sp-history-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.sp-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sp-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e1e2e;
    border: 1px solid #2d2d3e;
    border-radius: 10px;
    padding: 10px 14px;
}
.sp-history-thumb-link { flex-shrink: 0; }
.sp-history-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    background: #111;
}
.sp-history-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.sp-history-jornada { font-size: 0.88rem; font-weight: 600; }
.sp-history-date    { font-size: 0.78rem; color: #6b7280; }

.sp-history-badge {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.sp-badge-adicional { background: rgba(168,85,247,0.18); color: #c084fc; }

.sp-history-estado {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}
.sp-estado-pendiente  { background: rgba(234,179,8,0.15); color: #fde047; }
.sp-estado-revisado   { background: rgba(34,197,94,0.15); color: #86efac; }
.sp-estado-error      { background: rgba(239,68,68,0.15); color: #fca5a5; }
/* /Pages/JugadorDashboard.razor.rz.scp.css */
/* Jugador dashboard (pÃ¡gina): solo loader / error / vacÃ­o. El perfil con tabs vive en PlayerProfileDashboard.razor.css */

.pv-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 600;
}

.pv-loader-ring {
    width: 44px;
    height: 44px;
    border: 3px solid #27272a;
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: pv-spin-b-sor1qawshn 0.75s linear infinite;
}

@keyframes pv-spin-b-sor1qawshn {
    to { transform: rotate(360deg); }
}

.pv-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: #f87171;
    max-width: 420px;
    margin: 0 auto;
}

.pv-error .material-icons {
    font-size: 2.5rem;
    opacity: 0.9;
}

.pv-btn-retry {
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0a0a0f;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.pv-btn-retry:hover {
    filter: brightness(1.06);
}

.pv-empty {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
}

.pv-empty-visual {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #3f3f46 0%, #18181b 70%);
    border: 2px solid #3f3f46;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.pv-empty-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fafafa;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.pv-empty-msg {
    color: #a1a1aa;
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
    line-height: 1.45;
}

.pv-empty-hint {
    color: #52525b;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}
/* /Pages/LeagueView.razor.rz.scp.css */
/* â•â• ESPN-style League Banner â•â• */
.esn-league-banner {
    background: linear-gradient(180deg, #0b0b18 0%, #070710 60%, #050508 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 28px 20px 0;
    position: relative;
    overflow: hidden;
}

/* Shimmer line at top */
.esn-league-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130,71,229,0.4), transparent);
    pointer-events: none;
}

.esn-banner-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 26px;
    position: relative;
    z-index: 1;
}

.esn-banner-logo {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.esn-banner-logo:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.12);
}

.esn-banner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.esn-banner-info {
    flex: 1;
    min-width: 0;
}

.esn-banner-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    opacity: 0.85;
}

h1.esn-banner-title,
.esn-banner-title {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.esn-banner-sub {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.esn-banner-season {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8892a4;
}

.esn-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255,68,68,.12);
    border: 1px solid rgba(255,68,68,.35);
    color: #ff6b6b;
    font-size: .70rem;
    font-weight: 800;
    letter-spacing: .5px;
    animation: live-pulse-b-p2qtqpm9jq 2s ease-in-out infinite;
}

@media (max-width: 480px) {
    .esn-banner-title { font-size: 1.3rem; }
    .esn-banner-logo { width: 58px; height: 58px; border-radius: 10px; }
    .esn-league-banner { padding: 18px 16px 0; }
}

/* Hero sin Pro: header compacto en mÃ³vil (ligas mixto/juvenil/etc.) */
@media (max-width: 900px) {
    .lv-page > .esn-league-banner:not(.esn-league-banner--varonil-pro):not(.esn-league-banner--femenil-pro) {
        padding: 10px 14px 0;
    }
    .lv-page > .esn-league-banner:not(.esn-league-banner--varonil-pro):not(.esn-league-banner--femenil-pro) .esn-banner-inner {
        padding-bottom: 12px;
        gap: 12px;
    }
    .lv-page > .esn-league-banner:not(.esn-league-banner--varonil-pro):not(.esn-league-banner--femenil-pro) .esn-banner-logo {
        width: 52px;
        height: 52px;
    }
    .lv-page > .esn-league-banner:not(.esn-league-banner--varonil-pro):not(.esn-league-banner--femenil-pro) .esn-banner-title {
        font-size: clamp(0.95rem, 4vw, 1.25rem);
        margin-bottom: 4px;
    }
}

/* Panel pestaÃ±a Posiciones: sin hueco extra bajo tabs (escritorio) */
.lv-tab-panel--posiciones {
    min-width: 0;
}
@media (min-width: 901px) {
    .lv-tab-panel--posiciones .standings-wrap--compact {
        margin-top: 0;
    }
}

/* â•â• Portada tab sections â•â• */
.lv-portada-agenda {
    margin-bottom: 8px;
}
.lv-portada-section-head {
    margin-bottom: 6px;
}
.lv-portada-eyebrow {
    display: block;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}
.lv-portada-results {
    margin-top: 4px;
}

/* â•â• EN VIVO Section â•â• */
.live-section { background: linear-gradient(135deg, rgba(239,68,68,0.08) 0%, rgba(0,0,0,0) 60%); border-bottom: 1px solid rgba(239,68,68,0.2); padding: 16px 20px 20px; }
.live-section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.live-dot-anim { width: 10px; height: 10px; background: #ef4444; border-radius: 50%; flex-shrink: 0; animation: live-dot-pulse-b-p2qtqpm9jq 1.4s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
@keyframes live-dot-pulse-b-p2qtqpm9jq { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); } 70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); } 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); } }
.live-section-title { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.06em; color: #f87171; text-transform: none; }
.live-count-badge { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); font-size: 0.62rem; font-weight: 900; padding: 2px 8px; border-radius: 20px; }

.live-cards-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.live-cards-row::-webkit-scrollbar { display: none; }

.live-match-card { background: var(--bg-card); border: 1px solid rgba(239,68,68,0.3); border-radius: 14px; padding: 14px 18px; text-decoration: none; color: #fff; min-width: 280px; max-width: 360px; flex-shrink: 0; transition: border-color 0.2s, transform 0.18s; animation: lmc-in-b-p2qtqpm9jq 0.3s ease both; }
.live-match-card:hover { border-color: #ef4444; transform: translateY(-2px); }
@keyframes lmc-in-b-p2qtqpm9jq { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.lmc-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; margin-bottom: 8px; }
.lmc-team { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lmc-team-right { align-items: center; }
.lmc-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; background: #fff; padding: 3px; }
.lmc-initials { width: 36px; height: 36px; background: #222; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 900; color: #fff; }
.lmc-name { font-size: 0.72rem; font-weight: 700; color: #ddd; text-align: center; line-height: 1.2; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lmc-score-center { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lmc-score-row { display: flex; align-items: center; gap: 4px; }
.lmc-score { font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1; }
.lmc-sep { font-size: 1rem; font-weight: 700; color: #555; }
.lmc-live-tag { font-size: 0.58rem; font-weight: 900; color: #f87171; letter-spacing: 1.5px; animation: live-tag-blink-b-p2qtqpm9jq 1.2s step-start infinite; }
@keyframes live-tag-blink-b-p2qtqpm9jq { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.lmc-cancha { font-size: 0.65rem; color: var(--text-muted); border-top: 1px solid #1e1e1e; padding-top: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 600px) {
    .live-section { padding: 12px 14px 16px; }
    .live-match-card { min-width: 240px; padding: 12px 14px; }
    .lmc-score { font-size: 1.5rem; }
}

/* Category Selector Styles */
.category-selector-desktop {
    display: block;
}
.category-selector-mobile {
    display: none;
}
.category-selector-container {
    background: #000;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
/* MÃ³vil: una sola fila compacta; chips en bottom sheet */
@media (max-width: 900px) {
    .category-selector-desktop {
        display: none !important;
    }
    .category-selector-mobile {
        display: block;
    }
    .category-selector-container {
        padding: 8px 12px 10px;
        text-align: left;
    }
}
.category-season-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95) 0%, rgba(10, 10, 16, 0.98) 100%);
    color: #e2e8f0;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
}
.category-season-trigger:active {
    transform: scale(0.99);
}
.category-season-trigger__icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    opacity: 0.9;
}
.category-season-trigger__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.category-season-trigger__eyebrow {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}
.category-season-trigger__value {
    font-size: 0.88rem;
    font-weight: 800;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category-season-trigger__chev {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: #64748b;
    margin-left: auto;
}

/* Bottom sheet elegir temporada (mÃ³vil) */
.lv-season-overlay {
    position: fixed;
    inset: 0;
    z-index: 365;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    animation: lv-season-fade-b-p2qtqpm9jq 0.2s ease;
}
@keyframes lv-season-fade-b-p2qtqpm9jq {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lv-season-sheet {
    background: linear-gradient(180deg, #16161f 0%, #0a0a10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    max-height: min(72dvh, 480px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: lv-season-slide-b-p2qtqpm9jq 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}
@keyframes lv-season-slide-b-p2qtqpm9jq {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.lv-season-sheet__handle {
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin: 10px auto 0;
    flex-shrink: 0;
}
.lv-season-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.lv-season-sheet__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    color: #f8fafc;
}
.lv-season-sheet__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}
.lv-season-sheet__list {
    padding: 8px 12px max(16px, env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lv-season-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8f0;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
}
.lv-season-option--active {
    border-color: rgba(245, 177, 0, 0.45);
    background: rgba(245, 177, 0, 0.08);
}
.lv-season-option__main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}
.lv-season-option__dot {
    color: var(--accent);
    font-size: 0.55rem;
}
.lv-season-option__year {
    font-weight: 900;
    font-size: 1rem;
}
.lv-season-option__check {
    color: var(--accent);
    font-weight: 900;
    flex-shrink: 0;
}
.category-selector-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.category-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.category-chip {
    background: #111;
    border: 1px solid #222;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}
.category-chip:hover {
    border-color: #444;
    color: #fff;
}
.category-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    box-shadow: 0 0 15px rgba(245,177,0,0.3);
}
.is-active-season {
    border-color: var(--accent-dim);
    background: rgba(245, 177, 0, 0.05);
}
.active-dot {
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.6rem;
}
/* AÃ±o dentro del chip â€” destaca como dato principal */
.chip-year {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-right: 6px;
}

/* â”€â”€ CategorÃ­a badges (chips del selector de temporada) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-chip-badge {
    display: inline-flex;
    align-items: center;
    font-size: .52rem;
    font-weight: 900;
    letter-spacing: .6px;
    padding: 2px 6px;
    border-radius: 999px;
    margin-left: 5px;
    flex-shrink: 0;
}
.cat-chip-badge--femenil  { color: var(--cat-femenil-color, #f472b6); background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.28); }
.cat-chip-badge--varonil  { color: var(--cat-varonil-color, #60a5fa); background: rgba(96,165,250,.12);  border: 1px solid rgba(96,165,250,.28); }
.cat-chip-badge--mixto    { color: var(--cat-mixto-color,   #a78bfa); background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.28); }
.cat-chip-badge--juvenil  { color: var(--cat-juvenil-color, #4ade80); background: rgba(74,222,128,.10);  border: 1px solid rgba(74,222,128,.25); }

/* â”€â”€ CategorÃ­a badge en tarjeta de equipo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-team-badge {
    display: inline-flex;
    align-items: center;
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .7px;
    padding: 3px 9px;
    border-radius: 999px;
    margin-top: 6px;
}
.cat-team-badge--femenil  { color: var(--cat-femenil-color, #f472b6); background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.28); }
.cat-team-badge--varonil  { color: var(--cat-varonil-color, #60a5fa); background: rgba(96,165,250,.12);  border: 1px solid rgba(96,165,250,.28); }
.cat-team-badge--mixto    { color: var(--cat-mixto-color,   #a78bfa); background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.28); }
.cat-team-badge--juvenil  { color: var(--cat-juvenil-color, #4ade80); background: rgba(74,222,128,.10);  border: 1px solid rgba(74,222,128,.25); }

/* â”€â”€ CategorÃ­a badge en banner principal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-banner-badge {
    display: inline-flex;
    align-items: center;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .8px;
    padding: 3px 9px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle;
}
.cat-banner-badge--femenil  { color: var(--cat-femenil-color, #f472b6); background: rgba(244,114,182,.14); border: 1px solid rgba(244,114,182,.32); }
.cat-banner-badge--varonil  { color: var(--cat-varonil-color, #60a5fa); background: rgba(96,165,250,.14);  border: 1px solid rgba(96,165,250,.32); }
.cat-banner-badge--mixto    { color: var(--cat-mixto-color,   #a78bfa); background: rgba(167,139,250,.14); border: 1px solid rgba(167,139,250,.32); }
.cat-banner-badge--juvenil  { color: var(--cat-juvenil-color, #4ade80); background: rgba(74,222,128,.12);  border: 1px solid rgba(74,222,128,.28); }
@keyframes live-pulse-b-p2qtqpm9jq { 0%, 100% { opacity: 1; } 50% { opacity: .65; } }

/* Tabs bajo la barra global: misma referencia que site-nav-mobile (--nav-height) + safe area iOS */
.clutch-tabs-container {
    --lv-sticky-top: calc(var(--nav-height, 56px) + env(safe-area-inset-top, 0px));
    /* Altura aproximada de la fila de tabs en mÃ³vil (para posicionar el panel "MÃ¡s" sin recortes) */
    --lv-league-tabs-row-height: 46px;
    background: rgba(8,8,14,0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--lv-sticky-top);
    z-index: 60;
    backdrop-filter: blur(12px);
    isolation: isolate;
}

@media (max-width: 768px) {
    .clutch-tabs-container {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(8, 8, 14, 0.995);
    }
}
/* Orden visual = orden DOM: sin row-reverse ni order heredado de otros layouts */
.clutch-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}
.lv-tablist-order-lock {
    flex-direction: row !important;
}
.lv-tablist-order-lock > .clutch-tab {
    order: 0 !important;
    flex-shrink: 0;
}
.clutch-tab { background: none; border: none; padding: 16px 20px; color: var(--text-muted); font-size: 0.8rem; font-weight: 800; cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; }
.clutch-tab.active { color: #fff; border-bottom-color: var(--accent); }

/* â”€â”€ Liga: tabs escritorio vs mÃ³vil (3 + MÃ¡s) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lv-tabs-desktop {
    display: none;
}
.lv-tabs-mobile {
    display: block;
}
@media (min-width: 901px) {
    .lv-tabs-desktop {
        display: block;
    }
    .lv-tabs-mobile {
        display: none !important;
    }
}

.lv-tabs-mobile-row {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 66;
    background: inherit;
}
.lv-tabs-mobile-primary.clutch-tabs {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0 4px;
    overflow-x: visible;
    justify-content: stretch;
    gap: 0;
    flex-direction: row;
}
.lv-tabs-mobile-primary .clutch-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 6px;
    font-size: 0.72rem;
    text-align: center;
    border-bottom-width: 3px;
}
.lv-tabs-more-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
}
.lv-tab-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 14px !important;
    font-size: 0.72rem !important;
    border-bottom: 3px solid transparent;
}
.lv-tab-more-btn.active {
    color: #fff;
    border-bottom-color: var(--accent);
}
.lv-tab-more-chevron {
    display: inline-block;
    font-size: 0.65em;
    opacity: 0.85;
    transition: transform 0.2s ease;
    margin-left: 1px;
}
.lv-tab-more-btn--open .lv-tab-more-chevron {
    transform: rotate(-180deg);
}

/* Fondo al abrir menÃº: por debajo de la fila de tabs, por encima del contenido */
.lv-tabs-more-backdrop {
    position: fixed;
    inset: 0;
    z-index: 64;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    cursor: default;
}

.lv-tabs-more-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--lv-sticky-top) + var(--lv-league-tabs-row-height));
    z-index: 68;
    max-height: min(420px, calc(100dvh - var(--lv-sticky-top) - var(--lv-league-tabs-row-height) - var(--site-bottomnav-total, 0px) - 16px));
    overflow-y: auto;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(22, 22, 34, 0.98) 0%, rgba(12, 12, 20, 0.98) 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(167, 139, 250, 0.12);
    -webkit-overflow-scrolling: touch;
}

.lv-tabs-more-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    margin: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.lv-tabs-more-item:hover {
    background: rgba(167, 139, 250, 0.12);
    color: #fff;
}
.lv-tabs-more-item.is-active {
    background: rgba(124, 58, 237, 0.2);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.35);
}
.lv-tabs-more-item.is-active::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(245, 177, 0, 0.55);
    flex-shrink: 0;
}
.lv-tabs-more-item:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.65);
    outline-offset: 1px;
}

/* Si el menÃº queda abierto al rotar a escritorio, no mostrar capa fija encima del contenido */
@media (min-width: 901px) {
    .lv-tabs-more-popover-layer {
        display: none !important;
    }
    .lv-tabs-desktop .clutch-tabs {
        justify-content: center;
        flex-wrap: nowrap;
    }
}

/* Shell: en escritorio los wrappers no alteran el flujo */
.lv-page,
.lv-page-dock,
.lv-page-dock-body {
    display: block;
    min-height: 0;
    max-height: none;
    overflow: visible;
}

.lv-content { max-width: 1000px; margin: 0 auto; padding: 30px 20px; }
/* Premium Standings Table */
.standings-wrap {
    background: linear-gradient(160deg, rgba(18,18,28,0.95) 0%, rgba(10,10,18,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    touch-action: pan-x pan-y;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
/* Lista compacta (flex): sin scroll horizontal innecesario */
.standings-wrap--compact {
    overflow-x: hidden;
    overflow-y: visible;
    touch-action: pan-y;
}
.standings-wrap--compact .standings-compact {
    border: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
/* Igual que .bracket-grid: el ancho natural fuerza scroll horizontal dentro del viewport flex */
.standings-table-scroll {
    display: inline-block;
    min-width: max-content;
    width: 100%;
    vertical-align: top;
    box-sizing: border-box;
}
.standings-table {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
}
.standings-table th {
    background: rgba(255,255,255,0.03);
    padding: 14px 16px;
    font-size: 0.62rem;
    font-weight: 900;
    color: #555;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.standings-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
}
.standings-table tbody tr:last-child td { border-bottom: none; }
.standings-table th.col-team, .standings-table td.col-team { text-align: left; }
.standings-table th.col-pts,
.standings-table td.col-pts { text-align: center; white-space: nowrap; }
.standings-table td.col-pts strong { color: #fff; font-size: 1rem; font-weight: 900; }
.standings-table th:not(.col-team),
.standings-table td:not(.col-team) { white-space: nowrap; }
.standings-team { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #fff; }
.team-logo-sm { width: 30px; height: 30px; object-fit: contain; }
.rank-num { color: var(--accent); font-weight: 900; font-family: 'Outfit', sans-serif; font-size: 1rem; }
.standings-table td.dif-pos { color: #4ade80; font-weight: 700; }
.standings-table td.dif-neg { color: #f87171; font-weight: 700; }

.clickable-row { cursor: pointer; transition: background 0.2s; }
.clickable-row:hover { background: rgba(245, 177, 0, 0.05) !important; }
.team-link { color: #fff; text-decoration: none; }
.clickable-row:hover .team-link { color: var(--accent); }

.match-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 24px; margin-bottom: 12px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; text-decoration: none; color: #fff; transition: transform 0.15s; }
.match-card:hover { transform: scale(1.01); border-color: var(--accent); }
.match-card-team { display: flex; align-items: center; gap: 16px; }
.match-card-team-right { flex-direction: row-reverse; text-align: right; }
.match-team-logo { width: 44px; height: 44px; object-fit: contain; }
.match-team-name { font-weight: 800; }
.match-card-center { text-align: center; padding: 0 20px; }
.match-vs { font-size: 0.7rem; font-weight: 900; color: #444; display: block; }
.match-time { font-size: 1.2rem; font-weight: 800; }
.result-score { display: flex; align-items: center; gap: 10px; justify-content: center; }
.score-num { font-size: 2rem; font-weight: 900; }
.result-date { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 4px; }
.score-winner { color: #7c3aed; }
.score-pending { font-size: 1.4rem; color: var(--text-muted); }
.final-badge { font-size: 0.65rem; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; }
.pending-badge { color: #f59e0b; }
.team-winner .match-team-name { color: #ffffff; font-weight: 900; }
.winner-label { font-size: 0.55rem; font-weight: 800; color: #7c3aed; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.4); border-radius: 4px; padding: 1px 5px; letter-spacing: 1px; }

/* â”€â”€ Mobile-style Calendar â”€â”€ */
.cal-date-strip-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; background: #0a0a0a; border-bottom: 1px solid #1e1e1e; padding: 12px 16px; }
.cal-date-strip-wrap::-webkit-scrollbar { display: none; }
.cal-date-strip { display: flex; gap: 8px; min-width: max-content; }
.cal-date-btn { background: #111; border: 1px solid #222; border-radius: 10px; padding: 8px 14px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 1px; transition: all 0.15s; min-width: 54px; }
.cal-date-btn:hover { border-color: #444; }
.cal-date-btn.active { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px rgba(245,177,0,0.3); }
.cal-dow { font-size: 0.6rem; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; }
.cal-date-btn.active .cal-dow { color: #000; }
.cal-day { font-size: 1.3rem; font-weight: 900; color: #fff; line-height: 1; }
.cal-date-btn.active .cal-day { color: #000; }
.cal-month { font-size: 0.55rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.cal-date-btn.active .cal-month { color: #000; }
.cal-date-btn--empty { opacity: 0.55; }
.cal-date-count {
    margin-top: 4px;
    font-size: 0.55rem;
    font-weight: 800;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 999px;
    padding: 1px 6px;
    line-height: 1.2;
}
.cal-date-btn.active .cal-date-count { color: #000; background: rgba(0,0,0,0.12); }

/* â”€â”€ Calendario: vista fechas / jornadas â”€â”€ */
.lv-cal-shell { display: flex; flex-direction: column; gap: 14px; margin: 0 -4px; }
.lv-cal-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 4px;
}
.lv-cal-toggle-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.85);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    color: inherit;
    font: inherit;
}
.lv-cal-toggle-card:hover { border-color: rgba(32, 167, 255, 0.45); }
.lv-cal-toggle-card--active {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.5), 0 0 20px rgba(32, 167, 255, 0.15);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.12), rgba(32, 167, 255, 0.06));
}
.lv-cal-toggle-card--rounds.lv-cal-toggle-card--active {
    border-color: #20a7ff;
    box-shadow: 0 0 0 1px rgba(32, 167, 255, 0.55), 0 0 20px rgba(139, 92, 246, 0.12);
}
.lv-cal-toggle-icon { font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
.lv-cal-toggle-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lv-cal-toggle-title { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.02em; color: #f8fafc; }
.lv-cal-toggle-sub { font-size: 0.68rem; line-height: 1.35; color: var(--text-muted); }

.lv-cal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
}
.lv-cal-sidebar { order: 2; }
.lv-cal-main { order: 1; min-width: 0; }
.lv-cal-aside { display: none; }
.lv-cal-view-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0 0 10px;
    padding: 0 4px;
    line-height: 1.4;
}
.lv-cal-date-strip-wrap.lv-cal-date-strip-wrap {
    margin: 0 -12px 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #1e1e1e;
}
.lv-cal-day-head, .lv-cal-round-head { padding: 4px 4px 12px; }
.lv-cal-day-title, .lv-cal-round-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    color: #f8fafc;
}
.lv-cal-round-title { text-transform: uppercase; font-size: 0.95rem; }
.lv-cal-day-meta, .lv-cal-round-meta {
    margin: 6px 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.lv-cal-tip {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin: 4px 8px 0;
    line-height: 1.45;
    opacity: 0.9;
}

.lv-cal-round-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.lv-cal-round-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.9);
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
.lv-cal-round-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.lv-cal-round-strip-wrap {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.lv-cal-round-strip-wrap::-webkit-scrollbar { display: none; }
.lv-cal-round-strip {
    display: flex;
    gap: 8px;
    min-width: max-content;
    padding: 2px 0;
}
.lv-cal-round-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #111;
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}
.lv-cal-round-chip--active {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(32, 167, 255, 0.12));
    box-shadow: 0 0 14px rgba(139, 92, 246, 0.25);
}
.lv-cal-round-chip-count {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    padding: 1px 6px;
}
.lv-cal-round-date-block { margin-bottom: 18px; }
.lv-cal-round-date-title {
    margin: 0 0 8px;
    padding: 0 4px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: capitalize;
}
.lv-cal-round-groups .cal-games-list { padding-top: 0; }

.lv-cal-filters { position: relative; }
.lv-cal-filters-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.85);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}
.lv-cal-filters-badge {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 8px #8b5cf6;
}
.lv-cal-filters-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.92);
}
.lv-cal-filters-panel--hidden-mobile { display: none; }
.lv-cal-filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.lv-cal-filters-title { font-size: 0.8rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.lv-cal-filters-close {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}
.lv-cal-filter-field { display: flex; flex-direction: column; gap: 4px; }
.lv-cal-filter-label { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.lv-cal-filter-select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #0a0a0a;
    color: #f1f5f9;
    font-size: 0.8rem;
}
.lv-cal-filter-clear {
    margin-top: 4px;
    padding: 8px 12px;
    border: none;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}
.lv-cal-help-card {
    padding: 16px;
    border-radius: 14px;
    border: 1px dashed rgba(139, 92, 246, 0.45);
    background: rgba(139, 92, 246, 0.06);
}
.lv-cal-help-title { margin: 0 0 10px; font-size: 0.85rem; font-weight: 800; color: #c4b5fd; }
.lv-cal-help-list { margin: 0; padding-left: 18px; font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

@media (min-width: 900px) {
    .lv-cal-layout {
        grid-template-columns: 200px minmax(0, 1fr) 220px;
        gap: 16px;
    }
    .lv-cal-sidebar { order: 0; }
    .lv-cal-main { order: 0; }
    .lv-cal-aside { display: block; order: 0; }
    .lv-cal-filters-mobile-btn { display: none; }
    .lv-cal-filters-panel--hidden-mobile { display: flex; }
    .lv-cal-toggle { padding: 0 0 4px; }
}

/* â”€â”€ Venue group header â”€â”€ */
.cal-games-list { display: flex; flex-direction: column; gap: 0; padding: 16px 12px 20px; box-sizing: border-box; }

/* Resultados: misma tarjeta que calendario, pero secciÃ³n por jornada + pie de cancha */
.lv-results-wrap { padding: 4px 0 20px; }
.lv-results-lead {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted);
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

/* Resultados â€” barra de filtros (Flashscore / ESPN style) */
.lv-rf {
    margin: 0 0 14px;
    padding: 14px 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(8,10,18,0.92);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lv-rf-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px 12px;
}
.lv-rf-row--primary { gap: 12px 14px; }
.lv-rf-row--quick {
    align-items: center;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.lv-rf-row--chips {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}
.lv-rf-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1 1 140px;
}
.lv-rf-label {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}
.lv-rf-select,
.lv-rf-date {
    width: 100%;
    max-width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(15,23,42,0.85);
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 700;
}
.lv-rf-select:focus,
.lv-rf-date:focus {
    outline: none;
    border-color: rgba(245,177,0,0.45);
    box-shadow: 0 0 0 1px rgba(245,177,0,0.2);
}
.lv-rf-quick-label {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-right: 4px;
}
.lv-rf-pill {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(30,41,59,0.75);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.lv-rf-pill:hover {
    border-color: rgba(245,177,0,0.45);
    background: rgba(245,177,0,0.12);
}
.lv-rf-pill--ghost {
    border-color: rgba(100,116,139,0.35);
    background: transparent;
    color: #94a3b8;
}
.lv-rf-chip-label {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}
.lv-rf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.lv-rf-chip {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(15,23,42,0.65);
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
}
.lv-rf-chip:hover {
    border-color: rgba(148,163,184,0.45);
    color: #fff;
}
.lv-rf-chip--active {
    border-color: rgba(245,177,0,0.55);
    background: rgba(245,177,0,0.14);
    color: #fff;
}
.lv-rf-meta {
    margin: 0 0 14px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #cbd5e1;
}
.lv-rf-meta-sub {
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 560px) {
    .lv-rf-field { flex: 1 1 100%; }
    .lv-rf-row--quick { flex-wrap: wrap; }
}

.lv-results-list { padding-top: 4px; }
.lv-results-jblock { margin-bottom: 22px; }
.lv-results-jblock:last-child { margin-bottom: 8px; }
.lv-results-jhead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 0 2px 6px;
    border-bottom: 1px solid rgba(245,177,0,0.22);
}
.lv-results-jtitle {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #fff;
}
.lv-results-jcount {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lv-results-card { margin-bottom: 10px; }
/* Cancha integrada en .cal-card-footer â†’ .cal-footer-venue */

.cal-venue-header {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 4px 6px;
    margin-top: 18px;
    border-bottom: 1px solid rgba(245,177,0,0.18);
    margin-bottom: 8px;
}
.cal-venue-header:first-child { margin-top: 0; }
.cal-venue-icon { font-size: 1.1rem; }
.cal-venue-name { font-size: 0.8rem; font-weight: 800; color: var(--accent); text-transform: none; letter-spacing: 0.02em; flex: 1; }
.cal-venue-count { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); }

/* â”€â”€ Match card (calendario + resultados): columna flex + body en grid 1fr | auto | 1fr â”€â”€ */
.cal-game-card {
    display: flex;
    flex-direction: column;
    min-height: 176px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
    margin-bottom: 10px;
    animation: cal-card-in-b-p2qtqpm9jq 0.3s ease both;
}
.cal-game-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 8px 24px rgba(245,177,0,0.12); }
.cal-card-upcoming { border-left: 3px solid var(--accent); }
.cal-card-done { border-left: 3px solid #6d28d9; opacity: 0.85; }
.cal-card-done:hover { opacity: 1; }
.cal-card-live { border-left: 3px solid #ef4444; box-shadow: 0 0 16px rgba(239,68,68,0.18); animation: cal-card-in-b-p2qtqpm9jq 0.3s ease both, live-pulse-b-p2qtqpm9jq 2s ease-in-out infinite; }
.cal-card-live .cal-card-time { color: #ef4444; }

/* Card entry animation */
@keyframes cal-card-in-b-p2qtqpm9jq { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes live-pulse-b-p2qtqpm9jq { 0%,100% { box-shadow: 0 0 16px rgba(239,68,68,0.18); } 50% { box-shadow: 0 0 28px rgba(239,68,68,0.36); } }

/* â”€â”€ Category theming for calendar cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cal-game-card[data-cat="femenil"] { border-left-color: var(--cat-femenil-strip, rgba(244,114,182,.55)); background: linear-gradient(148deg, var(--cat-femenil-bg, rgba(244,114,182,.07)) 0%, var(--bg-card) 50%); }
.cal-game-card[data-cat="femenil"]:hover { border-color: var(--cat-femenil-border, rgba(244,114,182,.32)); box-shadow: 0 8px 24px var(--cat-femenil-glow, rgba(244,114,182,.20)); }

.cal-game-card[data-cat="varonil"] { border-left-color: var(--cat-varonil-strip, rgba(96,165,250,.55)); background: linear-gradient(148deg, var(--cat-varonil-bg, rgba(96,165,250,.07)) 0%, var(--bg-card) 50%); }
.cal-game-card[data-cat="varonil"]:hover { border-color: var(--cat-varonil-border, rgba(96,165,250,.32)); box-shadow: 0 8px 24px var(--cat-varonil-glow, rgba(96,165,250,.20)); }

.cal-game-card[data-cat="mixto"] { border-left-color: var(--cat-mixto-strip, rgba(167,139,250,.50)); background: linear-gradient(148deg, var(--cat-mixto-bg, rgba(167,139,250,.07)) 0%, var(--bg-card) 50%); }
.cal-game-card[data-cat="juvenil"] { border-left-color: var(--cat-juvenil-strip, rgba(74,222,128,.45)); background: linear-gradient(148deg, var(--cat-juvenil-bg, rgba(74,222,128,.06)) 0%, var(--bg-card) 50%); }

/* â”€â”€ Calendar category badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cal-cat-badge {
    font-size: .52rem; font-weight: 900; letter-spacing: .65px;
    padding: 2px 7px; border-radius: 999px; flex-shrink: 0;
    white-space: nowrap;
}
.cal-cat-badge--femenil { color: var(--cat-femenil-color, #f472b6); background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.28); }
.cal-cat-badge--varonil { color: var(--cat-varonil-color, #60a5fa); background: rgba(96,165,250,.12);  border: 1px solid rgba(96,165,250,.28);  }
.cal-cat-badge--mixto   { color: var(--cat-mixto-color,   #a78bfa); background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.28); }
.cal-cat-badge--juvenil { color: var(--cat-juvenil-color, #4ade80); background: rgba(74,222,128,.10);  border: 1px solid rgba(74,222,128,.25);  }

/* Header: hora + badges (grid: evita que badges â€œempujenâ€ la hora en mÃ³vil) */
.cal-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.cal-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    justify-self: end;
    max-width: 100%;
}
.cal-card-time { font-size: 0.95rem; font-weight: 900; color: var(--accent); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; line-height: 1.2; min-width: 0; }
.cal-card-done .cal-card-time { color: var(--text-muted); }

.cal-badge { font-size: 0.6rem; font-weight: 800; letter-spacing: 1.5px; border-radius: 4px; padding: 2px 8px; }
.cal-badge-live { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.4); animation: badge-blink-b-p2qtqpm9jq 1.2s step-start infinite; }
.cal-badge-final { background: rgba(124,58,237,0.15); color: #a78bfa; border: 1px solid rgba(124,58,237,0.3); }
.cal-badge-pending { background: rgba(245,177,0,0.1); color: var(--accent); border: 1px solid rgba(245,177,0,0.25); }
.cal-badge-jornada { background: rgba(99,102,241,0.15); color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }
.cal-badge-hoy { background: rgba(245,177,0,0.2); color: #fbbf24; border: 1px solid rgba(245,177,0,0.45); }
.cal-badge-manana { background: rgba(167,139,250,0.18); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.35); }
.cal-badge-amistoso { background: rgba(34,197,94,0.12); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.cal-card-time--neutral { color: #cbd5e1 !important; }
.cal-card-time--countdown { color: #22d3ee !important; text-shadow: 0 0 12px rgba(34,211,238,0.35); }
.cal-card-time--live { color: #f87171 !important; text-shadow: 0 0 10px rgba(248,113,113,0.35); }

.lv-agenda-section {
    padding: 20px 16px 8px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(15,23,42,0.35) 0%, transparent 100%);
}
.lv-agenda-head { margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.lv-agenda-eyebrow { display: block; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.2em; color: #64748b; text-transform: uppercase; margin-bottom: 6px; }
.lv-agenda-title { margin: 0 0 8px; font-size: 1.25rem; font-weight: 900; color: #f1f5f9; }
.lv-agenda-lead { margin: 0; font-size: 0.82rem; color: #94a3b8; line-height: 1.45; }

/* Inline sections (resultados + tabla Ãºnica) â€” alineado con .lv-content */
.lv-inline-section {
    padding: 28px 20px 20px;
    border-bottom: 1px solid var(--border);
    max-width: 920px;
    margin: 0 auto;
}
.lv-inline-head { margin-bottom: 14px; }
.lv-inline-eyebrow { display: block; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.2em; color: #64748b; text-transform: uppercase; margin-bottom: 6px; }
.lv-inline-title { margin: 0 0 6px; font-size: 1.1rem; font-weight: 900; color: #f1f5f9; }
.lv-inline-lead { margin: 0; font-size: 0.8rem; color: #94a3b8; line-height: 1.45; }
.lv-inline-more { margin: 16px 0 0; text-align: center; }
.lv-inline-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.lv-inline-more-btn:hover { border-color: #f97316; background: rgba(249, 115, 22, 0.12); color: #fff; }

.lv-standings-primary { scroll-margin-top: calc(var(--nav-height, 56px) + 56px); }
.lv-standings-primary-wrap { margin-top: 8px; }

/* PestaÃ±a Posiciones: sin duplicar tabla; solo guÃ­a al bloque superior */
.lv-tab-standings-hint {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(51, 65, 85, 0.65);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}
.lv-tab-standings-hint-title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 900;
    color: #f1f5f9;
}
.lv-tab-standings-hint-text {
    margin: 0 0 18px;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
}
.lv-tab-standings-hint .lv-inline-more-btn { margin: 0 auto; }
@keyframes badge-blink-b-p2qtqpm9jq { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Body: equipo local | marcador | visitante â€” solo grid aquÃ­ (columnas laterales min-width:0 anti-overflow) */
.cal-card-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    column-gap: 10px;
    padding: 14px 16px;
    flex: 1 1 auto;
    min-height: 118px;
    box-sizing: border-box;
}
.cal-card-body > .cal-team--home,
.cal-card-body > .cal-team--away {
    min-width: 0;
}
.cal-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    text-align: center;
    align-self: stretch;
}
.cal-team--home { padding-inline-end: 2px; }
.cal-team--away { padding-inline-start: 2px; }
.cal-logo { width: 48px; height: 48px; object-fit: contain; transition: filter 0.2s; flex-shrink: 0; }
.cal-card-body .team-logo-initials-sm {
    width: 48px;
    height: 48px;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.cal-team-name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
}
.cal-team-name {
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    color: #9ca3af;
    line-height: 1.25;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.cal-team-winner .cal-team-name { color: var(--accent); font-weight: 900; }
.cal-team-winner .cal-logo { filter: drop-shadow(0 0 8px rgba(245,177,0,0.5)); }
.cal-team-loser { opacity: 0.72; }
.cal-team-loser .cal-team-name { color: #6b7280; font-weight: 600; }
.cal-team-loser .cal-logo,
.cal-team-loser .team-logo-initials-sm { filter: grayscale(0.35); opacity: 0.88; }

.cal-win-badge {
    flex-shrink: 0;
    font-size: 0.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #0a0a0f;
    background: linear-gradient(180deg, #ffd54a 0%, #f5b100 100%);
    padding: 3px 5px 2px;
    border-radius: 4px;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Columna central: marcador (flex interno; el body ya fija el eje con grid) */
.cal-card-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    justify-self: center;
    min-width: 0;
    padding: 0 4px;
}
.cal-scoreline {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
    white-space: nowrap;
}
.cal-scoreline .cal-score--home { text-align: right; }
.cal-scoreline .cal-score--away { text-align: left; }
.cal-score {
    font-size: clamp(1.45rem, 5vw, 2.05rem);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.cal-score-leading {
    font-size: clamp(1.55rem, 5vw, 2.25rem);
    color: #c4b5fd;
    text-shadow: 0 0 14px rgba(124, 58, 237, 0.4);
}
.cal-score-dim {
    font-size: clamp(1.2rem, 4vw, 1.75rem);
    font-weight: 800;
    color: #64748b;
}
.cal-score-win { color: var(--accent); }
.cal-score-sin-marcador { color: #64748b !important; font-size: clamp(1.1rem, 3.8vw, 1.55rem) !important; font-weight: 700 !important; }
.cal-score-sep { font-size: clamp(1rem, 3.2vw, 1.35rem); font-weight: 800; color: #64748b; line-height: 1; }
.cal-score-na { font-size: 1rem; font-weight: 800; color: var(--text-muted); }
.cal-vs { font-size: 0.95rem; font-weight: 900; color: #94a3b8; letter-spacing: 0.12em; }

/* Footer: cancha + diferencia + estado vivo */
.cal-card-footer {
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.22);
    padding: 8px 14px 10px;
}
.cal-footer-venue {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cal-card-footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 1.35rem;
    width: 100%;
    text-align: center;
}
.cal-footer-diff {
    font-size: 0.75rem;
    font-weight: 900;
    color: #86efac;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}
.cal-footer-diff--tie {
    color: #94a3b8;
    letter-spacing: 0.04em;
}
.cal-footer-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #fca5a5;
}
.cal-footer-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.85);
    animation: cal-live-dot-b-p2qtqpm9jq 1.2s ease-in-out infinite;
}
@keyframes cal-live-dot-b-p2qtqpm9jq {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.92); }
}

@media (min-width: 768px) {
    .cal-game-card { min-height: 188px; }
    .cal-card-body { padding: 16px 20px; column-gap: 14px; min-height: 124px; }
    .cal-logo { width: 54px; height: 54px; }
    .cal-card-body .team-logo-initials-sm { width: 54px; height: 54px; font-size: 0.88rem; }
    .cal-team-name { font-size: 0.82rem; }
    .cal-card-time { font-size: 1rem; }
    .cal-games-list { padding-inline: 20px; }
}

@media (min-width: 601px) and (max-width: 767px) {
    .cal-games-list { padding-inline: 16px; }
}

/* Initials Fallback */
.team-logo-initials, .team-logo-initials-sm, .team-logo-initials-lg {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #222, #111);
    color: var(--accent);
    font-weight: 900;
    border: 1px solid rgba(245,177,0,0.3);
    border-radius: 50%;
    text-transform: uppercase;
}
.team-logo-initials { width: 44px; height: 44px; font-size: 1.1rem; }
.team-logo-initials-sm { width: 30px; height: 30px; font-size: 0.75rem; }
.team-logo-initials-lg { width: 100%; height: 100%; font-size: 2.2rem; }

.clutch-teams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; padding: 10px 0; }
.clutch-team-card { position: relative; background: #121212; border: 1px solid #1e1e1e; border-radius: 12px; overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.clutch-team-card-clickable { cursor: pointer; }
.clutch-team-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(245,177,0,0.1); }
.card-bg-glow { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 0%, rgba(245,177,0,0.08) 0%, transparent 70%); pointer-events: none; }
.card-content { position: relative; padding: 30px 20px; text-align: center; z-index: 1; }
.card-header-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); opacity: 0.6; }
.clutch-team-logo-wrap { width: 100px; height: 100px; margin: 0 auto 20px; background: #fff; border-radius: 50%; padding: 15px; box-shadow: 0 8px 16px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; }
.clutch-team-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.clutch-team-name { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; text-transform: none; letter-spacing: 0.02em; }
.clutch-team-divider { width: 40px; height: 2px; background: rgba(245,177,0,0.3); margin: 0 auto 20px; }
.clutch-btn-primary { display: inline-block; background: var(--accent); color: #000; font-size: 0.75rem; font-weight: 800; padding: 10px 20px; border-radius: 6px; text-decoration: none; letter-spacing: 1px; transition: all 0.2s; }
.clutch-btn-primary:hover { background: #fff; transform: scale(1.05); }

.placeholder-section {
    background: #0d0d0d;
    border: 1px dashed #2a2a2a;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
    background-image: linear-gradient(rgba(245, 177, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 177, 0, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}
.placeholder-section h3 { color: #fff; margin-bottom: 20px; font-size: 1.8rem; font-weight: 900; }
.placeholder-icon { font-size: 4rem; display: block; margin-bottom: 20px; filter: grayscale(1); opacity: 0.3; }

/* â”€â”€ Playoffs (ComÃºn y ClasificaciÃ³n) â”€â”€ */
.poff-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.poff-format-badge { background: rgba(245,177,0,0.15); color: var(--accent); font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 4px; letter-spacing: 2px; border: 1px solid rgba(245,177,0,0.3); }
.poff-info { color: var(--text-muted); font-size: 0.8rem; }
.poff-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.poff-section-title { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; color: var(--text-muted); margin: 0 0 16px; }
.poff-clasif-list { display: flex; flex-direction: column; gap: 8px; }
.poff-clasif-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.poff-clasif-in { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.05); }
.poff-clasif-cut { border-color: rgba(245,177,0,0.3); background: rgba(245,177,0,0.05); }
.poff-pos { font-size: 0.75rem; font-weight: 800; color: var(--text-muted); width: 28px; flex-shrink: 0; }
.poff-eq-nombre { font-weight: 700; font-size: 0.9rem; flex: 1; }
.poff-pts { font-size: 0.75rem; color: var(--text-muted); }
.poff-pj { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }
.poff-pend { font-size: 0.68rem; font-weight: 800; color: #fcd34d; flex-shrink: 0; }
.poff-pend--muted { color: var(--text-muted); font-weight: 600; }
.poff-tag { font-size: 0.6rem; font-weight: 800; padding: 2px 8px; border-radius: 4px; letter-spacing: 1px; }
.poff-tag-in { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.poff-tag-cut { background: rgba(245,177,0,0.12); color: var(--accent); border: 1px solid rgba(245,177,0,0.3); }
.poff-tag-out { background: rgba(239,68,68,0.1); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }

/* â”€â”€ Playoff sub-tabs (ClasificaciÃ³n / Bracket) â”€â”€ */
.poff-subtab-bar {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}
.poff-subtab {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 0.18s, background 0.18s;
    position: relative;
}
.poff-subtab + .poff-subtab {
    border-left: 1px solid var(--border);
}
.poff-subtab.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.12); /* purple tint matching system */
}
.poff-subtab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
}
.poff-subtab:hover:not(.active) {
    color: #ccc;
    background: rgba(255,255,255,0.03);
}
/* Panel that replaces the old section title â€” no extra top margin needed */
.poff-tab-panel { margin-top: 0; }

/* â”€â”€ RediseÃ±o de Bracket (ESPN / NBA Style) â”€â”€ */
.poff-bracket-section {
    overflow: hidden;
    background: #080808;
    border: 1px solid #1a1a1a;
    padding: 20px 8px;   /* reduced top/bottom; horizontal scroll handles sides */
    position: relative;
}

/* Filtros multi-ronda (Cuartos / Semifinales / Final, etc.) */
.bracket-round-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
}
.bracket-round-filter-btn {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid rgba(245, 177, 0, 0.45);
    background: transparent;
    color: #c4b5fd;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.bracket-round-filter-btn:hover {
    border-color: rgba(167, 139, 250, 0.55);
    color: #e9d5ff;
}
.bracket-round-filter-btn--active {
    background: rgba(124, 58, 237, 0.35);
    border-color: rgba(167, 139, 250, 0.65);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(245, 177, 0, 0.15);
}
.bracket-round-filter-btn:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.7);
    outline-offset: 2px;
}

.bracket-container-scroll {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #111;
}
.bracket-grid {
    display: flex;
    gap: 0;
    min-width: max-content;
    align-items: stretch;
}
.bracket-column {
    display: flex;
    flex-direction: column;
    width: 280px;
    flex-shrink: 0;
}
.bracket-round-header {
    text-align: center;
    margin-bottom: 30px;
}
.round-name {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 3px;
    background: rgba(245, 177, 0, 0.05);
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(245, 177, 0, 0.2);
}

.bracket-matches {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 1;
    gap: 20px;
}

.bracket-matchup-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.bracket-match-card {
    width: 100%;
    background: #121212;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
.bracket-match-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 0 20px rgba(245, 177, 0, 0.1);
}

.bracket-matchup-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.has-label {
    padding-top: 20px;
    position: relative;
}

.match-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #1a1a1a;
    color: var(--accent);
    font-size: 0.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    padding: 0 10px;
    letter-spacing: 1px;
    border-bottom: 1px solid #222;
}

.b-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    height: 48px;
    background: #111;
}
.b-team-winner {
    background: rgba(124, 58, 237, 0.05);
}
.b-team-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}
.b-seed {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    background: #1a1a1a;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.b-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b-team-winner .b-name {
    color: #fff;
    font-weight: 900;
}
.b-placeholder {
    color: #444;
    font-style: italic;
}
.b-score {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-muted);
    width: 30px;
    text-align: right;
}
.b-team-winner .b-score {
    color: var(--accent);
}

.b-divider {
    height: 1px;
    background: #222;
}

/* Conectores */
.bracket-connector {
    width: 40px;
    display: flex;
    align-items: center;
    position: relative;
}
.connector-line {
    height: 2px;
    background: #333;
    width: 100%;
    position: relative;
}

/* LÃ³gica de Brazos del Conector */
.has-next::after {
    content: "";
    position: absolute;
    right: -20px;
    width: 2px;
    background: #333;
    z-index: 1;
}

/* Si es el de arriba (pos-odd), el brazo baja */
.has-next.pos-odd::after {
    top: 50%;
    height: calc(50% + 20px); /* Ajuste dinÃ¡mico basado en gap */
}
/* Si es el de abajo (pos-even), el brazo sube */
.has-next.pos-even::after {
    bottom: 50%;
    height: calc(50% + 20px);
}

/* La lÃ­nea horizontal que sale a la derecha */
.has-next .connector-line::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 2px;
    background: #333;
}

/* Especial para la Final: ConexiÃ³n central */
.bracket-column:nth-last-child(2) .has-next.pos-odd::after,
.bracket-column:nth-last-child(2) .has-next.pos-even::after {
    height: 50%; /* Se encuentran a la mitad para la final */
}

/* Liga: viewport bajo #site-nav + scroll interno (mÃ³vil / drawer); las tabs dejan de ser sticky y no cubren las cards */
@media (max-width: 900px) {
    .lv-page {
        display: flex;
        flex-direction: column;
        /* Restar barra superior y la bottom nav fija (.site-bottomnav) para que el scroll no quede tapado */
        height: calc(100vh - var(--nav-height, 56px) - env(safe-area-inset-top, 0px) - var(--site-bottomnav-total, 0px));
        height: calc(100dvh - var(--nav-height, 56px) - env(safe-area-inset-top, 0px) - var(--site-bottomnav-total, 0px));
        max-height: calc(100dvh - var(--nav-height, 56px) - env(safe-area-inset-top, 0px) - var(--site-bottomnav-total, 0px));
        overflow: hidden;
        box-sizing: border-box;
    }

    .lv-page > .esn-league-banner,
    .lv-page > .category-selector-container {
        flex-shrink: 0;
    }

    .lv-page-dock {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
    }

    .clutch-tabs-container {
        position: relative;
        top: auto;
        flex: 0 0 auto;
    }

    .lv-page-dock-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        /* Respiro al final del scroll (la altura de .lv-page ya descuenta la bottom nav) */
        padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
    }

    .lv-page .lv-content {
        max-width: none;
        margin: 0;
        min-width: 0;
        padding: 10px 12px 14px;
    }

    .lv-page-dock-body .lv-cal-shell {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-inline: 0;
    }

    .cal-date-strip-wrap {
        scroll-margin-top: 6px;
    }

    .cal-games-list {
        padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
    }

    .lv-standings-primary {
        scroll-margin-top: 16px;
    }
}

@media (max-width: 600px) {
    .clutch-hero-title { font-size: 1.7rem; }
    .clutch-hero-logo img { width: 72px; height: 72px; }

    /* Match cards: stack vertically */
    .match-card {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 16px;
    }
    .match-card-center { border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 4px; }
    .match-card-team-right { flex-direction: row; text-align: left; }

    /* Calendar: tarjetas compactas; header en columna (hora arriba, chips abajo) */
    .cal-game-card { min-height: 168px; }
    .cal-card-body { padding: 12px 10px; column-gap: 8px; min-height: 112px; }
    .cal-logo { width: 40px; height: 40px; }
    .cal-card-body .team-logo-initials-sm { width: 40px; height: 40px; font-size: 0.72rem; }
    .cal-team-name { font-size: 0.72rem; -webkit-line-clamp: 2; }
    .cal-card-time { font-size: 0.85rem; }
    .cal-card-header { padding: 8px 12px; grid-template-columns: 1fr; row-gap: 8px; align-items: stretch; }
    .cal-badges { justify-self: start; justify-content: flex-start; }
    .cal-card-footer { padding: 6px 12px 8px; }
    .cal-footer-venue { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

    /* Tabs: scrollable strip */
    .clutch-tabs { justify-content: flex-start; padding: 0 4px; }
    .clutch-tab { padding: 12px 12px; font-size: 0.72rem; }

    /* Category chips compact */
    .category-chip { padding: 6px 12px; font-size: 0.7rem; }

    /* Hero padding */
    .clutch-hero { padding: 24px 14px; }
    .lv-content { padding: 14px 10px; }

    /* Standings: scroll horizontal (misma idea que bracket de playoffs) */
    .standings-wrap { -webkit-overflow-scrolling: touch; }
    .standings-table th,
    .standings-table td { padding: 10px 6px; font-size: 0.8rem; }
    .standings-table td.col-team,
    .standings-table th.col-team { padding-left: 8px; min-width: 0; }

    /* PF/PC/DIF se muestran u ocultan desde el markup segÃºn haya datos */

    /* Team name truncation */
    .team-logo-sm { width: 22px; height: 22px; }
    .standings-team { gap: 6px; min-width: 0; }
    .standings-table td.col-team { max-width: 42vw; }
    .team-link { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; display: block; }

    /* Teams grid: 2 cols on mobile */
    .clutch-teams-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
    .card-content { padding: 20px 14px; }
    .clutch-team-logo-wrap { width: 72px; height: 72px; padding: 10px; }
    .clutch-team-name { font-size: 0.95rem; margin-bottom: 14px; }
}

@media (max-width: 400px) {
    .standings-table th,
    .standings-table td { padding: 8px 4px; font-size: 0.73rem; }
    .standings-table td.col-team { max-width: 36vw; }
    .clutch-hero-title { font-size: 1.4rem; }
    .cal-game-card { min-height: 164px; }
    .cal-card-body { padding: 10px 8px; column-gap: 6px; min-height: 108px; }
    .cal-logo { width: 36px; height: 36px; }
    .cal-card-body .team-logo-initials-sm { width: 36px; height: 36px; font-size: 0.68rem; }
}

/* â•â• HERO COMPACTO EN MÃ“VIL â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
    .esn-league-banner { padding: 10px 14px 0; }
    .esn-banner-inner { padding-bottom: 12px; gap: 12px; }
    .esn-banner-logo { width: 44px; height: 44px; border-radius: 9px; padding: 5px; }
    .esn-banner-title { font-size: 1.1rem; margin-bottom: 5px; }
    .esn-banner-label { margin-bottom: 2px; font-size: 0.5rem; }
    .cat-banner-badge { font-size: 0.48rem; padding: 2px 5px; border-radius: 999px; }
    .esn-live-pill { font-size: 0.6rem; padding: 2px 7px; }
    /* Tabs mÃ¡s tÃ¡ctiles (Ã¡rea mÃ­n. ~44px, indicador activo mÃ¡s grueso) */
    .lv-tabs-mobile-primary .clutch-tab {
        min-height: 44px;
        padding: 14px 10px;
        font-size: 0.78rem;
        border-bottom-width: 4px;
    }
    .lv-tabs-mobile-primary .clutch-tab.active {
        color: #fff;
        border-bottom-color: var(--accent);
    }
    .lv-tab-more-btn { padding: 14px 14px !important; font-size: 0.78rem !important; min-height: 44px; }
}

/* â•â• INLINE STANDINGS â€” mobile compact view + desktop full view â•â•â•â•â•â•â•â•â•â• */
/* (Modal styles live in ModalPositions.razor.css â€” required for Blazor scoping) */

/* On desktop the inline table is shown normally; modal is hidden (see ModalPositions.razor.css) */
/* On mobile the inline table shows the ultra-compact view; modal opens via button */

/* CTA mÃ³vil â†’ pestaÃ±a Posiciones (modal tabla); en escritorio se oculta */
.lv-portada-classif-cta {
    display: none;
}
@media (max-width: 900px) {
    .lv-portada-classif-cta {
        display: block;
        margin-top: 8px;
    }
    .lv-portada-classif-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 14px;
        border-radius: 12px;
        border: 1px solid rgba(245, 177, 0, 0.35);
        background: rgba(245, 177, 0, 0.08);
        color: var(--accent, #f5b100);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        cursor: pointer;
        transition: background 0.15s, border-color 0.15s;
    }
    .lv-portada-classif-btn:active {
        transform: scale(0.99);
    }
}

/* â•â• PREVIEW TOP 3 EN PORTADA (solo escritorio; mÃ³vil usa CTA compacta) â•â•â• */
.lv-top3-preview {
    display: none;
    margin-top: 14px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(16,16,28,0.96) 0%, rgba(9,9,17,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}
@media (min-width: 901px) {
    .lv-top3-preview {
        display: block;
    }
}
.lv-top3-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lv-top3-eyebrow {
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #64748b;
}
.lv-top3-rows { padding: 4px 0; }
.lv-top3-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: left;
    color: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.lv-top3-row:last-child { border-bottom: none; }
.lv-top3-row:hover { background: rgba(255,255,255,0.03); }
.lv-top3-rank {
    font-size: 0.9rem;
    font-weight: 900;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
}
.lv-top3-rank--1 { color: #fbbf24; }
.lv-top3-rank--2 { color: #cbd5e1; }
.lv-top3-rank--3 { color: #b45309; }
.lv-top3-team-info {
    flex: 1; min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lv-top3-logo { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.lv-top3-initials {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #222, #111);
    border: 1px solid rgba(245,177,0,0.28);
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lv-top3-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lv-top3-stat { text-align: right; flex-shrink: 0; }
.lv-top3-pts { font-size: 0.88rem; font-weight: 900; color: #fff; display: block; }
.lv-top3-pts-label { font-size: 0.52rem; font-weight: 700; color: #64748b; letter-spacing: 0.07em; text-transform: uppercase; display: block; }
.lv-top3-footer { padding: 10px 16px 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.lv-top3-ver-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(245,177,0,0.1);
    border: 1px solid rgba(245,177,0,0.28);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lv-top3-ver-btn:hover { background: rgba(245,177,0,0.18); border-color: rgba(245,177,0,0.5); color: #fff; }

/* â•â• POSICIONES TAB â€” "Ver tabla completa" button (mobile only) â•â•â•â•â•â•â•â•â•â•â• */
.lv-standings-openbtn-wrap {
    display: none;
}

@media (max-width: 900px) {
    .lv-standings-openbtn-wrap {
        display: block;
        padding: 12px 0 4px;
    }

    .lv-standings-openbtn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(245, 177, 0, 0.07);
        border: 1px solid rgba(245, 177, 0, 0.28);
        color: var(--accent, #f5b100);
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        cursor: pointer;
        transition: background 0.15s, border-color 0.15s, transform 0.1s;
    }

    .lv-standings-openbtn:hover {
        background: rgba(245, 177, 0, 0.14);
        border-color: rgba(245, 177, 0, 0.45);
        color: #fff;
    }

    .lv-standings-openbtn:active {
        transform: scale(0.97);
        background: rgba(245, 177, 0, 0.18);
    }

    .lv-standings-openbtn svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        opacity: 0.8;
    }
}

/* â”€â”€ Contexto compacto + equipos en sheet â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lv-context-strip--compact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 14px;
}
.lv-context-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.lv-context-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}
.lv-context-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    color: #aeb8d6;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.lv-context-chip--accent {
    background: rgba(99, 102, 241, 0.18);
    color: #c7d2fe;
    border-color: rgba(129, 140, 248, 0.35);
}
.lv-context-chip--live {
    background: rgba(239, 68, 68, 0.15);
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.4);
}
.lv-context-teams-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    background: rgba(99, 102, 241, 0.14);
    color: #e0e7ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.lv-context-teams-btn:hover {
    background: rgba(99, 102, 241, 0.24);
    border-color: rgba(167, 139, 250, 0.55);
    color: #fff;
}

.lv-teams-overlay {
    position: fixed;
    inset: 0;
    z-index: 380;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.lv-teams-sheet {
    background: linear-gradient(180deg, #16161f 0%, #0a0a10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    max-height: min(82dvh, 560px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}
.lv-teams-sheet__handle {
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px auto 0;
}
.lv-teams-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px 10px;
}
.lv-teams-sheet__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #f1f5f9;
}
.lv-teams-sheet__close {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}
.lv-teams-search {
    display: block;
    padding: 0 16px 10px;
}
.lv-teams-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.lv-teams-search__input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.75);
    color: #f1f5f9;
    font-size: 0.9rem;
}
.lv-teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding: 4px 16px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.lv-teams-grid__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.55);
    text-decoration: none;
    color: #e2e8f0;
    transition: border-color 0.15s, background 0.15s;
}
.lv-teams-grid__item:hover {
    border-color: rgba(129, 140, 248, 0.45);
    background: rgba(99, 102, 241, 0.12);
}
.lv-teams-grid__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #0f172a;
}
.lv-teams-grid__mono {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.25);
    color: #e0e7ff;
    font-weight: 900;
    font-size: 0.85rem;
}
.lv-teams-grid__name {
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lv-teams-empty {
    padding: 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}
@media (min-width: 901px) {
    .lv-teams-overlay {
        justify-content: center;
        align-items: center;
        padding: 24px;
    }
    .lv-teams-sheet {
        width: min(520px, 100%);
        max-height: min(70dvh, 520px);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .lv-teams-sheet__handle { display: none; }
}

/* â”€â”€ Tabs: MÃ¡s escritorio (dropdown) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lv-tabs-more-wrap--desktop {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    flex-shrink: 0;
}
.lv-tabs-more-backdrop--desktop {
    position: fixed;
    inset: 0;
    z-index: 55;
    border: none;
    background: transparent;
    cursor: default;
}
.lv-tabs-more-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    z-index: 70;
    min-width: 168px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(22, 22, 34, 0.98) 0%, rgba(12, 12, 20, 0.98) 100%);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.lv-tabs-more-dropdown .lv-tabs-more-item {
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.85rem;
}
.lv-league-more-list {
    padding: 4px 8px 12px;
    overflow-y: auto;
    max-height: min(50dvh, 320px);
}
@media (min-width: 901px) {
    .lv-league-more-overlay {
        display: none !important;
    }
}

/* â”€â”€ Resultados: toolbar + filtros colapsados â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lv-results-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lv-results-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lv-results-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #f8fafc;
}
.lv-results-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.lv-results-jornada-select {
    flex: 0 1 auto;
    min-width: 0;
}
.lv-results-select {
    appearance: none;
    padding: 9px 32px 9px 14px;
    border-radius: 12px;
    border: 1px solid rgba(129, 140, 248, 0.4);
    background: rgba(15, 23, 42, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a5b4fc' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: #e0e7ff;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}
.lv-results-jchips {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
}
@media (min-width: 768px) {
    .lv-results-jchips {
        display: flex;
    }
}
.lv-results-jchip {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}
.lv-results-jchip.is-active {
    border-color: rgba(167, 139, 250, 0.55);
    background: rgba(124, 58, 237, 0.25);
    color: #fff;
}
.lv-results-filters-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(30, 41, 59, 0.45);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}
.lv-results-filters-btn.is-open {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(99, 102, 241, 0.18);
    color: #fff;
}
.lv-results-filters-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent, #f5b100);
    box-shadow: 0 0 8px rgba(245, 177, 0, 0.6);
}
.lv-rf--panel {
    margin-top: 0;
}
.lv-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.lv-content {
    padding-top: 28px;
    padding-bottom: 36px;
}
/* /Pages/Noticias.razor.rz.scp.css */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Noticias â€” Dark NBA / ESPN sports feed style
   All selectors scoped to .nws-* to avoid global collisions
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nws-page {
    min-height: 100vh;
    background: #0a0a0f;
    color: #f0f0f8;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-bottom: 48px;
}

/* â”€â”€ Global loader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nws-global-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 14px;
    color: #5a5a7a;
    font-size: .88rem;
}
.nws-spinner {
    width: 36px; height: 36px;
    border: 3px solid #1e1e2e;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: nws-spin-b-gpzn93w6ec .7s linear infinite;
}
@keyframes nws-spin-b-gpzn93w6ec { to { transform: rotate(360deg); } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   A Â· HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nws-hero {
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
@media (min-width: 768px) { .nws-hero { min-height: 440px; } }

.nws-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,15,.1) 0%,
        rgba(10,10,15,.65) 60%,
        rgba(10,10,15,.97) 100%
    );
}
.nws-hero-content {
    position: relative;
    padding: 28px 20px 24px;
    max-width: 700px;
}
.nws-hero-title {
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin: 8px 0 10px;
    letter-spacing: -.02em;
}
.nws-hero-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    margin: 0 0 10px;
    line-height: 1.5;
}
.nws-hero-meta {
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    display: flex;
    gap: 6px;
    align-items: center;
}
.nws-dot { opacity: .4; }

/* Tags */
.nws-hero-tag, .nws-news-tag {
    display: inline-block;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.nws-tag--destacado  { background: #7c3aed; color: #fff; }
.nws-tag--resultado  { background: #16a34a; color: #fff; }
.nws-tag--playoffs   { background: #f97316; color: #fff; }
.nws-tag--performance{ background: #0ea5e9; color: #fff; }
.nws-tag--noticia    { background: #374151; color: #d1d5db; }
.nws-tag--academia   { background: #1d4ed8; color: #fff; }
.nws-tag--Ãºltima\ hora { background: #dc2626; color: #fff; }

/* â”€â”€ Body wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nws-body { padding: 0 12px; max-width: 1100px; margin: 0 auto; }

/* â”€â”€ Section shared â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nws-section { margin-top: 28px; }
.nws-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.nws-section-title {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .15em;
    color: #8b5cf6;
    flex: 1;
}
.nws-section-link {
    font-size: .7rem;
    color: #5a5a7a;
    text-decoration: none;
    transition: color .18s;
}
.nws-section-link:hover { color: #a78bfa; }
.nws-section-count {
    background: #dc2626;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   B Â· EN VIVO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nws-section--live .nws-section-title { color: #ef4444; }
.nws-live-dot {
    width: 9px; height: 9px;
    background: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
    animation: nws-pulse-b-gpzn93w6ec 1.2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(239,68,68,.6);
}
@keyframes nws-pulse-b-gpzn93w6ec {
    0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
    70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.nws-live-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.nws-live-scroll::-webkit-scrollbar { display: none; }

.nws-live-card {
    flex: 0 0 260px;
    background: linear-gradient(135deg, #1a0a0a, #111118);
    border: 1px solid rgba(239,68,68,.35);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nws-live-liga { font-size: .62rem; color: #ef4444; font-weight: 700; letter-spacing: .08em; }

.nws-live-matchup {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nws-live-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nws-live-team--visit { }
.nws-team-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.nws-team-init {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 900; color: #fff;
}
.nws-team-name { font-size: .7rem; font-weight: 700; color: #e0e0f0; text-align: center; }

.nws-live-score {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.nws-score-val { font-size: 1.5rem; font-weight: 900; color: #fff; }
.nws-score-sep { font-size: 1rem; color: #3a3a58; font-weight: 700; }

.nws-live-cta {
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    color: #ef4444;
    text-decoration: none;
    border: 1px solid rgba(239,68,68,.3);
    border-radius: 6px;
    padding: 6px;
    transition: background .18s;
}
.nws-live-cta:hover { background: rgba(239,68,68,.1); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   C Â· RESULTADOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nws-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (min-width: 640px)  { .nws-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .nws-results-grid { grid-template-columns: repeat(3, 1fr); } }

.nws-result-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: border-color .18s, transform .18s;
}
.nws-result-card:hover { border-color: #2e2e48; transform: translateY(-1px); }
.nws-result-liga { font-size: .58rem; color: #5a5a7a; font-weight: 700; margin-bottom: 8px; letter-spacing: .06em; }

.nws-result-teams { display: flex; flex-direction: column; gap: 6px; }
.nws-result-side {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: .65;
}
.nws-result-side.nws-winner { opacity: 1; }
.nws-result-side--visit { }

.nws-result-logo { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; }
.nws-result-init {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #1e1e2e;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 800; color: #8b8ba7;
    flex-shrink: 0;
}
.nws-result-name { font-size: .75rem; font-weight: 700; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nws-result-score { font-size: .85rem; font-weight: 900; color: #5a5a7a; flex-shrink: 0; }
.nws-result-score.nws-score-win { color: #86efac; }
.nws-result-date { font-size: .6rem; color: #3a3a58; margin-top: 8px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   D Â· PRÃ“XIMOS PARTIDOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nws-upcoming-list { display: flex; flex-direction: column; gap: 6px; }
.nws-upcoming-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 10px;
    padding: 11px 14px;
    transition: border-color .18s;
}
.nws-upcoming-row:hover { border-color: #2e2e48; }
.nws-upcoming-row--soon { border-left: 3px solid #f97316; }
.nws-upcoming-row--hot  { border-left: 3px solid #ef4444; background: rgba(239,68,68,.04); }

.nws-upcoming-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 32px;
    flex-shrink: 0;
}
.nws-upcoming-day { font-size: 1rem; font-weight: 900; color: #e0e0f0; line-height: 1; }
.nws-upcoming-mon { font-size: .55rem; font-weight: 700; color: #5a5a7a; letter-spacing: .06em; }

.nws-upcoming-matchup { flex: 1; min-width: 0; }
.nws-upcoming-liga { font-size: .58rem; color: #5a5a7a; font-weight: 700; display: block; margin-bottom: 2px; }
.nws-upcoming-vs { font-size: .82rem; font-weight: 700; color: #e0e0f0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.nws-vs-sep { color: #3a3a58; font-weight: 400; margin: 0 4px; font-size: .72rem; }

.nws-upcoming-time { font-size: .7rem; color: #5a5a7a; flex-shrink: 0; text-align: right; }
.nws-por-iniciar {
    background: rgba(239,68,68,.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,.3);
    border-radius: 20px;
    font-size: .58rem;
    font-weight: 800;
    padding: 2px 8px;
    letter-spacing: .05em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   E Â· TOP JUGADORES / MVP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nws-players-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.nws-players-scroll::-webkit-scrollbar { display: none; }

.nws-player-card {
    flex: 0 0 140px;
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: border-color .18s;
}
.nws-player-card:hover { border-color: #2e2e48; }
.nws-player-card--mvp {
    border-color: rgba(245,177,0,.4);
    background: linear-gradient(135deg, rgba(245,177,0,.07), #111118);
}
.nws-mvp-crown {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5b100;
    color: #000;
    font-size: .55rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .06em;
}
.nws-player-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin-top: 6px;
}
.nws-player-photo { width: 100%; height: 100%; object-fit: cover; }
.nws-player-init  { font-size: 1.2rem; font-weight: 900; color: #fff; }

.nws-player-info { text-align: center; }
.nws-player-name { font-size: .78rem; font-weight: 800; color: #e0e0f0; }
.nws-player-team { font-size: .62rem; color: #5a5a7a; margin-top: 1px; }

.nws-player-stats {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.nws-pstat { display: flex; flex-direction: column; align-items: center; }
.nws-pstat-val { font-size: .9rem; font-weight: 900; color: #f97316; }
.nws-pstat-lbl  { font-size: .52rem; color: #5a5a7a; font-weight: 700; letter-spacing: .05em; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   F Â· NOTICIAS GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nws-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 540px) { .nws-news-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .nws-news-grid { grid-template-columns: 1fr 1fr 1fr; } }

.nws-news-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .18s, transform .18s;
    cursor: default;
}
.nws-news-card:hover { border-color: #2e2e48; transform: translateY(-2px); }

.nws-news-img-wrap { position: relative; }
.nws-news-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
}
.nws-news-tag {
    position: absolute;
    top: 10px;
    left: 10px;
}

.nws-news-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.nws-news-title {
    font-size: .88rem;
    font-weight: 800;
    color: #e0e0f0;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nws-news-resumen {
    font-size: .75rem;
    color: #5a5a7a;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nws-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .62rem;
    color: #3a3a58;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #1a1a2a;
}
.nws-news-liga  { color: #5a5a7a; font-weight: 600; }
.nws-news-date  { }
/* /Pages/Rankings.razor.rz.scp.css */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Rankings â€” NBA App / FIFA dark style
   All selectors scoped to .rnk-* to avoid collisions
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-page {
    min-height: 100vh;
    color: #f4f4fb;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    padding-bottom: calc(60px + var(--site-bottomnav-total, 0px));
    background:
        radial-gradient(ellipse 130% 90% at 12% -18%, rgba(124, 58, 237, .28), transparent 52%),
        radial-gradient(ellipse 90% 70% at 92% 8%, rgba(59, 130, 246, .16), transparent 46%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(236, 72, 153, .06), transparent 42%),
        linear-gradient(185deg, #0c0a12 0%, #06060c 38%, #070710 100%);
}

/* Alineado con LeagueView: navegaciÃ³n bajo #site-nav sticky */
.rnk-center {
    --rnk-sticky-top: calc(var(--nav-height, 56px) + env(safe-area-inset-top, 0px));
    --rnk-main-tab-row-h: 56px;
}

.rnk-sticky-main {
    position: sticky;
    top: var(--rnk-sticky-top);
    z-index: 45;
    background: linear-gradient(180deg, rgba(12, 10, 22, .98) 0%, rgba(8, 8, 14, .96) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px) saturate(1.05);
    -webkit-backdrop-filter: blur(8px) saturate(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

@media (max-width: 768px) {
    .rnk-sticky-main {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.rnk-hub-sticky {
    position: sticky;
    top: calc(var(--rnk-sticky-top) + var(--rnk-main-tab-row-h));
    z-index: 40;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid #1a1a2e;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
    .rnk-hub-sticky {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.rnk-hub-sticky .rnk-ctx-bar {
    border-bottom: none;
}

/* â”€â”€ Hero deportivo (simple + impacto) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-hero-premium {
    position: relative;
    padding: clamp(28px, 6vw, 52px) 18px 32px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.rnk-hero-premium__glow {
    position: absolute;
    inset: -40% -20% auto -30%;
    height: 120%;
    background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(167, 139, 250, .35), transparent 70%);
    pointer-events: none;
    opacity: .85;
}
.rnk-hero-premium__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
    pointer-events: none;
    opacity: .45;
}
.rnk-hero-premium__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.rnk-hero-premium__kicker {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #c4b5fd;
    margin: 0 0 12px;
    text-shadow: 0 0 28px rgba(139, 92, 246, .5);
}
.rnk-hero-premium__title {
    font-size: clamp(2rem, 6.5vw, 3.15rem);
    font-weight: 950;
    letter-spacing: -.035em;
    line-height: 1.05;
    margin: 0 0 14px;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .45), 0 0 60px rgba(124, 58, 237, .25);
}
.rnk-hero-premium__lead {
    font-size: clamp(.95rem, 2.4vw, 1.08rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, .58);
    margin: 0 auto 22px;
    max-width: 34em;
    font-weight: 500;
}
.rnk-hero-premium__stat {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(167, 139, 250, .35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.rnk-hero-premium__stat-num {
    font-size: 1.65rem;
    font-weight: 950;
    color: #e9d5ff;
    line-height: 1;
}
.rnk-hero-premium__stat-txt {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
}

/* â”€â”€ Chips (navegaciÃ³n principal / liga) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-chip-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    min-height: var(--rnk-main-tab-row-h);
}
.rnk-chip-rail::-webkit-scrollbar { display: none; }
.rnk-chip-rail--main {
    padding-left: max(14px, env(safe-area-inset-left, 0px));
    padding-right: max(14px, env(safe-area-inset-right, 0px));
}
.rnk-chip-rail--league {
    border-top: 1px solid rgba(255, 255, 255, .05);
    background: rgba(0, 0, 0, .15);
}
.rnk-chip {
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    color: #9ca3af;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
    white-space: nowrap;
}
.rnk-chip:hover {
    color: #e5e7eb;
    border-color: rgba(167, 139, 250, .35);
    background: rgba(255, 255, 255, .07);
}
.rnk-chip.active {
    color: #fff;
    border-color: rgba(196, 181, 253, .55);
    background: linear-gradient(145deg, rgba(124, 58, 237, .45), rgba(79, 70, 229, .28));
    box-shadow:
        0 6px 28px rgba(124, 58, 237, .32),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}
.rnk-chip--compact {
    padding: 8px 16px;
    font-size: .72rem;
    letter-spacing: .06em;
}

/* â”€â”€ Cinta EN VIVO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-live-pulse-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(239, 68, 68, .18), rgba(124, 58, 237, .12));
    border: 1px solid rgba(248, 113, 113, .35);
    box-shadow: 0 8px 28px rgba(239, 68, 68, .12);
    animation: rnk-live-banner-pulse-b-xcjwzfixkq 2.8s ease-in-out infinite;
}
@keyframes rnk-live-banner-pulse-b-xcjwzfixkq {
    0%, 100% { box-shadow: 0 8px 28px rgba(239, 68, 68, .12); }
    50% { box-shadow: 0 8px 36px rgba(239, 68, 68, .22); }
}
.rnk-lpb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f87171;
    box-shadow: 0 0 14px #ef4444;
    flex-shrink: 0;
    animation: rnk-live-dot-b-xcjwzfixkq 1.2s ease-in-out infinite;
}
@keyframes rnk-live-dot-b-xcjwzfixkq {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .65; transform: scale(1.15); }
}
.rnk-lpb-text {
    font-size: .84rem;
    font-weight: 700;
    color: #fecaca;
    line-height: 1.35;
}

/* â”€â”€ Showcase ligas (cards grandes estilo streaming) â”€â”€â”€â”€â”€â”€â”€ */
.rnk-liga-showcase {
    max-width: 920px;
    margin: 0 auto;
}
@media (min-width: 1100px) {
    .rnk-liga-showcase { max-width: 880px; }
}

/* RaÃ­z interna de <Virtualize>: espaciado entre tarjetas sin repintar todo el listado */
.rnk-liga-showcase__virt > div {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.rnk-league-hero-card {
    --rnk-lhc-hue: 265;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255, 255, 255, .04) inset,
        0 1px 0 rgba(255, 255, 255, .08) inset;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.rnk-league-hero-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 181, 253, .4);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, .6),
        0 0 48px hsla(var(--rnk-lhc-hue), 70%, 50%, .18),
        0 0 0 1px rgba(255, 255, 255, .06) inset;
}
.rnk-lhc-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, hsla(var(--rnk-lhc-hue), 55%, 16%, .95) 0%, rgba(10, 10, 18, .92) 48%, rgba(6, 6, 12, .98) 100%),
        radial-gradient(ellipse 80% 70% at 90% 20%, hsla(var(--rnk-lhc-hue), 65%, 42%, .2), transparent 55%);
    pointer-events: none;
}
.rnk-lhc-logo-bg {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(42%, 220px);
    opacity: .14;
    pointer-events: none;
}
.rnk-lhc-logo-watermark {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(.2) brightness(1.1);
}
.rnk-lhc-body {
    position: relative;
    padding: 26px 22px 22px;
    z-index: 1;
}
@media (min-width: 640px) {
    .rnk-lhc-body { padding: 32px 32px 28px; }
}
.rnk-lhc-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.rnk-lhc-eyebrow {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}
.rnk-lhc-tag {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
    padding: 5px 11px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(0, 0, 0, .25);
    color: #d1d5db;
}
.rnk-lhc-tag--live {
    color: #fecaca;
    border-color: rgba(248, 113, 113, .5);
    background: rgba(239, 68, 68, .2);
    box-shadow: 0 0 20px rgba(239, 68, 68, .2);
}
.rnk-lhc-tag--soon {
    color: #fde68a;
    border-color: rgba(251, 191, 36, .4);
    background: rgba(245, 158, 11, .12);
}
.rnk-lhc-tag--past {
    color: #a5b4fc;
    border-color: rgba(129, 140, 248, .35);
    background: rgba(99, 102, 241, .12);
}
.rnk-lhc-title {
    font-size: clamp(1.35rem, 4.2vw, 1.85rem);
    font-weight: 950;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
    max-width: 20em;
}
.rnk-lhc-story {
    font-size: .98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
    margin: 0 0 18px;
    max-width: 36em;
    font-weight: 500;
}
.rnk-lhc-scores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.rnk-lhc-scores--skel {
    gap: 8px;
}
.rnk-mini-score {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .08);
}
.rnk-mini-score--live {
    border-color: rgba(248, 113, 113, .4);
    box-shadow: 0 0 24px rgba(239, 68, 68, .12);
}
.rnk-ms-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 800;
    color: #e5e7eb;
}
.rnk-ms-name {
    max-width: 9.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, .88);
}
.rnk-ms-num {
    font-variant-numeric: tabular-nums;
    font-size: 1.05rem;
    color: #fff;
}
.rnk-ms-sep {
    color: #6b7280;
    font-weight: 700;
}
.rnk-ms-live {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
    color: #fecaca;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(239, 68, 68, .25);
}
.rnk-ms-when {
    font-size: .68rem;
    font-weight: 700;
    color: #9ca3af;
    margin-left: auto;
}
.rnk-lhc-foot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
}
@media (min-width: 720px) {
    .rnk-lhc-foot {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.rnk-lhc-narrative {
    font-size: .8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .52);
    max-width: 36em;
}
.rnk-lhc-narrative strong {
    color: #e9d5ff;
    font-weight: 800;
}
.rnk-lhc-dot {
    margin: 0 6px;
    opacity: .45;
}
.rnk-lhc-invicto strong {
    color: #86efac;
}
.rnk-lhc-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #6366f1 100%);
    box-shadow:
        0 12px 36px rgba(124, 58, 237, .45),
        inset 0 1px 0 rgba(255, 255, 255, .2);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.rnk-lhc-cta:hover {
    transform: scale(1.02);
    filter: brightness(1.06);
    box-shadow: 0 16px 44px rgba(124, 58, 237, .5);
}
.rnk-lhc-cta-arrow {
    font-size: 1.1rem;
    opacity: .9;
}
.rnk-skeleton-score {
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,.04) 10%, rgba(255,255,255,.09) 45%, rgba(255,255,255,.04) 90%);
    background-size: 200% 100%;
    animation: rnk-skeleton-b-xcjwzfixkq 1.2s ease-in-out infinite;
}
.rnk-skeleton-score--short { max-width: 70%; height: 40px; }

.rnk-center-body {
    max-width: 1120px;
}

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0f2e 50%, #0a0a14 100%);
    padding: 32px 20px 28px;
    text-align: center;
    overflow: hidden;
}
.rnk-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(139,92,246,.18), transparent);
    pointer-events: none;
}
.rnk-hero-inner { position: relative; }
.rnk-hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .15em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.rnk-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 6px;
    text-shadow: 0 2px 20px rgba(139,92,246,.4);
}
.rnk-hero-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* â”€â”€ Liga selector bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-ctx-bar {
    background: #0d0d18;
    border-bottom: 1px solid #1a1a2e;
    padding: 12px 16px;
}
.rnk-ctx-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    color: #5a5a7a;
}
.rnk-ctx-inner {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
}
.rnk-ctx-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
    flex: 1;
}
@media (max-width: 520px) {
    .rnk-ctx-inner { flex-direction: column; align-items: stretch; }
    .rnk-ctx-field { min-width: 0; width: 100%; }
}
.rnk-ctx-label {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #5a5a7a;
    text-transform: uppercase;
}
.rnk-ctx-select-wrap {
    position: relative;
}
.rnk-ctx-select {
    width: 100%;
    background: #111118;
    border: 1px solid #2a2a40;
    border-radius: 8px;
    color: #e0e0f0;
    font-size: .85rem;
    font-weight: 600;
    padding: 9px 36px 9px 12px;
    appearance: none;
    cursor: pointer;
    transition: border-color .18s;
}
.rnk-ctx-select:focus {
    outline: none;
    border-color: #7c3aed;
}
.rnk-ctx-arrow {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #5a5a7a;
    font-size: .75rem;
    pointer-events: none;
}
.rnk-spinner-sm {
    width: 16px; height: 16px;
    border: 2px solid #1e1e2e;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: rnk-spin-b-xcjwzfixkq .7s linear infinite;
}

/* â”€â”€ Liga status card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-status-card {
    margin: 12px 14px;
    background: linear-gradient(135deg, rgba(124,58,237,.12) 0%, rgba(17,17,24,.9) 100%);
    border: 1px solid rgba(124,58,237,.25);
    border-radius: 14px;
    padding: 14px 16px;
}
.rnk-status-liga-name {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 10px;
}
.rnk-status-kpis {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.rnk-skpi {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    text-align: center;
}
.rnk-skpi:first-child { padding-left: 0; }
.rnk-skpi-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.rnk-skpi-lbl {
    font-size: .62rem;
    color: #5a5a7a;
    font-weight: 600;
    margin-top: 3px;
}
.rnk-skpi-sep {
    width: 1px;
    height: 32px;
    background: #2a2a40;
}

/* â”€â”€ Tab bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-tab-bar {
    display: flex;
    background: transparent;
    border-bottom: none;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.rnk-tab-bar::-webkit-scrollbar { display: none; }
.rnk-tab-bar--main {
    min-height: var(--rnk-main-tab-row-h);
    align-items: center;
}
.rnk-tab-bar--league {
    border-top: 1px solid #141420;
}
.rnk-tab {
    flex: 1 0 auto;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: #5a5a7a;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .rnk-tab { padding: 12px 14px; font-size: .62rem; letter-spacing: .06em; }
}
.rnk-tab.active {
    color: #fff;
    border-bottom-color: #8b5cf6;
}
.rnk-tab:hover:not(.active) { color: #9090b0; }

/* â”€â”€ Body â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-body {
    padding: 22px 16px 32px;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 900px) {
    .rnk-body { padding: 28px 26px 40px; }
}

/* â”€â”€ Section header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
.rnk-section-header--major {
    margin-top: 8px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.rnk-sec-kicker {
    display: block;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: #f472b6;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.rnk-section-title {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    color: #c4b5fd;
}
.rnk-section-title--hero {
    font-size: clamp(1.05rem, 2.8vw, 1.45rem);
    letter-spacing: .06em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(124, 58, 237, .25);
}
.rnk-section-meta {
    font-size: .78rem;
    color: rgba(255, 255, 255, .42);
    font-weight: 600;
    max-width: 22em;
    line-height: 1.4;
}

/* â”€â”€ Standings table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-standings-head {
    display: grid;
    grid-template-columns: 36px 1fr 36px 36px 36px 48px;
    align-items: center;
    padding: 0 14px 8px;
    gap: 4px;
    border-bottom: 1px solid #1a1a2a;
    margin-bottom: 6px;
}
.rnk-sh-pos {
    font-size: .6rem;
    font-weight: 800;
    color: #3a3a58;
    text-align: center;
}
.rnk-sh-team {
    font-size: .6rem;
    font-weight: 800;
    color: #3a3a58;
    letter-spacing: .06em;
}
.rnk-sh-stat {
    font-size: .6rem;
    font-weight: 800;
    color: #3a3a58;
    text-align: center;
    letter-spacing: .04em;
}
.rnk-sh-w { color: rgba(134,239,172,.5); }
.rnk-sh-l { color: rgba(252,165,165,.5); }
.rnk-sh-dif { color: rgba(139,92,246,.5); }

.rnk-sh-cell {
    font-size: .88rem;
    font-weight: 700;
    color: #9090b0;
    text-align: center;
    min-width: 0;
}
.rnk-sh-cell--w { color: #86efac; }
.rnk-sh-cell--l { color: #fca5a5; }

/* â”€â”€ Ranking list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-list { display: flex; flex-direction: column; gap: 6px; }

.rnk-row {
    display: grid;
    grid-template-columns: 36px 40px 1fr 36px 36px 36px 48px;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .04) 0%, rgba(12, 12, 20, .92) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 12px 16px;
    transition: border-color .18s, transform .15s, box-shadow .18s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}
.rnk-row--player {
    grid-template-columns: 36px 40px 1fr auto auto auto;
}
.rnk-row:hover {
    border-color: rgba(167, 139, 250, .35);
    transform: translateX(3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
}
.rnk-row--podium {
    background: linear-gradient(95deg, rgba(139, 92, 246, .16) 0%, rgba(17, 17, 24, .95) 55%);
    border-color: rgba(167, 139, 250, .28);
    box-shadow: 0 0 32px rgba(124, 58, 237, .08);
}

/* Position badge */
.rnk-pos {
    text-align: center;
    font-size: .82rem;
    font-weight: 900;
    color: #5a5a7a;
    flex-shrink: 0;
}
.rnk-pos--gold   { color: #fbbf24; }
.rnk-pos--silver { color: #9ca3af; }
.rnk-pos--bronze { color: #b45309; }

/* Avatar */
.rnk-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.rnk-avatar--acad {
    border-radius: 10px;
    background: linear-gradient(135deg, #1d4ed8, #4f46e5);
}
.rnk-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.rnk-avatar-init { font-size: .95rem; font-weight: 900; color: #fff; }
.rnk-avatar-init--team { font-size: 1.1rem; }

/* Team logo */
.rnk-team-logo-wrap {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #1a1a2e;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.rnk-team-logo { width: 34px; height: 34px; object-fit: contain; }

/* Info */
.rnk-info { flex: 1; min-width: 0; }
.rnk-name {
    font-size: .92rem;
    font-weight: 700;
    color: #f3f4ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rnk-fire { font-size: .82rem; margin-left: 4px; }
.rnk-meta { font-size: .72rem; color: #b7bddb; margin-top: 2px; }

/* W-L inline on mobile */
.rnk-record--mobile {
    display: none;
    font-size: .68rem;
    font-weight: 700;
    gap: 2px;
}
@media (max-width: 420px) {
    .rnk-record--mobile { display: flex; align-items: center; }
}

/* Stat blocks */
.rnk-stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px;
    flex-shrink: 0;
}
.rnk-stat-block--sec { opacity: .7; }
@media (max-width: 480px) { .rnk-stat-block--sec { display: none; } }
.rnk-stat-val { font-size: .95rem; font-weight: 800; color: #e0e0f0; }
.rnk-stat-lbl { font-size: .54rem; color: #5a5a7a; font-weight: 700; letter-spacing: .06em; }

/* Record (W-L) */
.rnk-record {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .9rem;
    font-weight: 800;
    flex-shrink: 0;
}
.rnk-record-w { color: #86efac; }
.rnk-record-sep { color: #3a3a58; }
.rnk-record-l { color: #fca5a5; }
.rnk-record-label { font-size: .6rem; color: #3a3a58; margin-left: 4px; }

/* Differential */
.rnk-pos-diff { color: #86efac; }
.rnk-neg-diff { color: #fca5a5; }

/* Racha chip */
.rnk-racha-chip {
    font-size: .62rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: .04em;
}
.rnk-racha-chip--w { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.25); }
.rnk-racha-chip--l { background: rgba(239,68,68,.12); color: #fca5a5; border: 1px solid rgba(239,68,68,.2); }

/* Performance bar (academias - kept for legacy) */
.rnk-perf-bar-wrap {
    width: 60px; height: 5px;
    background: #1e1e2e;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.rnk-perf-bar {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #4f46e5);
    border-radius: 4px;
    transition: width .6s ease;
}

/* Table note */
.rnk-table-note {
    font-size: .62rem;
    color: #3a3a58;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #141420;
    text-align: center;
    letter-spacing: .03em;
}

/* â”€â”€ Leaders section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-leaders-block {
    margin-bottom: 28px;
}

.rnk-player-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.rnk-player-badge {
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 2px 6px;
    border-radius: 999px;
    color: #d8b4fe;
    border: 1px solid rgba(167, 139, 250, .35);
    background: rgba(124, 58, 237, .15);
}

.rnk-rank-move.up .rnk-stat-val { color: #86efac; }
.rnk-rank-move.down .rnk-stat-val { color: #fca5a5; }
.rnk-rank-move.flat .rnk-stat-val { color: #c4b5fd; }

.rnk-skeleton-grid {
    display: grid;
    gap: 10px;
}

.rnk-skeleton-card {
    height: 64px;
    border-radius: 12px;
    border: 1px solid #1e1e2e;
    background: linear-gradient(90deg, #111118 10%, #1a1a2e 45%, #111118 85%);
    background-size: 200% 100%;
    animation: rnk-skeleton-b-xcjwzfixkq 1.2s ease-in-out infinite;
}

/* â”€â”€ MVP Race carousel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-spotlight-wrap {
    margin: 14px 0 20px;
}
.rnk-spotlight-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 2px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.rnk-mvp-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 14px;
    padding: 4px 2px 14px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.rnk-mvp-carousel::-webkit-scrollbar { height: 4px; }
.rnk-mvp-carousel::-webkit-scrollbar-thumb {
    background: #2e2e48;
    border-radius: 4px;
}
.rnk-mvp-slide {
    flex: 0 0 min(88vw, 320px);
    scroll-snap-align: start;
    background: linear-gradient(145deg, rgba(124, 58, 237, .14) 0%, #111118 55%);
    border: 1px solid rgba(139, 92, 246, .28);
    border-radius: 16px;
    padding: 14px 14px 16px;
    box-sizing: border-box;
    min-height: 132px;
}
.rnk-mvp-slide--lead {
    border-color: rgba(251, 191, 36, .45);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, .12);
}
.rnk-mvp-slide-rank {
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
    color: #a78bfa;
    margin-bottom: 10px;
}
.rnk-mvp-slide--lead .rnk-mvp-slide-rank { color: #fbbf24; }
.rnk-mvp-slide-main {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.rnk-mvp-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.rnk-mvp-slide-info { flex: 1; min-width: 0; }
.rnk-mvp-slide-info .rnk-name {
    white-space: normal;
    line-height: 1.25;
}
.rnk-mvp-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
}
.rnk-mvp-metric {
    font-size: .72rem;
    font-weight: 800;
    color: #9090b0;
}
.rnk-mvp-metric small {
    display: block;
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #5a5a7a;
    margin-top: 2px;
}
.rnk-mvp-metric--hero {
    color: #c4b5fd;
    font-size: 1.05rem;
}
.rnk-mvp-slide-info .rnk-player-badges { margin-top: 8px; }
.rnk-mvp-empty {
    font-size: .82rem;
    color: #5a5a7a;
    padding: 20px 8px;
    text-align: center;
    border: 1px dashed #2a2a40;
    border-radius: 12px;
}
.rnk-mvp-slide--skeleton {
    border-color: #1e1e2e;
    background: #111118;
    padding: 12px;
}
.rnk-mvp-skel-inner {
    height: 100%;
    min-height: 96px;
    margin: 0;
}
.rnk-mvp-carousel--loading .rnk-mvp-slide {
    flex: 0 0 min(70vw, 240px);
}
.rnk-spotlight-subgrid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 6px;
}
@media (min-width: 560px) {
    .rnk-spotlight-subgrid {
        grid-template-columns: 1fr 1fr;
    }
}
.rnk-spotlight-card { min-height: 0; }

.rnk-spotlight-hot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.rnk-spotlight-card--onfire .rnk-section-title {
    margin-bottom: 0;
}
.rnk-onfire-badge {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
    color: #fb923c;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(251, 146, 60, .45);
    background: rgba(251, 146, 60, .12);
    flex-shrink: 0;
}
.rnk-onfire-sub {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #fdba74;
    margin: 0 0 10px;
}

/* Calendario: prioriza legibilidad del matchup y evita recortes agresivos. */
.rnk-row--calendar {
    grid-template-columns: 36px minmax(0, 1fr) auto;
}
.rnk-row--calendar .rnk-name {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.28;
}
.rnk-row--calendar .rnk-meta {
    font-size: .76rem;
    color: #c7ccea;
}
.rnk-row--calendar .rnk-stat-block {
    min-width: 82px;
    align-items: flex-end;
}
.rnk-row--calendar .rnk-stat-val {
    font-size: .84rem;
}

@keyframes rnk-skeleton-b-xcjwzfixkq {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* â”€â”€ Loading / error / empty â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 0;
    color: #5a5a7a;
    font-size: .85rem;
}
.rnk-spinner {
    width: 28px; height: 28px;
    border: 3px solid #1e1e2e;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: rnk-spin-b-xcjwzfixkq .7s linear infinite;
}
@keyframes rnk-spin-b-xcjwzfixkq { to { transform: rotate(360deg); } }
.rnk-error {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 10px;
    color: #fca5a5;
    padding: 14px 16px;
    font-size: .82rem;
    margin: 12px 0;
}
.rnk-empty {
    text-align: center;
    color: #5a5a7a;
    padding: 48px 0;
    font-size: .88rem;
}

/* â”€â”€ Empty state (structured) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-empty-state {
    text-align: center;
    padding: 52px 24px;
}
.rnk-empty-icon { font-size: 2.4rem; margin-bottom: 12px; }
.rnk-empty-title {
    font-size: 1rem;
    font-weight: 800;
    color: #e0e0f0;
    margin-bottom: 8px;
}
.rnk-empty-sub {
    font-size: .8rem;
    color: #5a5a7a;
    max-width: 340px;
    margin: 0 auto;
    line-height: 1.6;
}

/* â”€â”€ Coming soon state â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-coming-soon {
    background: linear-gradient(135deg, #111118, #0f0f1a);
    border: 1px dashed #2e2e48;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    margin: 8px 0;
}
.rnk-cs-icon { font-size: 2.2rem; margin-bottom: 14px; }
.rnk-cs-title {
    font-size: 1rem;
    font-weight: 800;
    color: #e0e0f0;
    margin-bottom: 10px;
}
.rnk-cs-sub {
    font-size: .8rem;
    color: #5a5a7a;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

/* â”€â”€ Footer CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-footer-cta {
    display: flex;
    justify-content: center;
    padding: 20px 14px 8px;
}
.rnk-footer-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(139,92,246,.4);
    color: #a78bfa;
    border-radius: 10px;
    padding: 11px 24px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .18s, border-color .18s, color .18s;
}
.rnk-footer-btn:hover {
    background: rgba(139,92,246,.1);
    border-color: rgba(139,92,246,.7);
    color: #c4b5fd;
}

/* â”€â”€ Trending grid (kept for backward compat) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-trending-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 540px) { .rnk-trending-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .rnk-trending-grid { grid-template-columns: 1fr 1fr 1fr; } }

.rnk-trend-card {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .18s;
}
.rnk-trend-card:hover { border-color: #2e2e48; }
.rnk-trend-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.rnk-trend-info .rnk-name { font-size: .9rem; }
.rnk-trend-delta {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -.02em;
}
.rnk-trend-delta--up   { color: #86efac; }
.rnk-trend-delta--down { color: #fca5a5; }
.rnk-trend-stats { display: flex; gap: 12px; margin-top: 8px; }
.rnk-trend-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* â”€â”€ Global KPIs (kept for backward compat) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-global-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
@media (min-width: 540px) { .rnk-global-kpis { grid-template-columns: repeat(4, 1fr); } }
.rnk-gkpi {
    background: #111118;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.rnk-gkpi-icon { font-size: 1.4rem; }
.rnk-gkpi-num  { font-size: 1.5rem; font-weight: 900; color: #8b5cf6; }
.rnk-gkpi-lbl  { font-size: .65rem; color: #5a5a7a; font-weight: 600; }

/* Global top card (kept for backward compat) */
.rnk-global-top-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(90deg, rgba(139,92,246,.12) 0%, #111118 100%);
    border: 1px solid rgba(139,92,246,.3);
    border-radius: 14px;
    padding: 18px 16px;
    margin-bottom: 8px;
}
.rnk-gta-crown { font-size: 1.6rem; flex-shrink: 0; }
.rnk-gta-info { flex: 1; min-width: 0; }
.rnk-gta-name { font-size: 1.05rem; font-weight: 800; color: #fff; }
.rnk-avatar--lg { width: 52px; height: 52px; font-size: 1.3rem; }
.rnk-avatar-init--lg { font-size: 1.4rem; }
.rnk-stat-val--hero { font-size: 1.4rem; color: #a78bfa; }

/* â”€â”€ Coming soon note â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rnk-coming-soon-note {
    text-align: center;
    font-size: .7rem;
    color: #3a3a58;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #1a1a2a;
    letter-spacing: .05em;
}

/* â”€â”€ Responsive adjustments â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
    .rnk-standings-head {
        grid-template-columns: 32px 1fr 30px 0 0 40px;
    }
    .rnk-standings-head .rnk-sh-stat:nth-child(4),
    .rnk-standings-head .rnk-sh-stat:nth-child(5) { display: none; }
    .rnk-row {
        grid-template-columns: 32px 36px 1fr 0 0 0 44px;
    }
    .rnk-sh-cell:nth-child(4),
    .rnk-sh-cell:nth-child(5),
    .rnk-sh-cell:nth-child(6) { display: none; }
    .rnk-sh-cell:nth-child(7) { display: flex; }
}

/* Mobile: evita solape de barras sticky sobre tabs principales. */
@media (max-width: 768px) {
    .rnk-sticky-main,
    .rnk-hub-sticky {
        position: static;
        top: auto;
    }
}
