.mundial2026-wrapper{
    border-top:3px solid #c00;
    position:relative;
    width:100%;
    overflow:hidden;
    background:#0f0f0f;
    padding:10px 50px;
    box-sizing:border-box;
}

.mundial2026-track{
    display:flex;
    gap:12px;
    width:max-content;
}

.partido{
    flex:0 0 auto;
    width:200px;
    background:#1a1a1a;
    border-radius:8px;
    padding:10px;
    color:#fff;
}

.equipos{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.equipo{
    display:flex;
    align-items:center;
    gap:6px;
    width:85px;
}

.equipo img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.equipo span{
    font-size:12px;
    line-height:1.2;
}

.resultado{
     font-size:16px;
    font-weight:700;
}

.estado{
    margin-top:8px;
    text-align:center;
    font-size:11px;
    font-weight:700;
}

.estado.en-vivo{
    color:#00d26a;
}

.estado.finalizado{
    color:#ccc;
}

.estado.proximo{
    color:#ffcc00;
}

.mundial2026-prev,
.mundial2026-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#222;
    color:#fff;
    cursor:pointer;
    z-index:10;
}

.mundial2026-prev{
    left:8px;
}

.mundial2026-next{
    right:8px;
}

.fecha-partido{
    margin-top:6px;
    text-align:center;
    font-size:11px;
    color:#999;
}