/**
 * Live Match Card
 * Match Stream Hub
 */

.msh-live-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:18px;
    margin-bottom:20px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:.25s;
}

.msh-live-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.msh-live-status{
    text-align:center;
    margin-bottom:15px;
}

.msh-status{
    display:inline-block;
    padding:6px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.msh-status-live{
    background:#ffebee;
    color:#d60000;
}

.msh-status-upcoming{
    background:#fff8e1;
    color:#a56a00;
}

.msh-status-finished{
    background:#e8f5e9;
    color:#1b7f3b;
}

.msh-status-postponed{
    background:#eceff1;
    color:#546e7a;
}

.msh-status-cancelled{
    background:#ffebee;
    color:#c62828;
}

.msh-status-halftime{
    background:#e3f2fd;
    color:#1565c0;
}

.msh-live-teams{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.msh-team{
    flex:1;
    text-align:center;
}

.msh-team img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:10px;
}

.msh-team h4{
    margin:0;
    font-size:18px;
    font-weight:700;
    line-height:1.4;
}

.msh-live-score{
    min-width:120px;
    text-align:center;
}

.msh-live-score span{
    font-size:34px;
    font-weight:800;
}

.msh-live-score strong{
    margin:0 10px;
    font-size:28px;
}

.msh-minute{
    margin-top:10px;
    font-size:15px;
    font-weight:700;
    color:#d60000;
}

.msh-live-venue{
    margin-top:18px;
    text-align:center;
    color:#666;
    font-size:14px;
}

.msh-live-footer{
    margin-top:20px;
    text-align:center;
}

.msh-watch-btn{
    display:inline-block;
    padding:10px 22px;
    border-radius:8px;
    background:#e10600;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.msh-watch-btn:hover{
    background:#b40000;
    color:#fff;
}

@media (max-width:768px){

    .msh-live-teams{
        flex-direction:column;
    }

    .msh-live-score{
        order:2;
        margin:15px 0;
    }

    .msh-team{
        width:100%;
    }

    .msh-team img{
        width:60px;
        height:60px;
    }

    .msh-live-score span{
        font-size:28px;
    }

}