﻿
.fixture-day-header {
    font-weight: 700;
    color: #1e40af; /* azul fuerte */
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
    border-left: 4px solid #1e40af;
    padding-left: .5rem;
}

.phase-badge {
    background-color: #2563eb; /* azul */
}

/* ---------------------------------------------- */
/*                BRACKET                         */
/* ---------------------------------------------- */

.bracket-grid {
    display: grid;
    gap: 1rem;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 320px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
    align-items: flex-start; /* clave para evitar estiramiento */
}

/* Hint arriba del grid */
.bracket-hint {
    font-size: .75rem;
    color: rgba(0,0,0,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .75;
}

    .bracket-hint i {
        font-size: .9rem;
        vertical-align: middle;
    }

/* Final NO debe estirarse (quita el hueco gigante) */
.bracket-col.bracket-final-auto {
    min-height: unset;
    height: auto;
}

/* Match card */
.bracket-match {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
}

    .bracket-match .match-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        padding: .35rem .35rem;
        border-radius: 8px;
    }

        .bracket-match .match-row + .match-row {
            margin-top: .2rem;
        }

    .bracket-match .team-name {
        font-size: 0.92rem;
        font-weight: 500;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 240px;
    }

    .bracket-match .score-box {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 34px;
    }

    .bracket-match .score {
        font-size: 0.9rem;
        font-weight: 700;
    }

    .bracket-match .score-empty {
        opacity: 0.55;
        font-weight: 600;
    }

    /* Meta */
    .bracket-match .match-meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        margin-top: .45rem;
        padding-top: .45rem;
        border-top: 1px dashed rgba(0,0,0,0.10);
        font-size: 0.75rem;
        color: rgba(0,0,0,0.65);
    }

    .bracket-match .meta-left,
    .bracket-match .meta-right {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .bracket-match .meta-item {
        white-space: nowrap;
    }

    /* Winner highlight */
    .bracket-match .match-row.winner {
        background: rgba(25, 135, 84, 0.10);
    }

        .bracket-match .match-row.winner .team-name {
            font-weight: 700;
        }

        .bracket-match .match-row.winner .score {
            color: #198754;
        }

/* Columna Final (resaltado azul) */
.bracket-final-col {
    padding: 1.1rem !important;
    border-radius: 14px !important;
    border-color: rgba(13,110,253,.28) !important;
    box-shadow: 0 0.35rem 1.1rem rgba(13,110,253,.10);
    background: rgba(13,110,253,.03);
}

    .bracket-final-col hr {
        border-top: 1px dashed rgba(13,110,253,.35);
    }

/* ---------------------------------------------- */
/*                RESULTADOS                      */
/* ---------------------------------------------- */

.result-score {
    font-weight: 800;
    font-size: 1.05rem;
    padding: .1rem .4rem;
    border-radius: .4rem;
    background: rgba(0,0,0,0.03);
}

.result-winner {
    font-weight: 800;
}

/* ---------------------------------------------- */
/*                GOLEADORES                      */
/* ---------------------------------------------- */

.player-photo-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.player-photo {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

/* Zoom al hover */
.player-photo-wrapper:hover .player-photo {
    transform: scale(2.5);
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------- */
/*           PUBLIC - MOVIL RESPONSIVE            */
/* ---------------------------------------------- */

.mode-switch {
    display: flex;
    width: 100%;
}

    .mode-switch .btn {
        min-height: 38px;
        font-weight: 500;
    }

/* ===== DESKTOP / TABLET ===== */
@media (min-width: 768px) {
    .mode-switch {
        background: #f1f5ff;
        padding: .35rem;
        border-radius: .75rem;
        gap: .5rem;
    }

        .mode-switch .btn {
            border-radius: .5rem;
        }

            .mode-switch .btn.btn-outline-success {
                background: #fff;
            }
}

/* ===== MÓVIL ===== */
@media (max-width: 575.98px) {
    .mode-switch {
        flex-direction: column;
        gap: .5rem; /* separación entre botones */
        padding: .25rem;
    }

        .mode-switch .btn,
        .mode-switch span {
            width: 100% !important;
        }

        .mode-switch .btn {
            border-radius: .5rem !important; /* recupera esquinas */
        }
}

/* ---------------------------------------------- */
/*   MODE SWITCH – FIX HOVER & ACTIVE STATES      */
/* ---------------------------------------------- */

/* Botón ACTIVO */
.mode-switch .btn.btn-success,
.mode-switch .btn.btn-success:hover,
.mode-switch .btn.btn-success:focus {
    color: #fff !important;
    background-color: #198754 !important;
    border-color: #198754 !important;
    box-shadow: none;
}

/* Botón INACTIVO */
.mode-switch .btn.btn-outline-success {
    color: #198754;
    background-color: #fff;
    border-color: #198754;
}

    /* Hover del INACTIVO → NO invierte colores */
    .mode-switch .btn.btn-outline-success:hover,
    .mode-switch .btn.btn-outline-success:focus {
        color: #198754 !important;
        background-color: #f8fff9 !important; /* leve feedback */
        border-color: #198754 !important;
        box-shadow: none;
    }

@media (max-width: 575.98px) {
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

/* ---------------------------------------------- */
/*        BOTÓN VOLVER ARRIBA (SCROLL TOP)        */
/* ---------------------------------------------- */

.scroll-top-btn {
    position: fixed;
    right: 1rem;
    bottom: 1.25rem;
    z-index: 1050;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background-color: #0d6efd; /* primary */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

    .scroll-top-btn.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        background-color: #0b5ed7;
    }

@media (max-width: 575.98px) {
    .scroll-top-btn {
        bottom: 4rem;
    }
}

/* ---------------------------------------------- */
/*                 HOME (PUBLIC)                  */
/* ---------------------------------------------- */

.home-section-card {
    border-radius: 16px;
}

.home-stat-card,
.home-quick-card {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .home-quick-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }

.home-stat-icon,
.home-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.10);
    color: #0d6efd;
    font-size: 1.2rem;
}

/* Mejor spacing en móvil */
@media (max-width: 576px) {
    .home-hero {
        padding: 1rem;
    }
}

/* ---------------------------------------------- */
/*        CARD LEVELS (PUBLIC UI HIERARCHY)       */
/* ---------------------------------------------- */

/* Nivel 1 – Cards principales */
.card-primary {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid rgba(56,189,248,.25);
    box-shadow: 0 12px 28px rgba(2,6,23,.10);
}

/* Nivel 2 – Cards informativas */
.card-default {
    background: #ffffff;
    border: 1px solid rgba(2,6,23,.08);
    box-shadow: 0 8px 20px rgba(2,6,23,.06);
}

/* Nivel 3 – Cards de acción / navegación */
.card-action {
    background: #ffffff;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .card-action:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(2,6,23,.12);
    }

/* ---------------------------------------------- */
/*   HOME - TOP ACCENT LINE (like admin cards)    */
/* ---------------------------------------------- */

.card-top-accent {
    position: relative;
    overflow: hidden; /* asegura que el borde redondeado recorte la línea */
}

    .card-top-accent::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        border-radius: 16px 16px 0 0; /* igual al radio de tus cards */
        background: rgba(56,189,248,.85); /* azul suave por defecto */
    }

/* Variantes (sutiles, deportivas) */
.card-accent-blue::before {
    background: rgba(56,189,248,.85);
}
/* sky */
.card-accent-indigo::before {
    background: rgba(99,102,241,.85);
}
/* indigo */
.card-accent-green::before {
    background: rgba(34,197,94,.85);
}
/* green */
.card-accent-amber::before {
    background: rgba(245,158,11,.85);
}
/* amber */

.home-hero {
    position: relative;
    background: radial-gradient(circle at top right, rgba(56,189,248,.08), transparent 45%), #fff;
}

    .home-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient( 90deg, #38bdf8, #6366f1, #22c55e );
    }

/* Línea superior degradada reutilizable (igual que el HERO) */
.card-accent-gradient {
    position: relative;
    overflow: hidden;
}

    .card-accent-gradient::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #38bdf8, #6366f1, #22c55e);
    }

/* ---------------------------------------------- */
/*                  STANDINGS                     */
/* ---------------------------------------------- */

.standings-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

.standings-table {
    min-width: 780px;
}

    .standings-table thead th {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
        border-bottom: 1px solid var(--lm-border);
        font-weight: 700;
    }

    .standings-table th.num,
    .standings-table td.num {
        text-align: right;
        font-variant-numeric: tabular-nums;
    }

    .standings-table th.rank,
    .standings-table td.rank {
        width: 44px;
        text-align: center;
    }

    .standings-table td.team {
        font-weight: 600;
    }

    .standings-table td.pts {
        font-weight: 900;
        color: var(--lm-primary-2);
    }

.standings-row.top-1 td {
    background: rgba(34,197,94,.10);
}

.standings-row.top-2 td {
    background: rgba(56,189,248,.08);
}

.standings-group-title {
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--lm-primary-2);
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .standings-group-title::before {
        content: "";
        width: 10px;
        height: 18px;
        border-radius: 6px;
        background: linear-gradient( 180deg, var(--lm-primary), var(--lm-primary-2) );
    }

.standings-row.top-1 td:first-child {
    position: relative;
    font-weight: 900;
    color: #166534; /* green-800 */
}

    .standings-row.top-1 td:first-child::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 70%;
        border-radius: 999px;
        background: linear-gradient( 180deg, #22c55e, #16a34a );
    }

/* ---------------------------------------------- */
/*          STANDINGS - MOBILE CARDS              */
/* ---------------------------------------------- */

.standings-cards {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.standings-card {
    border: 1px solid rgba(2,6,23,.08);
    background: #fff;
    border-radius: 14px;
    padding: .75rem .75rem;
    box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

    .standings-card.top-1 {
        background: rgba(34,197,94,.10);
        border-color: rgba(34,197,94,.25);
    }

.standings-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.standings-rank {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: rgba(13,110,253,.12);
    color: var(--lm-primary-2);
    flex: 0 0 auto;
}

.standings-team {
    min-width: 0;
    flex: 1 1 auto;
}

.standings-team-name {
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.standings-mini {
    margin-top: .2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    font-size: .78rem;
    color: rgba(2,6,23,.65);
}

.standings-pts {
    text-align: right;
    flex: 0 0 auto;
    padding-left: .5rem;
    border-left: 1px dashed rgba(2,6,23,.12);
}

.standings-pts-value {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--lm-primary-2);
    line-height: 1;
}

.standings-pts-label {
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(2,6,23,.55);
    margin-top: .1rem;
}

.standings-card-footer {
    margin-top: .55rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.standings-chip {
    font-size: .78rem;
    color: rgba(2,6,23,.65);
    background: rgba(2,6,23,.04);
    border: 1px solid rgba(2,6,23,.06);
    border-radius: 999px;
    padding: .15rem .5rem;
}

/* ---------------------------------------------- */
/*        STANDINGS - GROUP TITLE                 */
/* ---------------------------------------------- */

.standings-group-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .8rem;
    color: #1e40af; /* azul fuerte */
}

    .standings-group-title::before {
        content: "";
        width: 8px;
        height: 16px;
        border-radius: 6px;
        background: linear-gradient( 180deg, #3b82f6, /* blue-500 */
        #1e40af /* blue-800 */
        );
    }

/* ---------------------------------------------- */
/*     STANDINGS - QUALIFICATION HIGHLIGHTS       */
/* ---------------------------------------------- */

/* Desktop (tabla) */
.standings-row.is-qualified td {
    background: rgba(34,197,94,.10); /* verde suave */
}

.standings-row.is-best-third td {
    background: rgba(56,189,248,.10); /* celeste suave */
}

/* Si es top-1, mantenemos su estilo por encima */
.standings-row.top-1 td {
    background: rgba(34,197,94,.12);
}

/* Mobile (cards) */
.standings-card.is-qualified {
    background: rgba(34,197,94,.10);
    border-color: rgba(34,197,94,.25);
}

.standings-card.is-best-third {
    background: rgba(56,189,248,.10);
    border-color: rgba(56,189,248,.25);
}

/* Si es top-1, mantenemos su estilo por encima */
.standings-card.top-1 {
    background: rgba(34,197,94,.12);
    border-color: rgba(34,197,94,.28);
}

/* ---------------------------------------------- */
/*                GOLEADORES (SCORERS)            */
/* ---------------------------------------------- */

.scorers-desktop {
    display: block;
}

.scorers-mobile {
    display: none;
}

@media (max-width: 575.98px) {
    .scorers-desktop {
        display: none;
    }

    .scorers-mobile {
        display: block;
    }
}

/* Badge goles consistente */
.scorers-goals-badge {
    min-width: 28px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* Highlight top 1 (desktop) */
.scorers-row.top-1 td {
    background: rgba(245,158,11,.14); /* dorado suave */
}

/* Hover suave en desktop */
@media (min-width: 992px) {
    .scorers-table tbody tr:hover td {
        background: rgba(2,6,23,.03);
    }
}

/* ===== Mobile cards ===== */
.scorer-card {
    background: #fff;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 14px;
    padding: .75rem .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 18px rgba(2,6,23,.06);
    margin-bottom: .6rem;
}

    .scorer-card.top-1 {
        background: rgba(245,158,11,.14);
        border-color: rgba(245,158,11,.25);
    }

.scorer-left {
    display: flex;
    gap: .7rem;
    align-items: center;
    min-width: 0;
}

.scorer-rank {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(13,110,253,.12);
    color: #0d6efd;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
    flex: 0 0 auto;
}

.scorer-player {
    min-width: 0;
}

.scorer-name {
    font-weight: 800; /* mantiene la jerarquía visual */
    line-height: 1.15;
    white-space: normal; /* permite wrap */
    display: -webkit-box; /* necesario para line-clamp */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* máximo 2 líneas */
    overflow: hidden; /* corta si excede */
    max-width: 210px;
}

.scorer-team {
    font-size: .8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
}

.scorer-right {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 0 0 auto;
}

.scorer-avatar {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(2,6,23,.10);
    background: #fff;
}

.scorer-goals {
    text-align: right;
}

.scorer-goals-num {
    font-weight: 900;
    font-size: 1.05rem;
    color: #0d6efd;
    font-variant-numeric: tabular-nums;
}

.scorer-goals-label {
    font-size: .65rem;
    letter-spacing: .08em;
    font-weight: 700;
    color: rgba(2,6,23,.55);
}

/* ---------------------------------------------- */
/*              GOALKEEPERS (MOBILE CARDS)        */
/* ---------------------------------------------- */

.goalkeepers-desktop {
    display: block;
}

.goalkeepers-mobile {
    display: none;
}

@media (max-width: 575.98px) {
    .goalkeepers-desktop {
        display: none;
    }

    .goalkeepers-mobile {
        display: block;
    }
}

/* ===== Mobile cards ===== */
.goalkeeper-card {
    background: #fff;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 14px;
    padding: .75rem .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 18px rgba(2,6,23,.06);
    margin-bottom: .6rem; /* <<< separación igual que scorers */
}

    .goalkeeper-card.top-1 {
        background: rgba(245,158,11,.14);
        border-color: rgba(245,158,11,.25);
    }

.goalkeeper-left {
    display: flex;
    gap: .7rem;
    align-items: center;
    min-width: 0;
}

.goalkeeper-rank {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(13,110,253,.12);
    color: #0d6efd;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
    flex: 0 0 auto;
}

.goalkeeper-player {
    min-width: 0;
}

.goalkeeper-name {
    font-weight: 800; /* mantiene la jerarquía visual */
    line-height: 1.15;
    white-space: normal; /* permite wrap */
    display: -webkit-box; /* necesario para line-clamp */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* máximo 2 líneas */
    overflow: hidden; /* corta si excede */
    max-width: 210px;
}

.goalkeeper-team {
    font-size: .8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
}

.goalkeeper-right {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 0 0 auto;
}

.goalkeeper-avatar {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(2,6,23,.10);
    background: #fff;
}

.goalkeeper-goals {
    text-align: right;
}

.goalkeeper-goals-num {
    font-weight: 900;
    font-size: 1.05rem;
    color: #0d6efd;
    font-variant-numeric: tabular-nums;
}

.goalkeeper-goals-label {
    font-size: .65rem;
    letter-spacing: .08em;
    font-weight: 700;
    color: rgba(2,6,23,.55);
}

/* ================= SECTION HEADERS ================= */

.section-header {
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding-bottom: .75rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -.02em;
}

.section-icon {
    font-size: 1.5rem;
    color: #0d6efd;
}

.section-badge {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: rgba(13,110,253,.1);
    color: #0d6efd;
}

.section-subtitle {
    margin: .35rem 0 0;
    font-size: .9rem;
    color: rgba(0,0,0,.55);
}

.filter-label {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(0,0,0,.55);
    text-transform: uppercase;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
}

/* Home Summary collapse chevron */
#homeSummaryChevron {
    transition: transform .2s ease;
}

    #homeSummaryChevron.rotate-180 {
        transform: rotate(180deg);
    }

/* ---------------------------------------------- */
/*     HOME - FIXTURES PREVIEW (NEXT MATCHES)      */
/* ---------------------------------------------- */

.lm-fixtures-preview {
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-sm);
    background: #fff;
    box-shadow: var(--lm-shadow-sm);
    overflow: hidden;
}

    /* Día (sin depender de .fixture-day-header global) */
    .lm-fixtures-preview .lm-day {
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-size: .78rem;
        color: var(--lm-primary-2);
        padding: .7rem .9rem;
        background: linear-gradient(90deg, rgba(13,110,253,.10), rgba(34,197,94,.06));
        border-bottom: 1px solid rgba(2,6,23,.06);
    }

    /* List group look */
    .lm-fixtures-preview .list-group-item {
        border: 0;
        border-bottom: 1px solid rgba(2,6,23,.06);
        padding: .8rem .9rem;
        background: transparent;
    }

        .lm-fixtures-preview .list-group-item:last-child {
            border-bottom: 0;
        }

        .lm-fixtures-preview .list-group-item:hover {
            background: rgba(13,110,253,.03);
        }

/* Título del match */
.lm-fixture-teams {
    font-weight: 800;
    line-height: 1.15;
}

/* Chips (reutilizables) */
.lm-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(2,6,23,.03);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.lm-chip-phase {
    background: rgba(13,110,253,.12);
    border-color: rgba(13,110,253,.22);
    color: var(--lm-primary-2);
}

.lm-chip-round {
    background: rgba(2,6,23,.03);
    border-color: rgba(2,6,23,.10);
    color: rgba(2,6,23,.75);
}

.lm-chip-today {
    background: rgba(245,158,11,.14);
    border-color: rgba(245,158,11,.25);
    color: #92400e;
}

/* Meta compacta */
.lm-fixture-meta {
    font-size: .82rem;
    color: rgba(2,6,23,.65);
}

.lm-fixture-time {
    font-size: .82rem;
    font-weight: 800;
    color: rgba(2,6,23,.70);
    white-space: nowrap;
}

/* Empty del preview */
.lm-preview-empty {
    border: 1px dashed rgba(2,6,23,.15);
    border-radius: var(--lm-radius-sm);
    background: #fff;
    padding: 1rem;
}

/* HOME - badge "Vista rápida" */
.home-quick-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lm-primary-2);
    background: rgba(13,110,253,.10);
    border: 1px solid rgba(13,110,253,.22);
    white-space: nowrap;
}