.live-section{
    margin-bottom:25px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.section-header h2{
    font-size:22px;
    font-weight:700;
}

.section-header a{
    color:#2563EB;
    font-weight:600;
}

.match-card{

    background:#fff;

    border-radius:16px;

    padding:20px;

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

}

.league{

    color:#64748B;

    margin-bottom:15px;

    font-size:14px;

}

.teams{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.team{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

.team img{

    width:50px;

    height:50px;

}

.score{

    text-align:center;

}

.score strong{

    font-size:28px;

}

.score small{

    display:block;

    color:red;

    margin-top:5px;

}
.fixtures-section{

    margin-top:30px;

}

.fixture-card{

    background:var(--card);

    border-radius:16px;

    padding:20px;

    box-shadow:var(--shadow);

}

.fixture-time{

    text-align:center;

    font-size:14px;

    color:#64748B;

    margin-bottom:15px;

}

.fixture-teams{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.team-name{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

.team-name img{

    width:48px;

    height:48px;

    object-fit:contain;

}

.vs{

    font-weight:700;

    font-size:18px;

    color:#2563EB;

}