/* =================================================================================================================== */
/* CLIMA 24.7 · FIFA WORLD CUP 2026 · FOOTER CENTER · CSS LIMPIO                                                       */
/* Countdown + Partidos + Grupos + Tablas + Efemérides + RSS                                                           */
/* =================================================================================================================== */
/* =================================================================================================================== */
/* FIFA WORLD CUP 2026 · FOOTER CENTER COUNTDOWN                                                                       */
/* ------------------------------------------------------------------------------------------------------------------- */
/* Módulo temporal. Está encapsulado para no tocar RSS / Efemérides / otros overlays.                                  */
/* Reemplaza la intro/logo anterior por cuenta regresiva compacta para .footer-center.                                  */
/* =================================================================================================================== */
:root{
    --footer-width: 1900px;
    --footer-height: 147px;

    --footer-side-gap: 30px;
    --footer-bottom: 50px;

    /* ALTURA ÚNICA PARA LOS 3 */
    --footer-box-height: 90px;

    --footer-left-width: 800px;
    --footer-right-width: 270px;

    /* 1920 - 10 - 810 - 790 - 300 - 10 = 0 */
    --footer-center-width: 790px;
}

/* ===================================================================================================================
⬇ FOOTER TOTAL
=================================================================================================================== */

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--footer-width);
    max-width: 1900px;
    height: var(--footer-height);
    max-height: var(--footer-height);
    z-index: var(--c247-z-footer);
}

/* ===================================================================================================================
⬅ FOOTER LEFT
=================================================================================================================== */

.footer-left {
    position: absolute;

    left: var(--footer-side-gap);
    bottom: var(--footer-bottom);
    width: var(--footer-left-width);
    height: var(--footer-box-height);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #180116, #2f012c);
    border-left: 6px solid var(--codelis-logoL-rgb);
    border-right: 2px solid var(--codelis-logoL-rgb);
    border-radius: 12px 0 0 12px;
    color: var(--blanco);
    overflow: visible;
    opacity: 0.90;
    z-index: var(--c247-z-footer);
}

/* ===================================================================================================================
⬅➡ FOOTER CENTER
=================================================================================================================== */

.footer-center {
    position: absolute;
    left: calc(var(--footer-side-gap) + var(--footer-left-width));
    bottom: var(--footer-bottom);
    width: var(--footer-center-width);
    height: var(--footer-box-height);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgb(47, 1, 44), rgb(56, 21, 75));
    overflow: hidden;
    opacity: 0.90;
    z-index: var(--c247-z-footer);
    border-right: 2px solid var(--codelis-logoL-rgb);
}

/* ===================================================================================================================
➡ FOOTER RIGHT
=================================================================================================================== */

.footer-right {
    position: absolute;

    right: 10px;
    bottom: var(--footer-bottom);
    width: var(--footer-right-width);
    height: var(--footer-box-height);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #031c36, #1c5a9c);
    border-radius: 0 12px 12px 0;
    color: var(--blanco);
    overflow: visible;
    opacity: 0.90;
    z-index: var(--c247-z-footer);
}

.footer-worldcup-2026 {
    --wc-blue: #002868;
    --wc-green: #007a33;
    --wc-red: #bf0a30;
    --wc-gold: #ffd700;
    --wc-white: #ffffff;
    --wc-card-dark: rgba(0, 0, 0, .78);

    position: absolute;
    inset: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;

    background:
        radial-gradient(circle at 12% 50%, rgba(0, 122, 51, .38), transparent 34%),
        radial-gradient(circle at 88% 50%, rgba(191, 10, 48, .34), transparent 34%),
        linear-gradient(90deg, rgba(0, 40, 104, .98), rgba(56, 21, 75, .97) 52%, rgba(47, 1, 44, .98));

    border-left: 5px solid var(--wc-gold);
    border-radius: 10px;

    box-shadow:
        0 0 12px rgba(0, 0, 0, .38),
        inset 0 0 0 1px rgba(255, 255, 255, .08);

    color: var(--blanco, #fff);
    overflow: hidden;
    box-sizing: border-box;

    opacity: 0;
    pointer-events: none;

    transform: translateY(8px) scale(.985);
    transition:
        opacity .45s ease,
        transform .45s ease;

    z-index: 60;
}

.footer-worldcup-2026.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.footer-worldcup-glow {
    position: absolute;
    inset: 0;
    opacity: .42;
    overflow: hidden;
    pointer-events: none;
}

.footer-worldcup-glow span {
    position: absolute;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .14);
    filter: blur(.2px);
    animation: footerWorldCupGlowMove 5s ease-in-out infinite alternate;
}

.footer-worldcup-glow span:nth-child(1) { left: 3%; top: -52px; background: rgba(0, 122, 51, .45); }
.footer-worldcup-glow span:nth-child(2) { left: 30%; bottom: -60px; background: rgba(255, 215, 0, .24); animation-delay: -1.6s; }
.footer-worldcup-glow span:nth-child(3) { right: 24%; top: -54px; background: rgba(255, 255, 255, .17); animation-delay: -3.2s; }
.footer-worldcup-glow span:nth-child(4) { right: 4%; bottom: -52px; background: rgba(191, 10, 48, .42); animation-delay: -4.8s; }

.footer-worldcup-countdown {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: grid;

    /*
        Dejamos una reserva fija a la izquierda para el logo FIFA.
        El logo queda absoluto dentro del badge principal y NO empuja los bloques del countdown.
    */
    grid-template-columns: minmax(185px, .72fr) minmax(420px, 1.35fr);
    align-items: center;
    gap: 14px;

    margin: 0;
    padding-left: 82px;

    text-align: center;
    min-width: 0;
    box-sizing: border-box;
}

/* Logo FIFA fijo dentro del badge, pegado al border-left dorado con padding */
.worldcup-side-logo {
    position: absolute;

    left: 0px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 4;

    width: 58px;
    height: calc(100% - 16px);

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.worldcup-side-logo img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 0 8px rgba(255,215,0,.20))
        drop-shadow(0 2px 6px rgba(0,0,0,.70));
}

/* Texto MUNDIAL 2026 del countdown */
.footer-worldcup-2026 .countdown-title {
    min-width: 0;
    margin: 0;

    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 6px;

    color: var(--wc-white);
    font-size: 24px;
    font-weight: 950;
    line-height: .95;
    letter-spacing: .035em;
    text-transform: uppercase;
    white-space: nowrap;

    overflow: hidden;

    text-shadow:
        0 2px 6px rgba(0,0,0,.78),
        0 0 10px rgba(255,255,255,.08);
}

.footer-worldcup-2026 .countdown-title i,
.worldcup-logo-title,
.worldcup-title-text {
    display: none;
}

.footer-worldcup-2026 .countdown {
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(74px, 1fr));
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    height: calc(100% - 8px);
}

.footer-worldcup-2026 .countdown-item {
    min-width: 0;
    height: 100%;
    max-height: 66px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 5px 8px;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 44%),
        var(--wc-card-dark);

    border: 2px solid rgba(255, 215, 0, .94);
    border-radius: 12px;

    box-shadow:
        0 4px 9px rgba(0, 0, 0, .36),
        inset 0 0 0 1px rgba(255, 255, 255, .05);

    box-sizing: border-box;
    overflow: hidden;
}

.footer-worldcup-2026 .countdown-number {
    display: block;

    font-family: Monaco, Consolas, 'Courier New', monospace;
    font-size: clamp(24px, 4.8vh, 38px);
    font-weight: 950;
    line-height: .92;
    color: var(--wc-gold);

    font-variant-numeric: tabular-nums;
    font-feature-settings: "zero" 0;
    letter-spacing: -.04em;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, .9),
        0 0 10px rgba(255, 215, 0, .20);
}

.footer-worldcup-2026 .countdown-label {
    display: block;

    margin-top: 5px;

    color: var(--wc-gold);
    font-size: clamp(10px, 1.55vh, 13px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;

    text-shadow: 0 1px 3px rgba(0, 0, 0, .85);
}

.footer-worldcup-2026 .countdown-item:nth-child(1) { border-color: rgba(255, 215, 0, .98); }
.footer-worldcup-2026 .countdown-item:nth-child(2) { border-color: rgba(0, 122, 51, .98); }
.footer-worldcup-2026 .countdown-item:nth-child(3) { border-color: rgba(255, 255, 255, .86); }
.footer-worldcup-2026 .countdown-item:nth-child(4) { border-color: rgba(191, 10, 48, .98); }

.footer-worldcup-2026.is-visible .countdown-item {
    animation: footerWorldCupCountdownPop .72s cubic-bezier(.16, 1, .3, 1) both;
}

.footer-worldcup-2026.is-visible .countdown-item:nth-child(2) { animation-delay: .06s; }
.footer-worldcup-2026.is-visible .countdown-item:nth-child(3) { animation-delay: .12s; }
.footer-worldcup-2026.is-visible .countdown-item:nth-child(4) { animation-delay: .18s; }

@keyframes footerWorldCupCountdownPop {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes footerWorldCupGlowMove {

    from {
        transform:
            translate3d(-22px, -10px, 0)
            scale(.78)
            rotate(-6deg);
    }

    to {
        transform:
            translate3d(22px, 12px, 0)
            scale(1.18)
            rotate(6deg);
    }
}

@media (max-width: 1180px) {
    .footer-worldcup-countdown {
        grid-template-columns: 1fr;
        grid-template-rows: 24px 1fr;
        gap: 5px;
        padding-left: 72px;
    }

    .worldcup-side-logo {
        left: 12px;
        width: 50px;
        height: calc(100% - 14px);
    }

    .footer-worldcup-2026 .countdown {
        grid-template-columns: repeat(4, minmax(64px, 1fr));
        gap: 7px;
    }

    .footer-worldcup-2026 .countdown-item {
        max-height: 48px;
        padding: 3px 6px;
        border-radius: 10px;
    }

    .footer-worldcup-2026 .countdown-number {
        font-size: clamp(21px, 3.6vh, 30px);
    }

    .footer-worldcup-2026 .countdown-label {
        margin-top: 3px;
        font-size: 10px;
    }
}

@media (max-height: 760px) {
    .footer-worldcup-2026 {
        inset: 4px 5px;
        padding: 0 12px;
    }

    .footer-worldcup-countdown {
        grid-template-columns: minmax(170px, .72fr) minmax(370px, 1.35fr);
        gap: 10px;
        padding-left: 76px;
    }

    .worldcup-side-logo {
        left: 12px;
        width: 54px;
        height: calc(100% - 14px);
    }

    .footer-worldcup-2026 .countdown-title {
        font-size: 18px;
    }

    .footer-worldcup-2026 .countdown {
        gap: 8px;
    }

    .footer-worldcup-2026 .countdown-item {
        max-height: 58px;
        padding: 4px 7px;
    }

    .footer-worldcup-2026 .countdown-number {
        font-size: 29px;
    }

    .footer-worldcup-2026 .countdown-label {
        margin-top: 4px;
        font-size: 10px;
    }
}

.worldcup-live-match {
    position: absolute;
    left: 50%;
    bottom: 10px;

    width: 520px;
    height: 48px;

    transform: translateX(-50%);

    display: grid;
    grid-template-columns: 95px 330px 95px;

    align-items: start;

    z-index: calc(var(--c247-z-footer) + 5);

    pointer-events: none;
    color: #fff;
    overflow: visible;
}

.wcl-score {
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        180deg,
        rgba(112, 56, 142),
        rgba(143, 85, 155)
    );
    color: #ffffff;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    border-top: 1px solid #70388E;

    box-sizing: border-box;

    z-index: 1;
}

/* IZQUIERDA */
.wcl-score-left {
    margin-top: 8px;
    clip-path: polygon(
        0 0,
        100% 0,
        88% 100%,
        8% 100%
    );
    font-family: Monaco, Consolas, monospace;
    margin-right: -54px;
    padding-right: 30px;
}

/* DERECHA */
.wcl-score-right {
    margin-top: 8px;
    clip-path: polygon(
        0 0,
        100% 0,
        88% 100%,
        8% 100%
    );
    font-family: Monaco, Consolas, monospace;
    margin-left: -54px;
    padding-left: 30px;
}

/* CENTRO */
.wcl-center {
    position: relative;
    overflow: visible;
    height: 48px;
    margin-top: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
    
    background: linear-gradient(
        180deg,
        rgba(17, 8, 23),
        rgba(56, 21, 75)
    );

    clip-path: polygon(
        0 0,
        100% 0,
        90% 100%,
        10% 100%
    );

    border-top: 1px solid #70388E;

    box-sizing: border-box;

    font-size: 18px;
    font-weight: 600;

    text-shadow: 0 1px 2px rgba(0,0,0,.45);

    z-index: 3;
}

.wcl-center img {
    width: 38px;
    height: 22px;

    object-fit: cover;

    box-shadow:
        0 0 0 1px rgba(255,255,255,.18);
}

.wcl-vs {
    font-size: 14px;
    font-weight: 900;

    letter-spacing: .04em;
}

.footer-worldcup-2026 [data-wc-screen] {
    display: none;
}

.footer-worldcup-2026[data-worldcup-screen="countdown"] [data-wc-screen="countdown"] {
    display: grid;
}

.footer-worldcup-2026[data-worldcup-screen="groups"] [data-wc-screen="groups"] {
    display: grid;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] [data-wc-screen="fixture"] {
    display: grid;
}

.stadium-txt {
    font-size: 22px;
    color: var(--info-claro-rgb);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stadium-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;

    border-radius: 2px;

    box-shadow:
        0 0 0 1px rgba(255,255,255,.18);
}

.worldcup-live-match {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(14px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.worldcup-live-match.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.wcl-vs.is-countdown {
    min-width: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: Monaco, Consolas, monospace;

    font-size: 16px;
    font-weight: 900;

    color: #ffd700;

    text-shadow:
        0 0 8px rgba(255,215,0,.35),
        0 1px 2px rgba(0,0,0,.85);
}

/* =================================================================================================
   CLIMA 24.7 · MUNDIAL 2026 · BADGE GRUPOS LIMPIO
   Línea 1: Equipo bandera · Equipo bandera
   Línea 2: Equipo bandera · Equipo bandera
================================================================================================= */

.footer-worldcup-2026[data-worldcup-screen="groups"] {
    border-left-color: var(--wc-group-color, var(--wc-gold));
    box-shadow:
        0 0 14px rgba(0,0,0,.42),
        inset 0 0 0 1px color-mix(in srgb, var(--wc-group-color, #ffd700) 55%, rgba(255,255,255,.12)),
        0 0 12px color-mix(in srgb, var(--wc-group-color, #ffd700) 24%, transparent);
}

.wc2026-group-badge {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 14px;

    padding: 8px 18px 8px 62px;
    box-sizing: border-box;
    text-transform: uppercase;
}

.wc2026-group-title {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--wc-group-color, var(--wc-gold));
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;

    text-shadow:
        0 0 10px color-mix(in srgb, var(--wc-group-color, #ffd700) 48%, transparent),
        0 2px 6px rgba(0,0,0,.85);
}

.wc2026-group-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;

    padding: 8px 12px;

    border-radius: 999px;
    border: 2px solid var(--wc-group-color, var(--wc-gold));

    background:
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 45%),
        color-mix(in srgb, var(--wc-group-color, #ffd700) 12%, rgba(0,0,0,.72));

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.06),
        0 0 10px color-mix(in srgb, var(--wc-group-color, #ffd700) 28%, transparent);
}

.wc2026-group-grid {
    min-width: 0;
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;

    align-items: center;
}

.wc2026-group-row {
    min-width: 0;
    height: 31px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
    align-items: center;
}

.wc2026-group-team-inline {
    min-width: 0;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 12px;
    box-sizing: border-box;

    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--wc-group-color, #ffd700) 65%, rgba(255,255,255,.16));
    border-left: 4px solid var(--wc-group-color, var(--wc-gold));

    background:
        linear-gradient(180deg, rgba(255,255,255,.09), transparent 48%),
        rgba(0,0,0,.50);

    overflow: hidden;

    box-shadow:
        0 3px 8px rgba(0,0,0,.30),
        inset 0 0 0 1px rgba(255,255,255,.045);
}

.wc2026-group-team-inline strong {
    min-width: 0;

    color: #fff;
    font-size: 21px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: .02em;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    text-shadow: 0 2px 4px rgba(0,0,0,.80);
}

.wc2026-group-team-inline img {
    flex-shrink: 0;

    width: 32px;
    height: 21px;

    object-fit: cover;
    border-radius: 3px;

    box-shadow:
        0 0 0 1px rgba(255,255,255,.22),
        0 2px 5px rgba(0,0,0,.45);
}

@media (max-height: 760px) {
    .wc2026-group-badge {
        grid-template-columns: 125px 1fr;
        gap: 10px;
        padding-left: 84px;
    }

    .wc2026-group-title {
        font-size: 20px;
    }

    .wc2026-group-team-inline strong {
        font-size: 18px;
    }
}

/* =================================================================================================
   OVERRIDE FINAL · COLORES DINÁMICOS POR GRUPO · BADGES MUNDIAL 2026
================================================================================================= */

.footer-worldcup-2026[data-worldcup-screen="groups"],
.footer-worldcup-2026[data-worldcup-screen="fixture"] {
    border-left-color: var(--wc-group-color, var(--wc-gold)) !important;

    background:
        radial-gradient(circle at 12% 50%, color-mix(in srgb, var(--wc-group-color, #ffd700) 20%, transparent), transparent 36%),
        radial-gradient(circle at 88% 50%, rgba(191, 10, 48, .24), transparent 34%),
        linear-gradient(
            90deg,
            var(--wc-group-bg, rgba(0,40,104,.98)),
            color-mix(in srgb, var(--wc-group-bg, #120014) 72%, #38154b 28%) 58%,
            #2f012c
        ) !important;

    box-shadow:
        0 0 14px rgba(0,0,0,.46),
        inset 0 0 0 1px color-mix(in srgb, var(--wc-group-color, #ffd700) 55%, rgba(255,255,255,.10)),
        0 0 13px color-mix(in srgb, var(--wc-group-color, #ffd700) 24%, transparent) !important;
}

/* Label GRUPO A-L */
.footer-worldcup-2026[data-worldcup-screen="groups"] .wc2026-group-label {
    color: var(--wc-group-color, var(--wc-gold)) !important;
    border-color: var(--wc-group-color, var(--wc-gold)) !important;

    background:
        linear-gradient(180deg, rgba(255,255,255,.10), transparent 46%),
        color-mix(in srgb, var(--wc-group-bg, #120014) 82%, #000 18%) !important;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.06),
        0 0 11px color-mix(in srgb, var(--wc-group-color, #ffd700) 34%, transparent) !important;
}

/* Equipos de grupo */
.footer-worldcup-2026[data-worldcup-screen="groups"] .wc2026-group-team-inline {
    background:
        linear-gradient(180deg, rgba(255,255,255,.09), transparent 48%),
        color-mix(in srgb, var(--wc-group-bg, #120014) 76%, #000 24%) !important;

    border-color: color-mix(in srgb, var(--wc-group-color, #ffd700) 72%, rgba(255,255,255,.14)) !important;
    border-left-color: var(--wc-group-color, var(--wc-gold)) !important;
}

/* Mantiene grupos también lejos del logo FIFA */
.footer-worldcup-2026[data-worldcup-screen="groups"] .wc2026-group-badge {
    padding-left: 66px !important;
}

@media (max-height: 760px) {
    .footer-worldcup-2026[data-worldcup-screen="groups"] .wc2026-group-badge {
        grid-template-columns: 125px 1fr;
        gap: 10px;
        padding-left: 84px !important;
    }
}

/* =================================================================================================
   CORRECCIÓN Y OPTIMIZACIÓN TOTAL · PANTALLA FIXTURE (PARTIDO ÚNICO SIMÉTRICO)
================================================================================================= */

/* Estructura base de la pantalla fixture con espacio reservado para logo FIFA */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture {
    width: 100%;
    height: 100%;
    display: grid !important;
    grid-template-rows: 21px 1fr;
    align-items: center;
    padding: 1px 8px 0 96px !important;
    box-sizing: border-box;
    text-transform: uppercase;
}

/* Título superior compacto y centrado (FECHA X · PARTIDO X DE X) con margen superior corregido */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-title {
    color: var(--wc-gold);
    font-size: 19px !important;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    text-shadow:
        0 0 6px rgba(255,215,0,.24),
        0 2px 4px rgba(0,0,0,.85);
    /* Margen superior para despegar el título del borde superior del badge */
    margin-top: 8px !important; 
    margin-bottom: 0px !important;
    transform: translateY(3px); /* Lo baja exactamente 3 píxeles */
}

/* Contenedores del grid de fixture */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-grid {
    min-width: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: stretch;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-single-container {
    width: 100% !important;
    max-width: 100%;
    padding-right: 0 !important;
    box-sizing: border-box;
}

/* ESTRUCTURA DEL CHIP ÚNICO: Grid balanceado y alineación espejo respecto al VS central */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode {
    width: 100%;
    min-width: 0;
    height: 38px !important;
    position: relative;
    top: 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box;
    border-radius: 999px;
    overflow: hidden;

    /* Columnas balanceadas simétricamente: Grupo, Local(txt), Local(flag), VS, Visitante(flag), Visitante(txt), Fecha/Hora */
    display: grid !important;
    grid-template-columns: 26px minmax(45px, 1fr) 30px 28px 30px minmax(45px, 1fr) auto;
    align-items: center;
    gap: 4px;

    background:
        linear-gradient(180deg, rgba(255,255,255,.10), transparent 50%),
        color-mix(in srgb, var(--wc-group-bg, #120014) 75%, #000 25%) !important;

    border: 1px solid color-mix(
        in srgb,
        var(--wc-group-color, #ffd700) 72%,
        rgba(255,255,255,.12)
    );
    border-left: 5px solid var(--wc-group-color, #ffd700) !important;
    box-shadow:
        0 2px 7px rgba(0,0,0,.38),
        inset 0 0 0 1px rgba(255,255,255,.045);
}

/* Etiqueta del grupo adentro del chip único */
/* Badge circular para la letra del grupo */
/* Badge circular con letra de color oscuro dinámico */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode .wc2026-fixture-chip-group {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 24px !important;
    height: 24px !important;
    
    border-radius: 50% !important;
    
    /* Fondo con el color del grupo */
    background-color: var(--wc-group-color, #ffd700) !important;
    
    /* ⬇ CAMBIO: La letra ahora toma el color oscuro definido en tu variable */
    color: var(--wc-group-bg, #120014) !important; 

    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center;

    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    
    /* Ajuste de sombra de texto para que se lea bien sobre el color claro/dorado */
    text-shadow: 0 0 2px rgba(255,255,255,0.3);
    
    margin: 0 !important;
    padding: 0 !important;
}

/* Textos de los equipos (Local y Visitante) */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode strong {
    min-width: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,.78);
}

/* LADO IZQUIERDO: Alineación a la derecha para empujar visualmente hacia su bandera */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode strong:nth-of-type(1) {
    text-align: right;
}

/* LADO DERECHO: Alineación a la izquierda desde su bandera hacia afuera */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode strong:nth-of-type(2) {
    text-align: left;
}

/* Banderas de las selecciones unificadas y centradas en su celda del grid */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode img {
    width: 28px;
    height: 19px;
    object-fit: cover;
    border-radius: 3px;
    justify-self: center;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        0 2px 4px rgba(0,0,0,.36);
}

/* Separador central (VS) o Reloj */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode em {
    color: var(--wc-gold);
    font-size: 18px;
    font-style: normal;
    font-weight: 950;
    text-align: center;
}

/* Etiqueta de Fecha y Hora (Extremo derecho, sin margin-right desbordante) */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode small {
    color: rgba(255, 255, 255, 1);
    font-size: 18px; /* Optimizado de 16px/18px para mitigar desborde en pantallas densas */
    font-weight: 850;
    text-align: right;
    white-space: nowrap;
    padding-left: 6px;
    margin-right: 0 !important;
}

/* =================================================================================================================== */
/* FIFA WORLD CUP 2026 · FOOTER CENTER COUNTDOWN, FIXTURE, GROUPS & TABLES                                            */
/* =================================================================================================================== */

/* ... (Mantener intacto todo el CSS original que ya tenías para countdown, fixture y group-badge) ... */


/* ===================================================================================================================

/* =================================================================================================
   OVERRIDE FINAL LIMPIO · VISIBILIDAD DE PANTALLAS
================================================================================================= */
.footer-worldcup-2026 [data-wc-screen] {
    display: none !important;
}

.footer-worldcup-2026[data-worldcup-screen="countdown"] [data-wc-screen="countdown"] {
    display: grid !important;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] [data-wc-screen="fixture"] {
    display: grid !important;
}

.footer-worldcup-2026[data-worldcup-screen="groups"] [data-wc-screen="groups"] {
    display: grid !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] [data-wc-screen="tables"] {
    display: grid !important;
}

/* =================================================================================================
   OVERRIDE FINAL LIMPIO · PARTIDOS
================================================================================================= */
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture {
    width: 100%;
    height: 100%;

    display: grid !important;
    grid-template-rows: 24px 1fr !important;
    align-items: center;

    padding: 1px 10px 0 90px !important;
    box-sizing: border-box;
    text-transform: uppercase;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-title {
    color: var(--wc-gold);
    font-size: 20px !important;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    transform: translateY(1px) !important;
    text-shadow:
        0 0 6px rgba(255,215,0,.24),
        0 2px 4px rgba(0,0,0,.85);
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-grid {
    min-width: 0;
    width: 100%;
    height: 100%;

    display: flex !important;
    align-items: center !important;
    justify-content: stretch !important;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-single-container {
    width: 100% !important;
    max-width: 100%;
    padding-right: 0 !important;
    box-sizing: border-box;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode {
    width: 100%;
    min-width: 0;
    height: 48px !important;
    min-height: 48px !important;

    display: grid !important;
    grid-template-columns: 38px minmax(74px, 1fr) 34px 38px 34px minmax(74px, 1fr) auto !important;
    align-items: center;
    gap: 7px !important;

    position: relative;
    top: 0 !important;
    padding: 0 10px 0 4px !important;
    box-sizing: border-box;

    border-radius: 999px !important;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255,255,255,.10), transparent 50%),
        color-mix(in srgb, var(--wc-group-bg, #120014) 75%, #000 25%) !important;

    border: 1px solid color-mix(in srgb, var(--wc-group-color, #ffd700) 72%, rgba(255,255,255,.12));
    border-left: 5px solid var(--wc-group-color, #ffd700) !important;

    box-shadow:
        0 2px 7px rgba(0,0,0,.38),
        inset 0 0 0 1px rgba(255,255,255,.045);
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode .wc2026-fixture-chip-group {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    align-self: center !important;

    margin-left: -2px !important;
    margin-right: 0 !important;
    padding: 0 !important;

    border-radius: 50% !important;
    background: var(--wc-group-color, #ffd700) !important;
    color: var(--wc-group-bg, #120014) !important;

    font-size: 24px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;

    box-shadow:
        0 2px 6px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.26) !important;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode strong {
    min-width: 0;
    color: #fff;
    font-size: 21px !important;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,.78);
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode strong:nth-of-type(1) {
    text-align: right;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode strong:nth-of-type(2) {
    text-align: left;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode img {
    width: 32px !important;
    height: 21px !important;
    object-fit: cover;
    border-radius: 3px;
    justify-self: center;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        0 2px 4px rgba(0,0,0,.36);
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode em {
    color: var(--wc-gold);
    font-size: 20px !important;
    font-style: normal;
    font-weight: 950;
    text-align: center;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-chip.single-match-mode small {
    color: rgba(255,255,255,1);
    font-size: 18px !important;
    font-weight: 850;
    text-align: right;
    white-space: nowrap;
    padding-left: 6px;
    margin-right: 0 !important;
}

/* =================================================================================================
   OVERRIDE FINAL LIMPIO · TABLAS
   Layout correcto:
   izquierda centrada en dos líneas: A · 2° · MX · MÉXICO
   derecha línea 1: PJ PG PE PP GF DG PTS
   derecha línea 2: valores alineados debajo
================================================================================================= */
.footer-worldcup-2026[data-worldcup-screen="tables"] {
    border-left-color: var(--wc-group-color, var(--wc-gold)) !important;

    background:
        radial-gradient(circle at 12% 50%, color-mix(in srgb, var(--wc-group-color, #ffd700) 18%, transparent), transparent 38%),
        radial-gradient(circle at 88% 50%, rgba(191, 10, 48, .20), transparent 34%),
        linear-gradient(
            90deg,
            var(--wc-group-bg, rgba(0,40,104,.98)),
            color-mix(in srgb, var(--wc-group-bg, #120014) 72%, #38154b 28%) 58%,
            #2f012c
        ) !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-container {
    --wc-table-left-w: 300px;
    --wc-table-stat-w: 48px;
    --wc-table-stats-w: calc(var(--wc-table-stat-w) * 7);

    position: relative !important;
    z-index: 2 !important;

    width: 100% !important;
    height: 100% !important;

    display: grid !important;
    grid-template-columns: var(--wc-table-left-w) var(--wc-table-stats-w) !important;
    grid-template-rows: 1fr 1fr !important;
    align-items: center !important;
    column-gap: 16px !important;
    row-gap: 0 !important;

    padding: 9px 18px 7px 72px !important;
    box-sizing: border-box !important;
    text-transform: uppercase !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-title {
    grid-column: 2 !important;
    grid-row: 1 !important;

    width: var(--wc-table-stats-w) !important;
    height: 100% !important;

    display: flex !important;
    align-items: end !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    line-height: 1 !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-grid {
    display: contents !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-stat-header {
    width: var(--wc-table-stats-w) !important;
    height: 28px !important;

    display: grid !important;
    grid-template-columns: repeat(7, var(--wc-table-stat-w)) !important;
    align-items: center !important;
    justify-items: center !important;

    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    color: #ffffff !important;
    font-family: Monaco, Consolas, 'Courier New', monospace !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-shadow: 0 2px 4px rgba(0,0,0,.85) !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-row-clean {
    display: contents !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-team-block {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;

    width: var(--wc-table-left-w) !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-group-badge {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;
    background: var(--wc-group-color, #ffd700) !important;
    color: var(--wc-group-bg, #120014) !important;

    font-size: 24px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;

    box-shadow:
        0 2px 6px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.26) !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-position {
    width: auto !important;
    min-width: 26px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-shadow: 0 2px 4px rgba(0,0,0,.85) !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-team-block img {
    width: 32px !important;
    height: 21px !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 3px !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        0 2px 4px rgba(0,0,0,.36) !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-name {
    min-width: 0 !important;

    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: .02em !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;

    text-shadow: 0 2px 4px rgba(0,0,0,.85) !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-team-stats {
    grid-column: 2 !important;
    grid-row: 2 !important;

    width: var(--wc-table-stats-w) !important;
    height: 100% !important;

    display: grid !important;
    grid-template-columns: repeat(7, var(--wc-table-stat-w)) !important;
    align-items: start !important;
    justify-items: center !important;

    gap: 0 !important;
    margin: 0 !important;
    padding: 2px 0 0 0 !important;
    box-sizing: border-box !important;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-team-stats span,
.footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-team-stats .is-points {
    width: var(--wc-table-stat-w) !important;
    height: 26px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    color: #ffffff !important;
    font-family: Monaco, Consolas, 'Courier New', monospace !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;

    text-shadow: 0 2px 4px rgba(0,0,0,.85) !important;
}

@media (max-height: 760px) {
    .footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-container {
        --wc-table-left-w: 285px;
        --wc-table-stat-w: 44px;
        padding-left: 70px !important;
    }

    .footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-group-badge {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
        font-size: 22px !important;
    }

    .footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-name {
        font-size: 20px !important;
    }

    .footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-stat-header {
        font-size: 16px !important;
    }

    .footer-worldcup-2026[data-worldcup-screen="tables"] .wc2026-table-team-stats span {
        font-size: 18px !important;
    }
}

/* =================================================================================================
   OVERRIDE FINAL LIMPIO · EFEMÉRIDES
================================================================================================= */
#footer-efemeride-badge,
.footer-rss-ticker-card {
    position: absolute;
    inset: 5px;
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    box-sizing: border-box;
}

#footer-efemeride-badge.show,
#footer-efemeride-badge.is-visible,
.footer-rss-ticker-card.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

#footer-efemeride-badge {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 12px;

    padding: 8px 18px 8px 14px;
    overflow: hidden;

    border-radius: 10px;
    border-left: 5px solid #ffd700;

    background:
        radial-gradient(circle at 10% 50%, rgba(255,215,0,.20), transparent 36%),
        linear-gradient(90deg, rgba(35,0,28,.98), rgba(56,21,75,.96) 58%, rgba(47,1,44,.98));

    box-shadow:
        0 0 12px rgba(0,0,0,.42),
        inset 0 0 0 1px rgba(255,255,255,.08);

    color: #ffffff;
}

#footer-efemeride-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(0,0,0,.28);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.10),
        0 2px 8px rgba(0,0,0,.45);
}

#footer-efemeride-text {
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-rows: 30px 1fr;
    align-items: center;
    overflow: hidden;
    text-transform: uppercase;
}

#footer-efemeride-text .efemeride-linea-1 {
    min-width: 0;
    color: #ffd700;
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,.85);
}

#footer-efemeride-text .efemeride-label,
#footer-efemeride-text .efemeride-titulo {
    color: #ffd700;
}

#footer-efemeride-text .efemeride-anio {
    color: #ffffff;
    margin-left: 6px;
}

#footer-efemeride-text .efemeride-linea-2 {
    min-width: 0;
    width: 100%;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-shadow: 0 2px 4px rgba(0,0,0,.8);
}

#footer-efemeride-text .efemeride-desc-scroll {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    padding-right: 42px;
}

/* =================================================================================================
   OVERRIDE FINAL LIMPIO · RSS
================================================================================================= */
.footer-rss-ticker-card {
    height: calc(var(--footer-box-height) - 10px) !important;
    max-height: calc(var(--footer-box-height) - 10px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}

.footer-rss-ticker-card .news-ticker-wrapper,
.news-ticker-wrapper {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;

    overflow: hidden !important;
    padding-top: 16px !important;
    box-sizing: border-box !important;
}

#ticker-noticias {
    display: inline-block !important;
    height: auto !important;
    line-height: 1 !important;
    white-space: nowrap !important;

    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,.85) !important;

    transform: translate3d(0,0,0);
}

#ticker-noticias .news-item,
#ticker-noticias .ticker-item {
    display: inline-block !important;
    padding: 0 10px !important;
}

#ticker-noticias .ticker-separator {
    display: inline-block !important;
    color: #ffd700 !important;
    font-size: 26px !important;
    font-weight: 950 !important;
    padding: 0 8px !important;
}



/* =================================================================================================
   OVERRIDE FINAL · BADGES DE ESTADO EN PARTIDOS POR FECHA
================================================================================================= */

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-date-label,
.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-status-badge {
    justify-self: end;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 112px;
    height: 28px;

    padding: 0 10px !important;
    box-sizing: border-box;

    border-radius: 999px !important;

    font-size: 15px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    text-align: center !important;
    text-shadow: 0 2px 4px rgba(0,0,0,.80) !important;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-status-badge.is-playing {
    background: #5f2c02 !important;
    border: 1px solid #fd7e14 !important;
    color: #fd7e14 !important;
    box-shadow:
        0 0 10px rgba(253,126,20,.24),
        inset 0 0 0 1px rgba(255,255,255,.04) !important;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-status-badge.is-finished {
    background: #062b0f !important;
    border: 1px solid #28a745 !important;
    color: #ffffff !important;
    box-shadow:
        0 0 10px rgba(40,167,69,.20),
        inset 0 0 0 1px rgba(255,255,255,.04) !important;
}

.footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-date-label {
    min-width: 86px;
    background: rgba(0,0,0,.22) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    color: rgba(255,255,255,1) !important;
}

@media (max-height: 760px) {
    .footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-status-badge,
    .footer-worldcup-2026[data-worldcup-screen="fixture"] .wc2026-fixture-date-label {
        min-width: 104px;
        height: 26px;
        padding: 0 8px !important;
        font-size: 14px !important;
    }
}


/* LIVE MATCH REMOVIDO DEL FOOTER: el live + eventos van solo en cámaras */
#worldcup-live-match,
.worldcup-live-match {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
