/* =========================================================
LIVE CARD
========================================================= */

.pm-live-card{

    background:
    linear-gradient(
        180deg,
        #071226,
        #020617
    );

    border-radius:24px;

    padding:16px;

    border:
    1px solid rgba(255,255,255,.06);

    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(0,0,0,.28);

}

/* =========================================================
TOP
========================================================= */

.pm-live-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:16px;

}

.pm-live-top h3{

    color:#fff;

    margin:0;

    font-size:16px;

    font-weight:800;

}

/* =========================================================
LIVE BADGE
========================================================= */

.pm-live-badge{

    display:flex;

    align-items:center;

    gap:8px;

    background:
    rgba(255,0,70,.14);

    color:#ff3355;

    border:
    1px solid rgba(255,0,70,.25);

    border-radius:999px;

    padding:8px 14px;

    font-size:10px;

    font-weight:900;

}

.pm-live-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#ff0033;

    animation:
    pmLivePulse 1s infinite;

}

/* =========================================================
PULSE
========================================================= */

@keyframes pmLivePulse{

    0%{
        opacity:1;
    }

    50%{
        opacity:.35;
    }

    100%{
        opacity:1;
    }

}

/* =========================================================
GROUP
========================================================= */

.pm-live-group{

    color:#94a3b8;

    font-size:15px;

    margin-bottom:24px;
    text-align: center;

}

/* =========================================================
CONTENT
========================================================= */

.pm-live-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

/* =========================================================
TEAM
========================================================= */

.pm-live-team{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    flex:1;

}

.pm-live-team img{

    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:50%;

    border:
    3px solid rgba(255,255,255,.85);

}

.pm-live-team strong{

    color:#fff;

    font-size:14px;

    font-weight:800;

    text-transform:uppercase;

}

/* =========================================================
CENTER
========================================================= */

.pm-live-center{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

/* =========================================================
SCORE
========================================================= */

.pm-live-score{

    color:#fff;

    font-size:24px;

    font-weight:900;

    line-height:1;

}

/* =========================================================
MINUTE
========================================================= */

.pm-live-minute{

    color:#00ff99;

    font-size:34px;

    font-weight:900;

}

/* =========================================================
LINK
========================================================= */

.pm-live-link{

    display:flex;

    justify-content:center;

    margin-top:26px;

    padding-top:20px;

    border-top:
    1px solid rgba(255,255,255,.06);

    color:#ff3355 !important;

    text-decoration:none;

    font-weight:800;

    transition:.25s ease;

}

.pm-live-link:hover{

    color:#fff !important;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

    .pm-live-content{

        gap:12px;

    }

    .pm-live-team img{

        width:64px;
        height:64px;

    }

    .pm-live-team strong{

        font-size:13px;

    }

    .pm-live-score{

        font-size:42px;

    }

    .pm-live-minute{

        font-size:26px;

    }

}