/* ======================================================
   MUNDIAL 2026 LIVE
   Estilo tipo ESPN
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f5f6fa;
    font-family:Arial, Helvetica, sans-serif;

}

.wc-live-container{

    max-width:850px;
    margin:40px auto;
    padding:0 15px;

}

/* ==========================
   TARJETA DEL PARTIDO
========================== */

.wc-match{

    background:#111827;

    color:#fff;

    border-radius:15px;

    overflow:hidden;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.25s;

}

.wc-match:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

/* ==========================
   EN VIVO
========================== */

.wc-status{

    background:#d90429;

    color:#fff;

    text-align:center;

    font-size:15px;

    font-weight:bold;

    letter-spacing:1px;

    padding:10px;

}

/* ==========================
   EQUIPOS
========================== */

.wc-team{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    padding:20px;

    font-size:28px;

    font-weight:bold;

    text-transform:uppercase;

}

/* ==========================
   BANDERAS
========================== */

.wc-flag{

    width:54px;

    height:38px;

    object-fit:cover;

    border-radius:5px;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:0 3px 8px rgba(0,0,0,.35);

}

/* ==========================
   MARCADOR
========================== */

.wc-score{

    text-align:center;

    font-size:64px;

    font-weight:bold;

    color:#FFD54F;

    padding:5px 0;

}

/* ==========================
   MINUTO
========================== */

.wc-minute{

    text-align:center;

    padding:15px;

    font-size:24px;

    font-weight:bold;

    color:#00E676;

}

/* ==========================
   SIN PARTIDOS
========================== */

.wc-empty{

    background:#111827;

    color:#fff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    font-size:22px;

    font-weight:bold;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:700px){

.wc-team{

    font-size:20px;

    gap:10px;

    padding:15px;

}

.wc-score{

    font-size:46px;

}

.wc-minute{

    font-size:18px;

}

.wc-flag{

    width:40px;

    height:28px;

}

}

@media(max-width:480px){

.wc-team{

    flex-direction:column;

    text-align:center;

}

.wc-score{

    font-size:38px;

}

}

.wc-last-result,
.wc-match{

    background:#ffffff;
    border-radius:12px;
    padding:15px;
    margin:15px auto;
    max-width:420px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,.12);

}


.wc-status{

    font-weight:bold;
    margin-bottom:15px;
    font-size:18px;

}


.wc-team{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:18px;
    font-weight:600;
    margin:10px;

}


.wc-flag{

    width:32px;
    height:22px;
    object-fit:cover;

}


.wc-score{

    font-size:32px;
    font-weight:bold;
    margin:15px;

}


.wc-minute{

    font-size:14px;
    font-weight:bold;
    opacity:.7;

}