.athlos-mc{
    --athlos-border:#d9dde5;
    --athlos-text:#182033;
    --athlos-muted:#6b7280;
    --athlos-bg:#fff;
    --athlos-soft:#f4f6f9;
    --athlos-live:#d92332;
    width:100%;
    background:var(--athlos-bg);
    border:1px solid var(--athlos-border);
    overflow:hidden;
    box-sizing:border-box;
    font-family:inherit;
}
.athlos-mc *{box-sizing:border-box}

.athlos-mc__topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:11px 14px 9px;
    border-bottom:1px solid var(--athlos-border);
}
.athlos-mc__title-wrap{display:flex;align-items:center;gap:9px;min-width:0}
.athlos-mc__live-dot{
    width:9px;height:9px;border-radius:50%;
    background:var(--athlos-live);
    box-shadow:0 0 0 4px rgba(217,35,50,.10);
    flex:0 0 auto;
}
.athlos-mc__title{
    margin:0!important;
    padding:0!important;
    font-size:17px!important;
    line-height:1.15!important;
    font-weight:800!important;
    letter-spacing:.02em;
    color:var(--athlos-text);
}
.athlos-mc__nav{
    display:flex;
    align-items:center;
    gap:6px;
}
.athlos-mc__all-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:30px;
    padding:0 10px;
    border:1px solid var(--athlos-border);
    border-radius:5px;
    background:#fff;
    color:var(--athlos-text);
    text-decoration:none!important;
    font-size:11px;
    line-height:1;
    font-weight:800;
    letter-spacing:.025em;
    white-space:nowrap;
    transition:background .15s ease,border-color .15s ease;
}
.athlos-mc__all-link:hover{
    background:var(--athlos-soft);
    color:var(--athlos-text);
}
.athlos-mc__all-link-mobile{display:none}
.athlos-mc__all-link-arrow{
    font-size:16px;
    line-height:1;
}
.athlos-mc__arrow{
    appearance:none;
    width:34px;height:30px;
    border:1px solid var(--athlos-border);
    background:#fff;
    color:var(--athlos-text);
    font-size:25px;
    line-height:1;
    cursor:pointer;
    border-radius:5px;
}
.athlos-mc__arrow:hover{background:var(--athlos-soft)}

.athlos-mc__tabs{
    display:flex;
    gap:0;
    border-bottom:1px solid var(--athlos-border);
    overflow-x:auto;
    scrollbar-width:none;
}
.athlos-mc__tabs::-webkit-scrollbar{display:none}
.athlos-mc__tab{
    appearance:none;
    border:0;
    border-right:1px solid var(--athlos-border);
    background:#fff;
    color:var(--athlos-muted);
    padding:10px 17px;
    font-size:13px;
    line-height:1;
    font-weight:800;
    letter-spacing:.02em;
    cursor:pointer;
    white-space:nowrap;
}
.athlos-mc__tab.is-active{
    color:var(--athlos-text);
    background:var(--athlos-soft);
    box-shadow:inset 0 -3px 0 var(--athlos-text);
}


.athlos-mc__competition-bar{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 12px;
    border-bottom:1px solid var(--athlos-border);
    background:#fff;
}
.athlos-mc__competition-bar label{
    flex:0 0 auto;
    color:var(--athlos-muted);
    font-size:10px;
    line-height:1;
    font-weight:800;
    letter-spacing:.04em;
}
.athlos-mc__competition-bar select{
    width:min(330px,100%);
    min-height:30px;
    border:1px solid var(--athlos-border);
    border-radius:4px;
    background:#fff;
    color:var(--athlos-text);
    padding:4px 30px 4px 9px;
    font-family:inherit;
    font-size:12px;
    font-weight:700;
}
.athlos-mc__competition-bar.is-empty select{
    color:var(--athlos-muted);
}

.athlos-mc__body{position:relative;padding:10px}
.athlos-mc__rail{
    display:flex;
    gap:10px;
    overflow-x:auto;
    overscroll-behavior-inline:contain;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    -ms-overflow-style:none;
}
.athlos-mc__rail::-webkit-scrollbar{display:none}

.athlos-mc__card{
    flex:0 0 calc((100% - 30px)/4);
    min-width:238px;
    min-height:128px;
    scroll-snap-align:start;
    border:1px solid var(--athlos-border);
    border-radius:7px;
    background:#fff;
    padding:10px 11px 12px;
    overflow:hidden;
}
.athlos-mc__card.is-live{
    border-color:rgba(217,35,50,.55);
    box-shadow:inset 3px 0 0 var(--athlos-live);
}
.athlos-mc__card-head{
    display:flex;
    justify-content:space-between;
    gap:8px;
    align-items:center;
    font-size:12px;
    line-height:1.2;
    margin-bottom:6px;
}
.athlos-mc__datetime{
    font-weight:800;
    color:var(--athlos-text);
    white-space:nowrap;
}
.athlos-mc__status{
    color:var(--athlos-muted);
    font-weight:800;
    white-space:nowrap;
}
.athlos-mc__card.is-live .athlos-mc__status{color:var(--athlos-live)}
.athlos-mc__league{
    color:var(--athlos-muted);
    font-size:11px;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin-bottom:10px;
}

.athlos-mc__teams{
    display:grid;
    grid-template-columns:minmax(0,1fr) 26px minmax(0,1fr);
    gap:6px;
    align-items:center;
}
.athlos-mc__team{
    display:flex;
    min-width:0;
    align-items:center;
    gap:7px;
}
.athlos-mc__team--away{
    justify-content:flex-end;
    text-align:right;
}
.athlos-mc__team-name{
    min-width:0;
    font-size:13px;
    line-height:1.18;
    font-weight:700;
    color:var(--athlos-text);
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
    display:block;
}
.athlos-mc__team-logo-wrap{
    width:29px;height:29px;
    flex:0 0 29px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.athlos-mc__team-logo{
    width:29px;height:29px;
    object-fit:contain;
    display:block;
}
.athlos-mc__team-logo-wrap--fallback{
    border-radius:50%;
    background:var(--athlos-soft);
    border:1px solid var(--athlos-border);
    color:var(--athlos-muted);
    font-size:10px;
    font-weight:800;
}
.athlos-mc__versus{
    text-align:center;
    font-size:19px;
    line-height:1;
    font-weight:500;
    color:#a3a9b3;
}
.athlos-mc__score{
    text-align:center;
    font-size:17px;
    line-height:1;
    font-weight:900;
    color:var(--athlos-text);
    white-space:nowrap;
}
.athlos-mc__loading,.athlos-mc__message{
    min-height:104px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:16px;
    color:var(--athlos-muted);
    font-size:14px;
}
.athlos-mc__loading[hidden],.athlos-mc__message[hidden]{display:none!important}

/* Medium widths: keep the carousel useful without squeezing cards. */
@media (max-width:1100px) and (min-width:783px){
    .athlos-mc__card{
        flex-basis:calc((100% - 20px)/3);
        min-width:235px;
    }
}

@media (max-width:782px){
    .athlos-mc{
        border-left:0;
        border-right:0;
    }
    .athlos-mc__topline{
        padding:10px 10px 9px;
    }
    .athlos-mc__title{font-size:16px!important}
    .athlos-mc__nav{
        display:flex;
        margin-left:auto;
    }
    .athlos-mc__arrow{display:none}
    .athlos-mc__all-link{
        min-height:28px;
        padding:0 8px;
        font-size:10px;
    }
    .athlos-mc__all-link-desktop{display:none}
    .athlos-mc__all-link-mobile{display:inline}

    .athlos-mc__tabs{
        width:100%;
    }
    .athlos-mc__competition-bar{
        padding:8px 10px;
    }
    .athlos-mc__competition-bar label{
        display:none;
    }
    .athlos-mc__competition-bar select{
        width:100%;
        max-width:none;
    }
    .athlos-mc__tab{
        flex:1 1 33.333%;
        min-width:0;
        padding:10px 6px;
        font-size:12px;
        text-align:center;
    }

    .athlos-mc__body{
        padding:11px 0 12px 12px;
    }
    .athlos-mc__rail{
        gap:10px;
        padding-right:16vw;
        scroll-snap-type:x mandatory;
        scrollbar-width:none;
    }
    .athlos-mc__rail::-webkit-scrollbar{display:none}

    .athlos-mc__card{
        flex:0 0 min(86vw, 330px);
        min-width:0;
        min-height:142px;
        padding:11px 12px 13px;
        scroll-snap-align:start;
    }
    .athlos-mc__card-head{
        margin-bottom:7px;
        font-size:12px;
    }
    .athlos-mc__league{
        font-size:11px;
        margin-bottom:13px;
    }
    .athlos-mc__teams{
        grid-template-columns:minmax(0,1fr) 22px minmax(0,1fr);
        gap:5px;
    }
    .athlos-mc__team{
        gap:7px;
    }
    .athlos-mc__team-name{
        font-size:14px;
        line-height:1.15;
        font-weight:750;
    }
    .athlos-mc__team-logo-wrap,
    .athlos-mc__team-logo{
        width:31px;
        height:31px;
    }
    .athlos-mc__team-logo-wrap{
        flex-basis:31px;
    }
    .athlos-mc__versus{
        font-size:19px;
    }
    .athlos-mc__score{
        font-size:18px;
    }
}

@media (max-width:360px){
    .athlos-mc__tab{
        font-size:11px;
        padding-left:4px;
        padding-right:4px;
    }
    .athlos-mc__card{
        flex-basis:88vw;
    }
    .athlos-mc__team-name{
        font-size:13px;
    }
}


/* v0.4.2 — clickable cards + single match shell */
.athlos-mc__card{
    cursor:pointer;
    transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.athlos-mc__card:hover{
    border-color:#b8bec9;
    box-shadow:0 3px 12px rgba(24,32,51,.08);
}
.athlos-mc__card:focus-visible{
    outline:2px solid #182033;
    outline-offset:2px;
}

.athlos-mc--single{overflow:visible}
.athlos-mc-single__topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:12px 14px;
    border-bottom:1px solid var(--athlos-border);
}
.athlos-mc-single__back{
    color:var(--athlos-text);
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}
.athlos-mc-single__league{
    color:var(--athlos-muted);
    font-size:13px;
    font-weight:700;
    text-align:right;
}
.athlos-mc-single__meta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    padding:12px 12px 0;
    color:var(--athlos-muted);
    font-size:13px;
}
.athlos-mc-single__meta strong{color:var(--athlos-text)}
.athlos-mc-single__scoreboard{
    display:grid;
    grid-template-columns:minmax(0,1fr) 120px minmax(0,1fr);
    align-items:center;
    gap:20px;
    padding:22px 28px 26px;
}
.athlos-mc-single__team{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    text-align:center;
    min-width:0;
}
.athlos-mc-single__team strong{
    font-size:19px;
    line-height:1.15;
    color:var(--athlos-text);
}
.athlos-mc-single__logo{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.athlos-mc-single__logo img{
    width:62px;
    height:62px;
    object-fit:contain;
}
.athlos-mc-single__logo--fallback{
    border-radius:50%;
    background:var(--athlos-soft);
    border:1px solid var(--athlos-border);
    color:var(--athlos-muted);
    font-weight:800;
}
.athlos-mc-single__middle{text-align:center}
.athlos-mc-single__score{
    font-size:33px;
    line-height:1;
    font-weight:900;
    color:var(--athlos-text);
}
.athlos-mc-single__time{
    font-size:25px;
    line-height:1;
    font-weight:900;
    color:var(--athlos-text);
}
.athlos-mc-single__tabs{
    display:flex;
    overflow-x:auto;
    scrollbar-width:none;
    border-top:1px solid var(--athlos-border);
    border-bottom:1px solid var(--athlos-border);
}
.athlos-mc-single__tabs::-webkit-scrollbar{display:none}
.athlos-mc-single__tabs button{
    appearance:none;
    border:0;
    border-right:1px solid var(--athlos-border);
    background:#fff;
    color:var(--athlos-muted);
    padding:11px 16px;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}
.athlos-mc-single__tabs button.is-active{
    color:var(--athlos-text);
    background:var(--athlos-soft);
    box-shadow:inset 0 -3px 0 var(--athlos-text);
}
.athlos-mc-single__placeholder{
    display:flex;
    flex-direction:column;
    gap:7px;
    padding:22px 18px;
    text-align:center;
    color:var(--athlos-muted);
    font-size:14px;
}
.athlos-mc-single__placeholder strong{color:var(--athlos-text)}

@media (max-width:782px){
    .athlos-mc__rail{
        padding-right:22vw;
    }
    .athlos-mc__card{
        flex-basis:min(76vw,300px);
    }

    .athlos-mc-single__topbar{
        padding:10px 11px;
    }
    .athlos-mc-single__league{
        max-width:48%;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .athlos-mc-single__scoreboard{
        grid-template-columns:minmax(0,1fr) 76px minmax(0,1fr);
        gap:8px;
        padding:20px 12px 22px;
    }
    .athlos-mc-single__team strong{
        font-size:15px;
    }
    .athlos-mc-single__logo,
    .athlos-mc-single__logo img{
        width:48px;
        height:48px;
    }
    .athlos-mc-single__score{font-size:27px}
    .athlos-mc-single__time{font-size:21px}
    .athlos-mc-single__tabs button{
        flex:0 0 auto;
        padding:10px 12px;
        font-size:11px;
    }
}

.athlos-mc-single__team strong{
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
}


/* v0.5 Full Match Center */
.athlos-full-mc{--mc-border:#dde1e8;--mc-text:#171d2b;--mc-muted:#6b7280;--mc-soft:#f5f6f8;--mc-live:#d7192d;width:100%;color:var(--mc-text);font-family:inherit}.athlos-full-mc *{box-sizing:border-box}.athlos-full-mc__header{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;padding:4px 0 18px;border-bottom:3px solid var(--mc-text)}.athlos-full-mc__eyebrow{display:block;color:var(--mc-muted);font-size:12px;font-weight:800;letter-spacing:.12em;margin-bottom:4px}.athlos-full-mc__title{margin:0!important;padding:0!important;font-size:33px!important;line-height:1!important;font-weight:900!important;color:var(--mc-text)}.athlos-full-mc__updated{color:var(--mc-muted);font-size:12px}.athlos-full-mc__datebar{display:flex;align-items:center;justify-content:center;gap:8px;padding:15px 0}.athlos-full-mc__datebar button{appearance:none;border:1px solid var(--mc-border);background:#fff;color:var(--mc-text);border-radius:5px;font-weight:800;cursor:pointer}.athlos-full-mc__date-arrow{width:38px;height:36px;font-size:23px}.athlos-full-mc__date-button{min-width:180px;height:36px;padding:0 14px;font-size:13px}.athlos-full-mc__today{height:36px;padding:0 14px;font-size:12px}.athlos-full-mc__sports{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--mc-border);margin-bottom:20px}.athlos-full-mc__sports button{appearance:none;border:0;border-right:1px solid var(--mc-border);background:#fff;color:var(--mc-muted);padding:12px 10px;font-size:13px;font-weight:900;cursor:pointer}.athlos-full-mc__sports button:last-child{border-right:0}.athlos-full-mc__sports button.is-active{background:var(--mc-text);color:#fff}.athlos-full-mc__loading,.athlos-full-mc__message{min-height:180px;display:flex;align-items:center;justify-content:center;text-align:center;color:var(--mc-muted)}.athlos-full-mc__loading[hidden],.athlos-full-mc__message[hidden],.athlos-full-mc__content[hidden]{display:none!important}.athlos-full-mc__section{margin:0 0 28px}.athlos-full-mc__section-title-wrap{display:flex;align-items:center;gap:9px;padding:0 0 9px;border-bottom:2px solid var(--mc-text)}.athlos-full-mc__section-title-wrap--all{justify-content:space-between}.athlos-full-mc__section-title-wrap h2{margin:0!important;padding:0!important;font-size:17px!important;line-height:1.1!important;font-weight:900!important;color:var(--mc-text)}.athlos-full-mc__section-title-wrap span:not(.athlos-full-mc__live-dot){color:var(--mc-muted);font-size:12px}.athlos-full-mc__live-dot{width:9px;height:9px;border-radius:50%;background:var(--mc-live);box-shadow:0 0 0 4px rgba(215,25,45,.11)}.athlos-full-mc__top-list,.athlos-full-mc__live-list{border:1px solid var(--mc-border);border-top:0}.athlos-league-group{margin-bottom:18px;border:1px solid var(--mc-border)}.athlos-league-group__head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 12px;background:var(--mc-soft);border-bottom:1px solid var(--mc-border)}.athlos-league-group__head strong{font-size:13px;font-weight:900}.athlos-league-group__head span{color:var(--mc-muted);font-size:11px}.athlos-match-row{display:grid;grid-template-columns:76px minmax(0,1fr) 76px minmax(0,1fr);align-items:center;gap:10px;min-height:58px;padding:8px 12px;border-bottom:1px solid var(--mc-border,#dde1e8);background:#fff;text-decoration:none!important;color:var(--mc-text,#171d2b)!important}.athlos-match-row:last-child{border-bottom:0}.athlos-match-row:hover{background:#fafbfc}.athlos-match-row.is-live{box-shadow:inset 3px 0 0 var(--mc-live,#d7192d)}.athlos-match-row__time{color:var(--mc-muted,#6b7280);font-size:12px;font-weight:800;white-space:nowrap}.athlos-match-row.is-live .athlos-match-row__time{color:var(--mc-live,#d7192d)}.athlos-match-row__team{display:flex;align-items:center;gap:8px;min-width:0;font-size:14px;font-weight:750;line-height:1.15}.athlos-match-row__team--away{justify-content:flex-end;text-align:right}.athlos-match-row__team span:not(.athlos-row-logo){min-width:0;overflow-wrap:normal;word-break:normal}.athlos-match-row__score{text-align:center;font-size:16px;font-weight:900}.athlos-row-logo{width:28px;height:28px;flex:0 0 28px;display:flex;align-items:center;justify-content:center}.athlos-row-logo img{width:28px;height:28px;object-fit:contain}.athlos-row-logo--fallback{border-radius:50%;background:#f2f4f7;border:1px solid #dde1e8;color:#727986;font-size:9px;font-weight:900}
/* v0.5 mobile trigger / overlay */
.athlos-mc-trigger-wrap{width:100%}.athlos-mc-trigger{appearance:none;width:100%;min-height:40px;display:flex;align-items:center;justify-content:center;gap:8px;border:0;border-top:1px solid #dedfe3;border-bottom:1px solid #dedfe3;background:#fff;color:#171d2b;font-size:13px;font-weight:900;letter-spacing:.035em;cursor:pointer}.athlos-mc-trigger__dot{width:8px;height:8px;border-radius:50%;background:#d7192d}.athlos-mc-trigger__chevron{font-size:17px;line-height:1}.athlos-mc-overlay[hidden]{display:none!important}.athlos-mc-overlay{position:fixed;inset:0;z-index:999999}.athlos-mc-overlay__backdrop{position:absolute;inset:0;width:100%;height:100%;border:0;background:rgba(8,11,18,.62)}.athlos-mc-overlay__panel{position:absolute;left:0;right:0;bottom:0;height:min(84vh,760px);display:flex;flex-direction:column;background:#fff;border-radius:14px 14px 0 0;box-shadow:0 -10px 40px rgba(0,0,0,.18);overflow:hidden}.athlos-mc-overlay__header{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:13px 14px 11px;border-bottom:1px solid #dde1e8}.athlos-mc-overlay__header strong{display:block;font-size:18px;font-weight:900}.athlos-mc-overlay__eyebrow{display:block;color:#777f8e;font-size:10px;font-weight:800;letter-spacing:.12em}.athlos-mc-overlay__close{appearance:none;width:34px;height:34px;border:1px solid #dde1e8;border-radius:50%;background:#fff;font-size:24px;line-height:1}.athlos-mc-overlay__sports{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid #dde1e8}.athlos-mc-overlay__sports button{appearance:none;border:0;border-right:1px solid #dde1e8;background:#fff;padding:10px 4px;color:#777f8e;font-size:11px;font-weight:900}.athlos-mc-overlay__sports button:last-child{border-right:0}.athlos-mc-overlay__sports button.is-active{color:#171d2b;box-shadow:inset 0 -3px 0 #171d2b}.athlos-mc-overlay__body{flex:1 1 auto;overflow-y:auto;overscroll-behavior:contain}.athlos-mc-overlay__loading,.athlos-mc-overlay__message{min-height:160px;display:flex;align-items:center;justify-content:center;padding:20px;color:#777f8e;text-align:center}.athlos-mc-overlay__loading[hidden],.athlos-mc-overlay__message[hidden]{display:none!important}.athlos-mc-overlay__match{border-bottom:7px solid #f4f5f7}.athlos-mc-overlay__league{padding:7px 10px 3px;color:#777f8e;font-size:10px;font-weight:800}.athlos-match-row--compact{grid-template-columns:56px minmax(0,1fr) 44px minmax(0,1fr);min-height:54px;padding:7px 9px 10px;border-bottom:0}.athlos-match-row--compact .athlos-match-row__team{font-size:12px}.athlos-match-row--compact .athlos-row-logo,.athlos-match-row--compact .athlos-row-logo img{width:24px;height:24px}.athlos-match-row--compact .athlos-row-logo{flex-basis:24px}.athlos-match-row--compact .athlos-match-row__score{font-size:14px}.athlos-match-row--compact .athlos-match-row__time{font-size:10px}.athlos-mc-overlay__all{flex:0 0 auto;display:block;padding:13px 14px;background:#171d2b;color:#fff!important;text-align:center;text-decoration:none!important;font-size:12px;font-weight:900}html.athlos-mc-overlay-open,html.athlos-mc-overlay-open body{overflow:hidden!important}@media (min-width:783px){.athlos-mc-trigger-wrap{display:none}}@media (max-width:782px){.athlos-full-mc__header{align-items:flex-start;padding:0 0 13px}.athlos-full-mc__title{font-size:26px!important}.athlos-full-mc__updated{display:none}.athlos-full-mc__datebar{gap:5px;padding:11px 0}.athlos-full-mc__date-button{min-width:0;flex:1 1 auto;font-size:11px;padding:0 8px}.athlos-full-mc__today{padding:0 9px;font-size:10px}.athlos-full-mc__sports{margin-bottom:16px}.athlos-full-mc__sports button{font-size:11px;padding:11px 4px}.athlos-full-mc__section{margin-bottom:23px}.athlos-full-mc__section-title-wrap h2{font-size:15px!important}.athlos-match-row{grid-template-columns:49px minmax(0,1fr) 42px minmax(0,1fr);gap:5px;min-height:55px;padding:7px 6px}.athlos-match-row__time{font-size:10px}.athlos-match-row__team{gap:5px;font-size:12px}.athlos-match-row__score{font-size:14px}.athlos-row-logo,.athlos-row-logo img{width:24px;height:24px}.athlos-row-logo{flex-basis:24px}}

/* v0.5.1 — automatic responsive placement below Newspaper header */
.athlos-mc-auto-trigger-host{
    display:none;
    width:100%;
    margin:0;
    padding:0;
    position:relative;
    z-index:99990;
}
@media (max-width:782px){
    .athlos-mc-auto-trigger-host.is-mounted{
        display:block;
    }
    .athlos-mc-auto-trigger-host.is-mounted .athlos-mc-trigger-wrap--auto{
        display:block;
    }
}


/* v0.5.2 — mobile surface separation
   Desktop: keep Top Games carousel.
   Mobile: show only the compact Match Center trigger/overlay.
   Do NOT hide full Match Center or single-match pages. */
@media (max-width:782px){
    .athlos-mc[data-athlos-match-centre]{
        display:none !important;
    }
}


/* =========================================================
   v0.6 — SINGLE MATCH REAL DATA
   ========================================================= */
.athlos-mc-single__panel{
    min-height:180px;
    background:#fff;
}
.athlos-mc-single__loading,
.athlos-mc-single__empty{
    min-height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px 18px;
    text-align:center;
    color:#777f8e;
    font-size:14px;
}
.athlos-mc-single__loading[hidden],
.athlos-mc-single__empty[hidden]{display:none!important}
.athlos-mc-single__content{padding:0}

/* Events */
.athlos-events{padding:8px 16px 18px}
.athlos-event{
    display:grid;
    grid-template-columns:46px 34px minmax(0,1fr);
    align-items:start;
    gap:8px;
    padding:12px 0;
    border-bottom:1px solid #e3e6eb;
}
.athlos-event:last-child{border-bottom:0}
.athlos-event__time{
    font-size:13px;
    font-weight:900;
    color:#171d2b;
    text-align:right;
    padding-top:2px;
}
.athlos-event__icon{
    text-align:center;
    font-size:15px;
    font-weight:900;
}
.athlos-event__main{
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
}
.athlos-event__main strong{font-size:14px}
.athlos-event__main span{font-size:13px;color:#343b49}
.athlos-event__main small{font-size:11px;color:#7a8190}

/* v0.19.01 — football hybrid PLAY BY PLAY */
.athlos-pbp-now{
    margin:14px 16px 4px;
    border:1px solid #dfe3e9;
    background:#f8f9fb;
}
.athlos-pbp-now__title{
    padding:9px 12px;
    border-bottom:1px solid #e2e5ea;
    font-size:11px;
    font-weight:900;
    letter-spacing:.04em;
    color:#545b68;
}
.athlos-pbp-now__stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(90px,1fr));
    border-bottom:1px solid #e2e5ea;
}
.athlos-pbp-now__stats span{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:3px;
    padding:9px 7px;
    border-right:1px solid #e2e5ea;
    text-align:center;
}
.athlos-pbp-now__stats span:last-child{border-right:0}
.athlos-pbp-now__stats small{font-size:10px;color:#747b88}
.athlos-pbp-now__stats strong{font-size:13px;color:#151b28}
.athlos-pbp-now__momentum{padding:12px 14px 14px}
.athlos-pbp-now__momentum-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:8px;
}
.athlos-pbp-now__momentum-head strong{font-size:11px;letter-spacing:.055em}
.athlos-pbp-now__momentum-head small{font-size:9px;color:#8a909b;letter-spacing:.04em}
.athlos-pbp-now__momentum-values{
    display:grid;
    grid-template-columns:minmax(0,1fr) 64px minmax(0,1fr);
    gap:12px;
    align-items:end;
    margin-bottom:9px;
}
.athlos-pbp-now__momentum-values span{display:flex;align-items:baseline;gap:8px;min-width:0;font-size:11px}
.athlos-pbp-now__momentum-values span.is-home{justify-content:flex-start}
.athlos-pbp-now__momentum-values span.is-draw{justify-content:center}
.athlos-pbp-now__momentum-values span.is-away{justify-content:flex-end;text-align:right}
.athlos-pbp-now__momentum-values b{font-weight:850;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#222936}
.athlos-pbp-now__momentum-values strong{font-size:12px;font-weight:950;color:#b10f1b;white-space:nowrap}
.athlos-pbp-now__momentum-values .is-home strong{color:#245cc8}
.athlos-pbp-now__momentum-values .is-draw strong{color:#676e7a}
.athlos-pbp-now__momentum-values .is-away strong{color:#c3132d}
.athlos-pbp-now__momentum-bar{
    display:flex;
    width:100%;
    height:12px;
    overflow:hidden;
    border:1px solid #d9dde5;
    border-radius:999px;
    background:#eef0f4;
    box-shadow:inset 0 1px 2px rgba(15,23,42,.08);
}
.athlos-pbp-now__momentum-bar i{display:block;height:100%;min-width:0}
.athlos-pbp-now__momentum-bar .is-home{background:linear-gradient(90deg,#1f56c8,#3d7af1)}
.athlos-pbp-now__momentum-bar .is-draw{background:#aeb4bf}
.athlos-pbp-now__momentum-bar .is-away{background:linear-gradient(90deg,#ef6072,#c8132d)}
.athlos-pbp-now__momentum-chart{
    position:relative;
    height:150px;
    margin-top:2px;
    border:1px solid #e0e4ea;
    border-radius:8px;
    background:
        linear-gradient(to bottom,rgba(36,92,200,.025) 0 49.5%,rgba(195,19,45,.025) 50.5% 100%),
        repeating-linear-gradient(90deg,transparent 0,transparent calc(25% - 1px),rgba(105,113,128,.08) 25%);
    overflow:visible;
}
.athlos-pbp-now__momentum-chart svg{
    position:absolute;
    inset:8px 8px 20px;
    width:calc(100% - 16px);
    height:calc(100% - 28px);
    overflow:visible;
}
.athlos-pbp-now__momentum-axis{stroke:#b8bec8;stroke-width:1.2;vector-effect:non-scaling-stroke}
.athlos-pbp-now__momentum-half{stroke:#c8cdd5;stroke-width:1;stroke-dasharray:4 5;vector-effect:non-scaling-stroke}
.athlos-pbp-now__momentum-area.is-home{fill:url(#athlosMomentumHome)}
.athlos-pbp-now__momentum-area.is-away{fill:url(#athlosMomentumAway)}
.athlos-pbp-now__momentum-line{
    fill:none;
    stroke-width:2.3;
    stroke-linecap:round;
    stroke-linejoin:round;
    vector-effect:non-scaling-stroke;
}
.athlos-pbp-now__momentum-line.is-home{stroke:#1f5fe0}
.athlos-pbp-now__momentum-line.is-away{stroke:#d71935}
.athlos-pbp-now__momentum-ticks{
    position:absolute;
    left:8px;
    right:8px;
    bottom:3px;
    display:flex;
    justify-content:space-between;
    color:#7b8390;
    font-size:9px;
    font-weight:800;
}
.athlos-pbp-now__momentum-marker{
    position:absolute;
    z-index:3;
    width:8px;
    height:8px;
    margin-left:-4px;
    border-radius:50%;
    border:2px solid #fff;
    box-shadow:0 1px 4px rgba(18,24,34,.28);
    background:#656d79;
}
.athlos-pbp-now__momentum-marker.is-home{top:5px}
.athlos-pbp-now__momentum-marker.is-away{bottom:18px}
.athlos-pbp-now__momentum-marker.is-neutral{top:50%;margin-top:-4px}
.athlos-pbp-now__momentum-marker.is-goal{
    width:10px;height:10px;margin-left:-5px;background:#111827;border-color:#fff;
}
.athlos-pbp-now__momentum-marker.is-yellow{border-radius:1px;background:#e6a400}
.athlos-pbp-now__momentum-marker.is-red{border-radius:1px;background:#c9152d}
.athlos-pbp-now__momentum-marker.is-sub{background:#777f8b}
.athlos-pbp-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px 5px;
}
.athlos-pbp-head strong{font-size:12px;letter-spacing:.04em}
.athlos-pbp-head span{font-size:9px;color:#8b919d;font-weight:800}
.athlos-events--pbp{padding-top:0}
.athlos-event--shot{background:#fbfbfc}
.athlos-event--shot .athlos-event__main strong{font-weight:800;color:#343b49}
.athlos-event--shot .athlos-event__icon{color:#5e6674}
.athlos-event--checkpoint{
    margin:5px 0;
    padding:11px 8px;
    border:1px solid #e1e4e9;
    background:#f5f6f8;
}
.athlos-event--checkpoint .athlos-event__main strong{text-transform:uppercase;font-size:11px;letter-spacing:.03em}
.athlos-event--checkpoint .athlos-event__main span{line-height:1.45}
.athlos-event--major .athlos-event__main strong{font-weight:900}

/* Statistics */
.athlos-stats{padding:0 16px 18px}
.athlos-stats__head,
.athlos-stat-row{
    display:grid;
    grid-template-columns:90px minmax(0,1fr) 90px;
    align-items:center;
    text-align:center;
}
.athlos-stats__head{
    padding:13px 0;
    border-bottom:2px solid #171d2b;
}
.athlos-stats__head strong{font-size:13px}
.athlos-stats__head span{font-size:11px;color:#777f8e;font-weight:800}
.athlos-stat-row{
    min-height:44px;
    border-bottom:1px solid #e3e6eb;
}
.athlos-stat-row strong{
    font-size:14px;
    color:#171d2b;
}
.athlos-stat-row span{
    font-size:12px;
    color:#646c7a;
}

/* Lineups */
.athlos-lineups{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    padding:18px;
}
.athlos-lineup-team{
    min-width:0;
    border:1px solid #dfe3e9;
}
.athlos-lineup-team__head{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:60px;
    padding:10px 12px;
    background:#f5f6f8;
    border-bottom:1px solid #dfe3e9;
}
.athlos-lineup-team__head img{
    width:38px;height:38px;object-fit:contain;
}
.athlos-lineup-team__head div{
    display:flex;flex-direction:column;gap:2px;
}
.athlos-lineup-team__head strong{font-size:14px}
.athlos-lineup-team__head span{font-size:11px;color:#777f8e}
.athlos-lineup-team h4{
    margin:0!important;
    padding:10px 11px 6px!important;
    font-size:11px!important;
    color:#777f8e;
    letter-spacing:.05em;
}
.athlos-lineup-player{
    display:grid;
    grid-template-columns:30px minmax(0,1fr);
    align-items:start;
    gap:5px;
    padding:7px 11px;
    border-top:1px solid #eef0f3;
}
.athlos-lineup-player__number{
    width:24px;height:24px;
    display:flex;align-items:center;justify-content:center;
    border-radius:50%;
    background:#171d2b;
    color:#fff;
    font-size:10px;
    font-weight:900;
}
.athlos-lineup-player span:last-child{
    display:flex;flex-direction:column;
}
.athlos-lineup-player strong{font-size:12px;line-height:1.2}
.athlos-lineup-player small{font-size:10px;color:#818896}

/* Standings */
.athlos-standings-group{padding:14px 16px 20px}
.athlos-standings-group h3{
    margin:0 0 9px!important;
    font-size:14px!important;
}
.athlos-standing{
    display:grid;
    grid-template-columns:34px minmax(150px,1fr) repeat(5,44px) 54px 58px 58px;
    align-items:center;
    gap:4px;
    min-height:39px;
    padding:4px 7px;
    border-bottom:1px solid #e4e7ec;
    font-size:11px;
    text-align:center;
}
.athlos-standing--head{
    min-height:32px;
    background:#f5f6f8;
    color:#747c8a;
    font-weight:900;
}
.athlos-standing.is-highlighted{
    background:#fff6f6;
    box-shadow:inset 3px 0 0 #d7192d;
}
.athlos-standing__team{
    display:flex;
    align-items:center;
    gap:7px;
    min-width:0;
    text-align:left;
}
.athlos-standing__team img{
    width:23px;height:23px;object-fit:contain;flex:0 0 23px;
}
.athlos-standing__team strong{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/* Generic summary */
.athlos-summary-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding:16px;
}
.athlos-summary-item{
    display:flex;flex-direction:column;gap:4px;
    padding:12px;
    border:1px solid #e1e4e9;
    text-align:center;
}
.athlos-summary-item span{font-size:11px;color:#777f8e}
.athlos-summary-item strong{font-size:15px}

@media (max-width:782px){
    .athlos-events{padding:5px 10px 14px}
    .athlos-event{
        grid-template-columns:38px 28px minmax(0,1fr);
        gap:5px;
        padding:10px 0;
    }
    .athlos-event__time{font-size:11px}
    .athlos-event__main strong{font-size:13px}
    .athlos-event__main span{font-size:12px}
    .athlos-pbp-now{margin:10px 10px 2px}
    .athlos-pbp-now__stats{grid-template-columns:repeat(2,1fr)}
    .athlos-pbp-now__stats span{border-bottom:1px solid #e2e5ea}
    .athlos-pbp-now__momentum{padding:10px 10px 12px}
    .athlos-pbp-now__momentum-values{grid-template-columns:minmax(0,1fr) 34px minmax(0,1fr);gap:5px;margin-bottom:7px}
    .athlos-pbp-now__momentum-values span{font-size:9.5px;gap:4px}
    .athlos-pbp-now__momentum-values strong{font-size:10.5px}
    .athlos-pbp-now__momentum-chart{height:126px}
    .athlos-pbp-now__momentum-chart svg{inset:7px 6px 19px;width:calc(100% - 12px);height:calc(100% - 26px)}
    .athlos-pbp-head{padding:12px 10px 4px}
    .athlos-event--checkpoint{margin:4px 0;padding:9px 5px}

    .athlos-stats{padding:0 8px 14px}
    .athlos-stats__head,
    .athlos-stat-row{
        grid-template-columns:65px minmax(0,1fr) 65px;
    }
    .athlos-stats__head strong{font-size:11px}
    .athlos-stat-row strong{font-size:13px}
    .athlos-stat-row span{font-size:11px}

    .athlos-lineups{
        grid-template-columns:1fr;
        gap:12px;
        padding:10px;
    }

    .athlos-standings-group{
        padding:10px 0 14px;
        overflow-x:auto;
    }
    .athlos-standing{
        min-width:720px;
    }

    .athlos-summary-grid{
        grid-template-columns:repeat(2,1fr);
        padding:10px;
    }
}


/* =========================================================
   v0.7 — SUBCATEGORIES + DESKTOP HEADER MENU
   ========================================================= */
.athlos-full-mc__subnav,
.athlos-full-mc__viewnav{
    display:flex;
    align-items:center;
    gap:6px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:0 0 12px;
}
.athlos-full-mc__subnav::-webkit-scrollbar,
.athlos-full-mc__viewnav::-webkit-scrollbar{display:none}
.athlos-full-mc__subnav button,
.athlos-full-mc__viewnav button{
    appearance:none;
    border:1px solid #dde1e8;
    background:#fff;
    color:#5e6675;
    border-radius:999px;
    min-height:32px;
    padding:0 13px;
    white-space:nowrap;
    font-size:11px;
    font-weight:900;
    cursor:pointer;
}
.athlos-full-mc__subnav button.is-active,
.athlos-full-mc__viewnav button.is-active{
    background:#171d2b;
    border-color:#171d2b;
    color:#fff;
}
.athlos-full-mc__viewnav{
    border-top:1px solid #eef0f3;
    padding-top:11px;
    margin-bottom:8px;
}
.athlos-full-mc__tiny-live{
    display:inline-block;width:7px;height:7px;border-radius:50%;background:#d7192d;margin-right:3px;
}

.athlos-mc-desktop-access{
    position:relative;
    display:none;
    align-items:center;
    margin-right:10px;
    z-index:99990;
    font-family:inherit;
}
.athlos-mc-desktop-button{
    appearance:none;
    display:flex;
    align-items:center;
    gap:7px;
    min-height:38px;
    padding:0 14px;
    border:0;
    border-radius:22px;
    background:#1c1c1f;
    color:#fff;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
    white-space:nowrap;
}
.athlos-mc-desktop-button__dot{
    width:7px;height:7px;border-radius:50%;background:#d7192d;
}
.athlos-mc-desktop-button__chevron{font-size:14px;opacity:.8}
.athlos-mc-desktop-access.has-live .athlos-mc-desktop-button{
    background:#b90f20;
}
.athlos-mc-desktop-menu[hidden]{display:none!important}
.athlos-mc-desktop-menu{
    position:absolute;
    top:calc(100% + 9px);
    right:0;
    width:420px;
    max-height:min(72vh,620px);
    overflow-y:auto;
    background:#fff;
    color:#171d2b;
    border:1px solid #dfe3e9;
    border-radius:7px;
    box-shadow:0 14px 38px rgba(0,0,0,.18);
    text-align:left;
}
.athlos-mc-desktop-menu a{text-decoration:none!important}
.athlos-mc-desktop-menu__head{
    display:flex;justify-content:space-between;align-items:center;gap:12px;
    min-height:48px;padding:10px 13px;border-bottom:1px solid #e3e6eb;
}
.athlos-mc-desktop-menu__head strong{font-size:16px;font-weight:900}
.athlos-mc-desktop-menu__head a{font-size:10px;font-weight:900;color:#626a78!important}
.athlos-mc-desktop-menu__primary{
    display:flex;align-items:center;gap:7px;min-height:40px;padding:0 13px;
    border-bottom:1px solid #eef0f3;color:#171d2b!important;font-size:12px;font-weight:850;
}
.athlos-mc-desktop-menu__primary:hover{background:#f6f7f9}
.athlos-mc-desktop-menu__live-dot{width:7px;height:7px;border-radius:50%;background:#d7192d}
.athlos-mc-desktop-menu__grid{
    display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid #e3e6eb;
}
.athlos-mc-desktop-menu__grid section{padding:12px;border-right:1px solid #eef0f3}
.athlos-mc-desktop-menu__grid section:last-child{border-right:0}
.athlos-mc-desktop-menu__grid h4{margin:0 0 8px!important;font-size:10px!important;color:#7a8290;letter-spacing:.04em}
.athlos-mc-desktop-menu__grid a{display:block;padding:5px 0;color:#171d2b!important;font-size:11px;font-weight:750;line-height:1.15}
.athlos-mc-desktop-menu__grid a:hover{text-decoration:underline!important}
.athlos-mc-desktop-menu__leagues{padding:11px 13px 13px}
.athlos-mc-desktop-menu__leagues>strong{display:block;margin-bottom:8px;font-size:10px;color:#7a8290}
.athlos-mc-desktop-menu__leagues>div{display:flex;flex-wrap:wrap;gap:6px}
.athlos-mc-desktop-menu__leagues a{
    display:inline-flex;align-items:center;min-height:28px;padding:0 9px;border:1px solid #dfe3e9;border-radius:4px;color:#171d2b!important;font-size:10px;font-weight:800;
}
.athlos-mc-desktop-menu__leagues a:hover{background:#f5f6f8}

@media (min-width:783px){
    .athlos-mc-desktop-access{display:flex}
    .athlos-mc-trigger-wrap--auto .athlos-mc-trigger,
    .athlos-mc-trigger-wrap--auto > .athlos-mc-overlay{display:none!important}
    .athlos-mc-auto-trigger-host{height:0!important;min-height:0!important;overflow:visible!important;border:0!important;margin:0!important;padding:0!important}
    .athlos-mc-desktop-access.is-header-fallback{position:absolute;top:16px;right:145px}
}

@media (max-width:782px){
    .athlos-mc-desktop-access{display:none!important}
    .athlos-full-mc__subnav button,
    .athlos-full-mc__viewnav button{min-height:30px;padding:0 11px;font-size:10px}
}


/* =========================================================
   v0.8 — RICH FOOTBALL MATCH PAGE
   ========================================================= */
.athlos-mc-single__quickfacts{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    border-top:1px solid #e2e5ea;
    border-bottom:1px solid #e2e5ea;
    background:#fafbfc;
}
.athlos-mc-single__quickfacts>div{
    min-width:0;
    padding:10px 12px;
    text-align:center;
    border-right:1px solid #e2e5ea;
}
.athlos-mc-single__quickfacts>div:last-child{border-right:0}
.athlos-mc-single__quickfacts span{
    display:block;font-size:10px;font-weight:900;color:#818896;letter-spacing:.04em;margin-bottom:3px;
}
.athlos-mc-single__quickfacts strong{
    display:block;font-size:12px;line-height:1.25;color:#171d2b;
}
.athlos-mc-single__prediction{
    padding:12px 16px 14px;
    background:#fff;
    border-bottom:1px solid #e2e5ea;
}
.athlos-mc-single__prediction-head{
    display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px;
}
.athlos-mc-single__prediction-head strong{font-size:12px;letter-spacing:.04em}
.athlos-mc-single__prediction-head span{font-size:10px;color:#818896}
.athlos-mc-single__prediction-values{
    display:grid;grid-template-columns:1fr auto 1fr;gap:8px;align-items:end;font-size:11px;margin-bottom:8px;
}
.athlos-mc-single__prediction-values span{display:flex;flex-direction:column;gap:1px}
.athlos-mc-single__prediction-values span:last-child{text-align:right;align-items:flex-end}
.athlos-mc-single__prediction-values .is-draw{text-align:center;align-items:center;color:#737b89}
.athlos-mc-single__prediction-values b{font-size:16px;color:#171d2b}
.athlos-mc-single__prediction-bar{height:7px;display:flex;overflow:hidden;border-radius:999px;background:#e8ebef}
.athlos-mc-single__prediction-bar i{display:block;background:#d7192d}
.athlos-mc-single__prediction-bar i.is-draw{background:#b6bdc8}
.athlos-mc-single__prediction-bar i.is-away{background:#171d2b}

/* Wider scrollable tab row */
.athlos-mc-single__tabs{
    scrollbar-width:none;
    overflow-x:auto;
}
.athlos-mc-single__tabs::-webkit-scrollbar{display:none}
.athlos-mc-single__tabs button{flex:0 0 auto}

/* Overview */
.athlos-overview{padding:16px}
.athlos-overview-grid{
    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;
}
.athlos-overview-grid>div{
    padding:12px;border:1px solid #e1e4e9;background:#fafbfc;
}
.athlos-overview-grid span{display:block;font-size:10px;color:#7c8492;font-weight:800;margin-bottom:4px}
.athlos-overview-grid strong{font-size:13px;line-height:1.25}
.athlos-overview-model{
    margin-top:12px;padding:13px;border:1px solid #e1e4e9;
}
.athlos-overview-model>div:first-child{display:flex;justify-content:space-between;gap:10px;margin-bottom:10px}
.athlos-overview-model>div:first-child strong{font-size:12px}
.athlos-overview-model>div:first-child span{font-size:10px;color:#7c8492}
.athlos-overview-model__values{display:grid;grid-template-columns:1fr 1fr 1fr;text-align:center;gap:8px}
.athlos-overview-model__values span{display:flex;flex-direction:column;gap:3px;font-size:10px;color:#656d7a}
.athlos-overview-model__values b{font-size:18px;color:#171d2b}

/* Form */
.athlos-form-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:16px;
}
.athlos-form-team{border:1px solid #e0e4e9;min-width:0}
.athlos-form-team__head{
    display:grid;grid-template-columns:38px minmax(0,1fr) auto;align-items:center;gap:9px;
    padding:10px;background:#f7f8fa;border-bottom:1px solid #e0e4e9;
}
.athlos-form-team__logo{
    width:34px;height:34px;display:flex;align-items:center;justify-content:center;min-width:34px;
}
.athlos-form-team__logo img{width:34px;height:34px;object-fit:contain}
.athlos-form-team__logo span{
    width:34px;height:34px;display:flex;align-items:center;justify-content:center;
    border:1px solid #d7dce3;border-radius:50%;background:#f2f4f7;
    color:#687180;font-size:10px;font-weight:800;
}
.athlos-form-team__identity{
    min-width:0;display:flex;flex-direction:column;gap:2px;
}
.athlos-form-team__identity strong{
    min-width:0;font-size:13px;line-height:1.15;overflow-wrap:normal;word-break:normal;hyphens:none;
}
.athlos-form-team__identity span{font-size:10px;color:#7b8391}
.athlos-form-badges{
    display:flex;align-items:center;justify-content:flex-end;gap:3px;flex-wrap:nowrap;white-space:nowrap;
}
.athlos-form-badges b,.athlos-form-game__result{
    width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;border-radius:3px;
    background:#b8bec8;color:#fff;font-size:10px;
}
.athlos-form-badges .is-w,.athlos-form-game__result.is-w{background:#178a4b}
.athlos-form-badges .is-d,.athlos-form-game__result.is-d{background:#8b93a0}
.athlos-form-badges .is-l,.athlos-form-game__result.is-l{background:#cf263b}
.athlos-form-game{
    display:grid;grid-template-columns:42px 24px minmax(0,1fr) 52px;gap:6px;align-items:center;
    min-height:42px;padding:5px 8px;border-bottom:1px solid #edf0f3;font-size:11px;
}
.athlos-form-game:last-child{border-bottom:0}
.athlos-form-game>span:first-child{color:#858c99}
.athlos-form-game__opponent{display:flex;align-items:center;gap:5px;min-width:0}
.athlos-form-game__opponent img{width:20px;height:20px;object-fit:contain}
.athlos-form-game>strong{text-align:right;font-size:12px}

/* H2H */
.athlos-h2h{padding:12px 16px 18px}
.athlos-h2h__title{font-size:11px;font-weight:900;color:#7b8391;margin-bottom:7px}
.athlos-h2h-game{
    display:grid;grid-template-columns:74px minmax(0,1fr) 58px minmax(0,1fr);gap:8px;align-items:center;
    min-height:48px;border-bottom:1px solid #e6e9ed;font-size:11px;
}
.athlos-h2h-game__date{color:#818896}
.athlos-h2h-game__team{display:flex;align-items:center;gap:6px;min-width:0}
.athlos-h2h-game__team.is-away{justify-content:flex-end;text-align:right}
.athlos-h2h-game__team img{width:23px;height:23px;object-fit:contain;flex:0 0 23px}
.athlos-h2h-game__score{text-align:center;font-size:14px}
.athlos-h2h-game small{grid-column:2 / 4;text-align:center;color:#969ca7;margin-top:-7px;padding-bottom:4px}

/* Video */
.athlos-video-grid{
    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;padding:16px;
}
.athlos-video-card{
    display:block;border:1px solid #e1e4e9;text-decoration:none!important;color:#171d2b!important;background:#fff;
}
.athlos-video-card__image{position:relative;aspect-ratio:16/9;background:#111827;overflow:hidden;display:flex;align-items:center;justify-content:center}
.athlos-video-card__image img{width:100%;height:100%;object-fit:cover}
.athlos-video-card__image>span{color:#fff;font-size:29px}
.athlos-video-card__image i{
    position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
    width:34px;height:34px;border-radius:50%;background:rgba(0,0,0,.72);color:#fff;
    display:flex;align-items:center;justify-content:center;font-style:normal;font-size:14px;
}
.athlos-video-card__body{display:flex;flex-direction:column;gap:4px;padding:10px}
.athlos-video-card__body>span{font-size:9px;font-weight:900;color:#d7192d}
.athlos-video-card__body strong{font-size:12px;line-height:1.25}
.athlos-video-card__body small{font-size:10px;color:#7b8391;line-height:1.3}

@media(max-width:782px){
    .athlos-mc-single__quickfacts{grid-template-columns:repeat(2,minmax(0,1fr))}
    .athlos-mc-single__quickfacts>div:nth-child(2n){border-right:0}
    .athlos-mc-single__quickfacts>div:nth-child(n+3){border-top:1px solid #e2e5ea}
    .athlos-mc-single__prediction{padding:10px}
    .athlos-mc-single__prediction-values{font-size:10px}
    .athlos-mc-single__prediction-values b{font-size:14px}
    .athlos-overview{padding:10px}
    .athlos-overview-grid{grid-template-columns:1fr 1fr}
    .athlos-form-grid{grid-template-columns:1fr;padding:10px}
    .athlos-h2h{padding:8px 8px 14px}
    .athlos-h2h-game{grid-template-columns:50px minmax(0,1fr) 42px minmax(0,1fr);gap:4px;font-size:10px}
    .athlos-h2h-game__team img{width:20px;height:20px}
    .athlos-video-grid{grid-template-columns:1fr 1fr;gap:8px;padding:10px}
}
@media(max-width:430px){
    .athlos-video-grid{grid-template-columns:1fr}
}


/* v0.8.1 — Newspaper desktop header anchor fix */
@media (min-width:783px){
    .athlos-mc-desktop-access.is-search-anchored{
        position:absolute!important;
        z-index:99995!important;
        margin:0!important;
    }
    .athlos-mc-desktop-access.athlos-desktop-unmounted{
        display:none!important;
    }

    /* The footer host must never create a desktop bar/strip. */
    .athlos-mc-auto-trigger-host{
        display:none!important;
        height:0!important;
        min-height:0!important;
        margin:0!important;
        padding:0!important;
        border:0!important;
    }
}

/* =========================================================
   v0.9 — real editable match posts + reliable desktop access
   ========================================================= */
@media (min-width:783px){
    .athlos-mc-desktop-access.is-body-search-anchored{
        position:absolute!important;
        z-index:999999!important;
        display:flex!important;
        margin:0!important;
    }
}

.athlos-match-template-shell{
    width:100%;
    max-width:1224px;
    margin:0 auto;
    padding:0 15px 40px;
}
.athlos-match-editorial{
    margin-top:20px;
    border-top:1px solid #e1e4e9;
    background:#fff;
}
.athlos-match-editorial__inner{
    padding:20px;
    font-size:16px;
    line-height:1.65;
}

.athlos-home-match-card{
    display:block;
    width:100%;
    border:1px solid #dfe3e9;
    background:#fff;
    color:#171d2b!important;
    text-decoration:none!important;
    padding:10px 12px;
}
.athlos-home-match-card:hover{
    border-color:#b8bec9;
    box-shadow:0 3px 12px rgba(24,32,51,.08);
}
.athlos-home-match-card__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
    color:#697180;
    font-size:11px;
}
.athlos-home-match-card__top strong{font-size:11px;color:#171d2b}
.athlos-home-match-card__body{
    display:grid;
    grid-template-columns:minmax(0,1fr) 64px minmax(0,1fr);
    align-items:center;
    gap:8px;
}
.athlos-home-match-card__team{
    display:flex;
    align-items:center;
    gap:7px;
    min-width:0;
    font-size:13px;
    line-height:1.15;
}
.athlos-home-match-card__team--away{
    justify-content:flex-end;
    text-align:right;
}
.athlos-home-match-card__team .athlos-mc-single__logo,
.athlos-home-match-card__team .athlos-mc-single__logo img{
    width:30px;
    height:30px;
    flex:0 0 30px;
}
.athlos-home-match-card__score{
    text-align:center;
    font-size:15px;
    font-weight:900;
}

@media (max-width:782px){
    .athlos-match-template-shell{padding:0 0 30px}
    .athlos-home-match-card__body{grid-template-columns:minmax(0,1fr) 48px minmax(0,1fr)}
    .athlos-home-match-card__team{font-size:12px}
}


/* =========================================================
   v0.9.3 — STABLE PLACEMENT / NO DYNAMIC TAGDIV EXPERIMENT
   ========================================================= */
@media (min-width:783px){
    /* The automatic footer trigger is MOBILE ONLY. */
    .athlos-mc-trigger-wrap--auto .athlos-mc-desktop-access{
        display:none!important;
    }
    .athlos-mc-auto-trigger-host{
        display:none!important;
        height:0!important;
        min-height:0!important;
        margin:0!important;
        padding:0!important;
        border:0!important;
    }

    /* Manual desktop shortcode stays exactly inside the TagDiv element chosen by the editor. */
    .athlos-mc-desktop-nav-root{
        display:inline-flex;
        width:auto;
        position:relative;
        z-index:99999;
        vertical-align:middle;
    }
    .athlos-mc-desktop-nav-root .athlos-mc-desktop-access{
        display:flex!important;
        position:relative!important;
        left:auto!important;
        top:auto!important;
        right:auto!important;
        margin:0!important;
    }
}
@media (max-width:782px){
    .athlos-mc-desktop-nav-root{display:none!important}
}


/* =========================================================
   v0.9.4 — BASKETBALL CAROUSEL CARD
   Basketball needs a vertical scoreboard layout because
   2–3 digit scores and long club names do not fit safely in
   the football home / score / away three-column pattern.
   ========================================================= */
.athlos-mc__card--basketball{
    min-height:146px;
}
.athlos-mc__card--basketball .athlos-mc__league{
    margin-bottom:7px;
}
.athlos-mc__basketball-list{
    display:flex;
    flex-direction:column;
    gap:1px;
}
.athlos-mc__basketball-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) 38px;
    align-items:center;
    gap:8px;
    min-height:39px;
    padding:3px 0;
}
.athlos-mc__basketball-row + .athlos-mc__basketball-row{
    border-top:1px solid #eef0f3;
}
.athlos-mc__basketball-team{
    display:flex;
    align-items:center;
    gap:7px;
    min-width:0;
}
.athlos-mc__basketball-team .athlos-mc__team-name{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    min-width:0;
    font-size:12.5px;
    line-height:1.12;
    text-align:left;
}
.athlos-mc__basketball-score{
    display:block;
    min-width:32px;
    text-align:right;
    font-size:19px;
    line-height:1;
    font-weight:900;
    color:var(--athlos-text);
    white-space:nowrap;
}
.athlos-mc__card--basketball.is-live .athlos-mc__basketball-score{
    color:var(--athlos-live);
}

@media (max-width:782px){
    .athlos-mc__card--basketball{
        min-height:145px;
    }
    .athlos-mc__basketball-row{
        grid-template-columns:minmax(0,1fr) 42px;
        min-height:41px;
    }
    .athlos-mc__basketball-team .athlos-mc__team-name{
        font-size:13px;
    }
    .athlos-mc__basketball-score{
        font-size:20px;
    }
}


/* v0.9.5 — full match embed inside normal WordPress/TagDiv posts */
.athlos-match-full-embed{
    width:100%;
    margin:18px 0;
}
.athlos-match-full-embed .athlos-mc--single{
    width:100%;
}
.athlos-mc-single__topbar.is-embedded{
    justify-content:flex-end;
}
@media (max-width:782px){
    .athlos-match-full-embed{margin:12px 0;}
}


/* v0.9.6 — manual desktop nav: pulse only when real live action exists */
@keyframes athlos-mc-live-pulse {
    0%, 100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(215,25,45,.42); }
    50% { opacity:.42; transform:scale(.82); box-shadow:0 0 0 5px rgba(215,25,45,0); }
}
@media (min-width:783px){
    .athlos-mc-desktop-access--manual:not(.has-live) .athlos-mc-desktop-button__dot{
        background:#777f8e;
        box-shadow:none;
        animation:none;
    }
    .athlos-mc-desktop-access--manual.has-live .athlos-mc-desktop-button__dot{
        background:#d7192d;
        animation:athlos-mc-live-pulse 1.15s ease-in-out infinite;
    }
}


/* v0.9.8 — stable form header even when Highlightly has no team logo */
@media(max-width:520px){
    .athlos-form-team__head{
        grid-template-columns:34px minmax(0,1fr);
    }
    .athlos-form-badges{
        grid-column:1 / -1;
        justify-content:flex-start;
        padding-top:3px;
    }
}


@media (max-width:390px){
    .athlos-mc__topline{gap:8px}
    .athlos-mc__title-wrap{gap:6px}
    .athlos-mc__title{font-size:15px!important}
    .athlos-mc__live-dot{width:8px;height:8px}
    .athlos-mc__all-link{
        padding:0 7px;
        font-size:9.5px;
    }
}


/* ============================================================
   v0.10.2 — TOP GAMES COMPACT STRIP
   Homepage carousel only. Match pages/full Match Center untouched.
   ============================================================ */

.athlos-mc[data-athlos-match-centre]{
    overflow:hidden;
}

/* Thin first row */
.athlos-mc[data-athlos-match-centre] .athlos-mc__topline{
    min-height:38px;
    padding:5px 9px;
    gap:10px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__title-wrap{
    gap:7px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__live-dot{
    width:8px;
    height:8px;
    box-shadow:0 0 0 3px rgba(217,35,50,.10);
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__title{
    font-size:15px!important;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__all-link{
    min-height:27px;
    padding:0 9px;
    border-radius:4px;
    font-size:10px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__arrow{
    width:31px;
    height:27px;
    border-radius:4px;
    font-size:21px;
}

/* Sports and competition live in one row on desktop. */
.athlos-mc[data-athlos-match-centre] .athlos-mc__filters{
    display:flex;
    align-items:stretch;
    min-height:34px;
    border-bottom:1px solid var(--athlos-border);
    background:#fff;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__tabs{
    flex:0 0 auto;
    border-bottom:0;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__tab{
    min-height:33px;
    padding:7px 14px;
    font-size:11px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar{
    flex:1 1 auto;
    justify-content:flex-end;
    min-width:0;
    padding:3px 8px;
    gap:6px;
    border:0;
    border-left:1px solid var(--athlos-border);
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar label{
    display:none;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar select{
    width:min(300px,100%);
    min-height:27px;
    height:27px;
    padding:2px 27px 2px 8px;
    border-radius:3px;
    font-size:10.5px;
}

/* No card area: this is one continuous horizontal score strip. */
.athlos-mc[data-athlos-match-centre] .athlos-mc__body{
    padding:0;
    min-height:76px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__rail{
    gap:0;
    padding:0;
    scroll-snap-type:x proximity;
    background:#fff;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__card,
.athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
    flex:0 0 225px;
    width:225px;
    min-width:225px;
    min-height:76px;
    height:76px;
    margin:0;
    padding:5px 9px 6px;
    border:0;
    border-right:1px solid var(--athlos-border);
    border-radius:0;
    background:#fff;
    box-shadow:none;
    overflow:hidden;
    scroll-snap-align:start;
    transform:none;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__card:first-child{
    border-left:0;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__card:hover{
    border-color:var(--athlos-border);
    box-shadow:inset 0 0 0 999px rgba(24,32,51,.025);
    transform:none;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__card.is-live{
    border-color:var(--athlos-border);
    box-shadow:inset 3px 0 0 var(--athlos-live);
}

/* One tiny meta row: date | competition | time/status */
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-meta{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:6px;
    height:17px;
    margin-bottom:2px;
    color:var(--athlos-muted);
    font-size:9.5px;
    line-height:1;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-date{
    color:var(--athlos-text);
    font-weight:800;
    white-space:nowrap;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-league{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-align:center;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-status{
    color:var(--athlos-muted);
    font-weight:800;
    white-space:nowrap;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__card.is-live .athlos-mc__strip-status{
    color:var(--athlos-live);
}

/* Two team rows, like a score ticker. */
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team{
    display:grid;
    grid-template-columns:20px minmax(0,1fr) 24px;
    align-items:center;
    gap:6px;
    height:25px;
    min-width:0;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team + .athlos-mc__strip-team{
    border-top:1px solid #f0f1f4;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap,
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo{
    width:19px;
    height:19px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap{
    flex-basis:19px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap--fallback{
    font-size:7.5px;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team-name{
    display:block;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:var(--athlos-text);
    font-size:11.5px;
    line-height:1;
    font-weight:700;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-score{
    display:block;
    text-align:right;
    color:var(--athlos-text);
    font-size:13px;
    line-height:1;
    font-weight:900;
    white-space:nowrap;
}
.athlos-mc[data-athlos-match-centre] .athlos-mc__card.is-live .athlos-mc__strip-score{
    color:var(--athlos-live);
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__loading,
.athlos-mc[data-athlos-match-centre] .athlos-mc__message{
    min-height:76px;
    padding:10px;
    font-size:12px;
}

/* Wider desktop: show roughly 5–6 matches instead of four cards. */
@media (min-width:1200px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex-basis:215px;
        width:215px;
        min-width:215px;
    }
}

/* Tablet: still a strip; controls may breathe a little less. */
@media (max-width:900px) and (min-width:783px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__tab{
        padding-left:10px;
        padding-right:10px;
        font-size:10.5px;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar select{
        width:min(245px,100%);
    }
}

/* Mobile stays compact instead of returning to the old tall cards. */
@media (max-width:782px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__topline{
        min-height:37px;
        padding:5px 8px;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__title{
        font-size:14px!important;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__filters{
        display:block;
        min-height:0;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__tabs{
        width:100%;
        border-bottom:1px solid var(--athlos-border);
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__tab{
        min-height:31px;
        padding:6px 4px;
        font-size:10.5px;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar{
        min-height:34px;
        padding:3px 8px;
        border-left:0;
        justify-content:stretch;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar select{
        width:100%;
        max-width:none;
        height:27px;
        min-height:27px;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__body{
        min-height:76px;
        padding:0;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__rail{
        gap:0;
        padding-right:42px;
        scroll-snap-type:x mandatory;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex:0 0 218px;
        width:218px;
        min-width:218px;
        min-height:76px;
        height:76px;
        padding:5px 8px 6px;
    }
    .athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team-name{
        font-size:11px;
    }
}

@media (max-width:390px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__all-link{
        min-height:25px;
        padding:0 6px;
        font-size:9px;
    }
}


/* ============================================================
   v0.10.3 — FINAL TOP GAMES STRIP POLISH
   ============================================================ */

.athlos-mc[data-athlos-match-centre] .athlos-mc__topline{
    min-height:35px;
    padding:4px 8px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__title{
    font-size:14.5px!important;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__all-link{
    min-height:24px;
    padding:0 5px;
    border:0;
    border-radius:0;
    background:transparent;
    font-size:10px;
    letter-spacing:.02em;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__all-link:hover{
    background:transparent;
    text-decoration:underline!important;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__all-link-arrow{
    font-size:14px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__arrow{
    width:29px;
    height:25px;
    font-size:19px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__filters{
    min-height:31px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__tab{
    min-height:30px;
    padding:6px 13px;
    font-size:10.5px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar{
    padding:2px 7px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar select{
    width:min(285px,100%);
    min-height:25px;
    height:25px;
    padding-top:1px;
    padding-bottom:1px;
    font-size:10px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__body{
    min-height:68px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__card,
.athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
    flex:0 0 205px;
    width:205px;
    min-width:205px;
    min-height:68px;
    height:68px;
    padding:3px 8px 4px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-meta{
    height:15px;
    margin-bottom:1px;
    gap:5px;
    font-size:9px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team{
    grid-template-columns:18px minmax(0,1fr) 20px;
    gap:5px;
    height:24px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap,
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo{
    width:17px;
    height:17px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap{
    flex-basis:17px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team-name{
    font-size:11px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-score{
    font-size:12px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__loading,
.athlos-mc[data-athlos-match-centre] .athlos-mc__message{
    min-height:68px;
}

/* On wide desktop we target roughly six visible match cells. */
@media (min-width:1200px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex-basis:200px;
        width:200px;
        min-width:200px;
    }
}

/* Keep tablet readable rather than forcing six cells. */
@media (max-width:1199px) and (min-width:783px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex-basis:205px;
        width:205px;
        min-width:205px;
    }
}

/* Mobile remains compact but leaves a touch more room for team names. */
@media (max-width:782px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__topline{
        min-height:34px;
        padding:4px 7px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__title{
        font-size:13.5px!important;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar{
        min-height:31px;
        padding:2px 7px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar select{
        height:25px;
        min-height:25px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__body{
        min-height:68px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex:0 0 205px;
        width:205px;
        min-width:205px;
        min-height:68px;
        height:68px;
        padding:3px 7px 4px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team-name{
        font-size:10.8px;
    }
}


/* ============================================================
   v0.11.0-beta — FULL MATCH CENTER PHASE 1
   ============================================================ */

.athlos-full-mc{
    max-width:100%;
}

.athlos-full-mc__header{
    padding-top:0;
}

.athlos-full-mc__datebar{
    position:relative;
    margin-bottom:4px;
}

.athlos-full-mc__filters{
    display:flex;
    align-items:stretch;
    gap:0;
    margin-bottom:8px;
    border:1px solid var(--mc-border);
    background:#fff;
}

.athlos-full-mc__subnav{
    flex:1 1 auto;
    min-width:0;
    border:0!important;
    margin:0!important;
}

.athlos-full-mc__subnav button{
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.athlos-full-mc__subnav button span{
    min-width:16px;
    padding:1px 4px;
    border-radius:999px;
    background:#eef0f3;
    color:#6b7280;
    font-size:9px;
    line-height:1.4;
    text-align:center;
}

.athlos-full-mc__subnav button.is-active span{
    background:rgba(255,255,255,.18);
    color:inherit;
}

.athlos-full-mc__league-filter{
    flex:0 0 min(310px,34%);
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:7px;
    padding:5px 8px;
    border-left:1px solid var(--mc-border);
}

.athlos-full-mc__league-filter label{
    color:var(--mc-muted);
    font-size:9px;
    line-height:1;
    font-weight:800;
    letter-spacing:.04em;
}

.athlos-full-mc__league-filter select{
    width:100%;
    min-width:0;
    height:29px;
    border:1px solid var(--mc-border);
    border-radius:4px;
    background:#fff;
    color:var(--mc-text);
    padding:2px 28px 2px 8px;
    font-family:inherit;
    font-size:11px;
    font-weight:750;
}

.athlos-full-mc__league-filter select:disabled{
    opacity:.55;
}

.athlos-full-mc__viewnav{
    margin-bottom:19px!important;
}

.athlos-full-mc__viewnav button [data-athlos-full-live-count]{
    margin-left:2px;
    color:inherit;
    font-size:9px;
}

.athlos-full-mc__section{
    margin-bottom:22px;
}

.athlos-league-group{
    margin-bottom:12px;
    border-radius:4px;
    overflow:hidden;
}

.athlos-league-group__head{
    min-height:34px;
    padding:7px 10px;
}

.athlos-full-mc__updated{
    max-width:360px;
    text-align:right;
}

/* Full Match Center rows stay information-dense, but more readable than carousel. */
.athlos-full-mc .athlos-match-row{
    min-height:55px;
}

@media(max-width:782px){
    .athlos-full-mc__filters{
        display:block;
        border-left:0;
        border-right:0;
    }

    .athlos-full-mc__subnav{
        width:100%;
        border-bottom:1px solid var(--mc-border)!important;
    }

    .athlos-full-mc__league-filter{
        width:100%;
        max-width:none;
        min-height:38px;
        padding:4px 6px;
        border-left:0;
    }

    .athlos-full-mc__league-filter label{
        display:none;
    }

    .athlos-full-mc__league-filter select{
        height:29px;
    }

    .athlos-full-mc__viewnav{
        margin-bottom:15px!important;
    }

    .athlos-full-mc__datebar{
        padding-top:8px;
        padding-bottom:8px;
    }

    .athlos-full-mc__date-arrow{
        width:34px;
        height:33px;
    }

    .athlos-full-mc__date-button,
    .athlos-full-mc__today{
        height:33px;
    }

    .athlos-league-group{
        margin-left:-1px;
        margin-right:-1px;
        border-radius:0;
    }
}


/* ============================================================
   v0.11.1-beta — LIVE-FIRST + LIGHTWEIGHT LIVE PULSE
   ============================================================ */

@keyframes athlos-mc-live-pulse{
    0%{
        box-shadow:0 0 0 0 rgba(220,34,50,.42);
        opacity:1;
    }
    55%{
        box-shadow:0 0 0 5px rgba(220,34,50,0);
        opacity:.92;
    }
    100%{
        box-shadow:0 0 0 0 rgba(220,34,50,0);
        opacity:1;
    }
}

/* Full Match Center LIVE tab */
.athlos-full-mc__tiny-live{
    width:7px;
    height:7px;
    display:inline-block;
    flex:0 0 7px;
    border-radius:50%;
    background:#aeb4bf;
    vertical-align:middle;
    animation:none;
}
.athlos-full-mc__tiny-live.is-live{
    background:#dc2232;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}
.athlos-full-mc__tiny-live.is-idle{
    background:#aeb4bf;
    animation:none;
}

/*
 * Sitewide desktop + mobile access already receive .has-live from the
 * existing cached liveCount endpoint. Reuse that state; no extra request.
 */
.athlos-matchcenter-nav.has-live .athlos-matchcenter-nav__dot,
.athlos-matchcenter-mobile.has-live .athlos-matchcenter-mobile__dot,
.athlos-matchcenter-trigger.has-live .athlos-matchcenter-trigger__dot,
.athlos-mc-overlay-trigger.has-live .athlos-mc-overlay-trigger__dot,
.athlos-mc-mobile-trigger.has-live .athlos-mc-mobile-trigger__dot,
.athlos-mc-desktop-nav.has-live .athlos-mc-desktop-nav__dot,
.has-live [data-athlos-live-dot],
.has-live .athlos-live-dot{
    background:#dc2232!important;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}

/* Existing manual desktop nav dot class from earlier builds. */
.athlos-matchcenter-nav__dot.is-live,
.athlos-matchcenter-nav-dot.is-live,
.athlos-mc-nav-dot.is-live{
    background:#dc2232!important;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}

@media (prefers-reduced-motion: reduce){
    .athlos-full-mc__tiny-live.is-live,
    .has-live [data-athlos-live-dot],
    .has-live .athlos-live-dot,
    .athlos-matchcenter-nav__dot.is-live,
    .athlos-matchcenter-nav-dot.is-live,
    .athlos-mc-nav-dot.is-live{
        animation:none!important;
    }
}


/* v0.11.1 final live-dot wiring to actual ATHLOS markup */

/* Homepage TOP GAMES strip */
.athlos-mc[data-athlos-match-centre] .athlos-mc__live-dot{
    background:#9ca3af!important;
    box-shadow:none;
    animation:none;
}
.athlos-mc[data-athlos-match-centre].has-live .athlos-mc__live-dot{
    background:#dc2232!important;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}

/* Automatic/mobile Match Center strip */
.athlos-mc-trigger-wrap .athlos-mc-trigger__dot{
    background:#9ca3af;
    box-shadow:none;
    animation:none;
}
.athlos-mc-trigger-wrap.has-live .athlos-mc-trigger__dot{
    background:#dc2232;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}

/* Manual desktop header access already receives .has-live in existing JS. */
.athlos-mc-desktop-access:not(.has-live) .athlos-mc-desktop-button__dot{
    background:#9ca3af;
    box-shadow:none;
    animation:none;
}
.athlos-mc-desktop-access.has-live .athlos-mc-desktop-button__dot{
    background:#dc2232;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}

/* Live item inside desktop dropdown follows same state. */
.athlos-mc-desktop-access:not(.has-live) .athlos-mc-desktop-menu__live-dot{
    background:#9ca3af;
    box-shadow:none;
    animation:none;
}
.athlos-mc-desktop-access.has-live .athlos-mc-desktop-menu__live-dot{
    background:#dc2232;
    animation:athlos-mc-live-pulse 1.7s ease-out infinite;
}

@media (prefers-reduced-motion: reduce){
    .athlos-mc[data-athlos-match-centre].has-live .athlos-mc__live-dot,
    .athlos-mc-trigger-wrap.has-live .athlos-mc-trigger__dot,
    .athlos-mc-desktop-access.has-live .athlos-mc-desktop-button__dot,
    .athlos-mc-desktop-access.has-live .athlos-mc-desktop-menu__live-dot{
        animation:none!important;
    }
}


/* ============================================================
   v0.11.2-beta — TODAY UX + TOP GAMES COMPETITION CONTEXT
   ============================================================ */

.athlos-full-mc__today[hidden]{
    display:none!important;
}

/* TOP GAMES gets competition context without turning rows into tall cards. */
.athlos-match-row--top{
    min-height:62px!important;
}

.athlos-match-row__team-copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:2px;
}

.athlos-match-row__team-copy--away{
    align-items:flex-end;
    text-align:right;
}

.athlos-match-row__team-name{
    display:block;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-weight:750;
}

.athlos-match-row__competition{
    display:block;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:var(--mc-muted);
    font-size:10px;
    line-height:1.15;
    font-weight:650;
}

@media(max-width:782px){
    .athlos-match-row--top{
        min-height:60px!important;
    }

    .athlos-match-row__competition{
        font-size:9.5px;
    }
}


/* ============================================================
   v0.11.3-beta — TOP GAMES DESKTOP LOGO FIX
   ============================================================ */

.athlos-full-mc .athlos-match-row--top .athlos-match-row__top-logo{
    display:block!important;
    width:28px!important;
    height:28px!important;
    min-width:28px!important;
    max-width:28px!important;
    min-height:28px!important;
    max-height:28px!important;
    object-fit:contain!important;
    flex:0 0 28px!important;
    margin:0!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team{
    min-width:0;
    align-items:center;
    gap:9px;
}

.athlos-full-mc .athlos-match-row--top{
    min-height:58px!important;
}

@media(max-width:782px){
    .athlos-full-mc .athlos-match-row--top .athlos-match-row__top-logo{
        width:24px!important;
        height:24px!important;
        min-width:24px!important;
        max-width:24px!important;
        min-height:24px!important;
        max-height:24px!important;
        flex-basis:24px!important;
    }

    .athlos-full-mc .athlos-match-row--top{
        min-height:56px!important;
    }
}


/* ============================================================
   v0.11.4-beta — SINGLE COMPETITION LABEL IN TOP GAMES
   ============================================================ */

.athlos-full-mc .athlos-match-row--top{
    position:relative;
    min-height:60px!important;
    padding-top:19px;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta{
    position:absolute;
    top:5px;
    left:12px;
    right:12px;
    display:flex;
    align-items:center;
    gap:8px;
    min-width:0;
    pointer-events:none;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta .athlos-match-row__time{
    flex:0 0 auto;
    width:auto;
    min-width:0;
    color:var(--mc-muted);
    font-size:10px;
    line-height:1;
    font-weight:800;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__competition{
    display:block;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:var(--mc-muted);
    font-size:10px;
    line-height:1;
    font-weight:700;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team{
    min-width:0;
    align-items:center;
    gap:9px;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team-name{
    display:block;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-weight:750;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team--away{
    justify-content:flex-end;
}

@media(max-width:782px){
    .athlos-full-mc .athlos-match-row--top{
        min-height:58px!important;
        padding-top:18px;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta{
        top:4px;
        left:9px;
        right:9px;
        gap:6px;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta .athlos-match-row__time,
    .athlos-full-mc .athlos-match-row--top .athlos-match-row__competition{
        font-size:9.5px;
    }
}


/* ============================================================
   v0.11.5-beta — TOP GAMES GRID REPAIR
   The v0.11.4 meta row is now part of the grid, not absolute.
   ============================================================ */

.athlos-full-mc .athlos-match-row--top{
    position:relative;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 56px minmax(0,1fr)!important;
    grid-template-rows:18px 34px!important;
    align-items:center!important;
    column-gap:12px!important;
    row-gap:0!important;
    min-height:58px!important;
    height:auto!important;
    padding:3px 12px 4px!important;
}

/* First row: time + competition, spanning the full match width. */
.athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta{
    position:static!important;
    grid-column:1 / -1!important;
    grid-row:1!important;
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    min-width:0!important;
    width:100%!important;
    padding:0!important;
    margin:0!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta .athlos-match-row__time{
    position:static!important;
    width:auto!important;
    min-width:0!important;
    flex:0 0 auto!important;
    padding:0!important;
    margin:0!important;
    color:var(--mc-muted)!important;
    font-size:10px!important;
    line-height:1!important;
    font-weight:800!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__competition{
    min-width:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    color:var(--mc-muted)!important;
    font-size:10px!important;
    line-height:1!important;
    font-weight:700!important;
}

/* Second row: home | score | away */
.athlos-full-mc .athlos-match-row--top .athlos-match-row__team--home{
    grid-column:1!important;
    grid-row:2!important;
    justify-content:flex-start!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__score{
    grid-column:2!important;
    grid-row:2!important;
    justify-self:center!important;
    align-self:center!important;
    width:auto!important;
    min-width:0!important;
    text-align:center!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team--away{
    grid-column:3!important;
    grid-row:2!important;
    justify-content:flex-end!important;
    text-align:right!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team{
    display:flex!important;
    align-items:center!important;
    gap:9px!important;
    min-width:0!important;
    width:100%!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__team-name{
    display:block!important;
    min-width:0!important;
    max-width:100%!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:14px!important;
    line-height:1.15!important;
    font-weight:750!important;
}

.athlos-full-mc .athlos-match-row--top .athlos-match-row__top-logo{
    width:28px!important;
    height:28px!important;
    min-width:28px!important;
    max-width:28px!important;
    min-height:28px!important;
    max-height:28px!important;
    object-fit:contain!important;
    flex:0 0 28px!important;
}

@media(max-width:782px){
    .athlos-full-mc .athlos-match-row--top{
        grid-template-columns:minmax(0,1fr) 38px minmax(0,1fr)!important;
        grid-template-rows:17px 32px!important;
        column-gap:7px!important;
        min-height:55px!important;
        padding:3px 8px!important;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta{
        gap:6px!important;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__top-meta .athlos-match-row__time,
    .athlos-full-mc .athlos-match-row--top .athlos-match-row__competition{
        font-size:9.5px!important;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__team{
        gap:6px!important;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__team-name{
        font-size:12px!important;
    }

    .athlos-full-mc .athlos-match-row--top .athlos-match-row__top-logo{
        width:24px!important;
        height:24px!important;
        min-width:24px!important;
        max-width:24px!important;
        min-height:24px!important;
        max-height:24px!important;
        flex-basis:24px!important;
    }
}


/* ============================================================
   v0.11.7-beta — BASKETBALL TOP GAMES SCORE FIX
   ============================================================ */

/* Never allow a normal match score such as 87 - 81 to wrap vertically. */
.athlos-full-mc .athlos-match-row--top .athlos-match-row__score{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    white-space:nowrap!important;
    word-break:keep-all!important;
    overflow-wrap:normal!important;
    line-height:1!important;
    min-width:56px!important;
    width:auto!important;
}

/* Basketball scores need a little more horizontal room than football/volleyball. */
.athlos-full-mc .athlos-match-row--top.athlos-match-row--basketball{
    grid-template-columns:minmax(0,1fr) 78px minmax(0,1fr)!important;
}

.athlos-full-mc .athlos-match-row--top.athlos-match-row--basketball .athlos-match-row__score{
    min-width:78px!important;
    font-size:17px!important;
    font-weight:850!important;
}

/* Keep compact mobile layout, but still never split the score. */
@media(max-width:782px){
    .athlos-full-mc .athlos-match-row--top.athlos-match-row--basketball{
        grid-template-columns:minmax(0,1fr) 62px minmax(0,1fr)!important;
    }

    .athlos-full-mc .athlos-match-row--top.athlos-match-row--basketball .athlos-match-row__score{
        min-width:62px!important;
        font-size:15px!important;
    }
}


/* ============================================================
   v0.12.0-beta — FOOTBALL PLAYER BOX SCORE
   ============================================================ */

.athlos-player-boxscore{display:grid;gap:18px;padding:14px}
.athlos-player-team{min-width:0;border:1px solid var(--athlos-border,#dde1e8);background:#fff}
.athlos-player-team__head{min-height:46px;display:flex;align-items:center;gap:9px;padding:8px 11px;border-bottom:1px solid var(--athlos-border,#dde1e8);background:var(--athlos-soft,#f5f6f8)}
.athlos-player-team__head img{width:28px!important;height:28px!important;object-fit:contain!important}
.athlos-player-team__head strong{font-size:14px;font-weight:900}
.athlos-player-table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
.athlos-player-table{min-width:1320px}
.athlos-player-row{display:grid;grid-template-columns:minmax(230px,1fr) 48px 48px 42px 42px 52px 52px 52px 52px 64px 52px 48px 48px 52px 58px 58px;align-items:center;min-height:43px;border-bottom:1px solid #eceef2}
.athlos-player-row:last-child{border-bottom:0}
.athlos-player-row>span,.athlos-player-row>strong{padding:6px 7px;text-align:center;font-size:12px;white-space:nowrap}
.athlos-player-row--head{min-height:31px;background:#fafbfc;color:#707887;font-weight:850}
.athlos-player-row--head>span{font-size:9.5px;letter-spacing:.02em}
.athlos-player-row--head>span:first-child{text-align:left}
.athlos-player-row__identity{display:flex!important;align-items:center;gap:8px;min-width:0;text-align:left!important}
.athlos-player-row__identity>img{width:30px!important;height:30px!important;flex:0 0 30px;border-radius:50%;object-fit:cover!important;background:#f2f4f7}
.athlos-player-row__identity>span{min-width:0}
.athlos-player-row__identity strong{display:block;overflow:hidden;text-overflow:ellipsis;font-size:12px;line-height:1.15}
.athlos-player-row__identity small{display:block;margin-top:3px;color:#777f8e;font-size:9.5px;line-height:1.2}
.athlos-player-row__identity em{display:inline-block;margin-left:4px;padding:1px 4px;border-radius:3px;background:#eef0f3;color:#687080;font-size:8px;font-style:normal;font-weight:800}

@media(max-width:782px){
    .athlos-player-boxscore{padding:8px 0;gap:12px}
    .athlos-player-team{border-left:0;border-right:0}
    .athlos-player-table{min-width:1280px}
}


/* ============================================================
   v0.12.1-beta — FULL MATCH CENTER CLICKABLE TOP GAMES
   ============================================================ */

.athlos-full-mc a.athlos-match-row--top{
    color:inherit!important;
    text-decoration:none!important;
    cursor:pointer!important;
}

.athlos-full-mc a.athlos-match-row--top:hover{
    color:inherit!important;
    text-decoration:none!important;
    background:#fafbfc;
}

.athlos-full-mc a.athlos-match-row--top:focus-visible{
    outline:2px solid #1a2232;
    outline-offset:-2px;
}


/* ============================================================
   v0.12.2-beta — INLINE HIGHLIGHTS + PLAYER PROFILE PAGES
   ============================================================ */

/* Highlights: responsive embeds stay inside the Match Center frame. */
.athlos-video-grid--responsive{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(100%,420px),640px));
    gap:16px;
    align-items:start;
    justify-content:start;
    padding:16px 18px 20px;
}

.athlos-video-grid--responsive .athlos-video-card{
    width:100%;
    min-width:0;
    max-width:640px;
    margin:0;
    border:1px solid #dfe3ea;
    background:#fff;
    color:inherit;
    text-decoration:none;
    overflow:hidden;
}

.athlos-video-card__player{
    position:relative;
    width:100%;
    aspect-ratio:16 / 9;
    background:#0b0d12;
    overflow:hidden;
}

.athlos-video-card__player iframe{
    position:absolute;
    inset:0;
    width:100%!important;
    height:100%!important;
    max-width:none!important;
    border:0!important;
}

.athlos-video-grid--responsive .athlos-video-card__image{
    aspect-ratio:16 / 9;
    width:100%;
    height:auto;
}

.athlos-video-grid--responsive .athlos-video-card__image img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
}

.athlos-video-grid--responsive .athlos-video-card__body{
    padding:11px 12px 13px;
}

.athlos-video-grid--responsive .athlos-video-card__body em{
    display:block;
    margin-top:7px;
    color:#7a8290;
    font-size:10px;
    font-style:normal;
    font-weight:700;
}

/* Football box-score player name -> profile */
.athlos-player-row__profile-link{
    color:inherit!important;
    text-decoration:none!important;
}

.athlos-player-row__profile-link:hover strong{
    text-decoration:underline;
}

.athlos-player-row__profile-link:focus-visible{
    outline:2px solid #1a2232;
    outline-offset:2px;
}

/* Virtual player page */
.athlos-mc-player-template{
    width:min(1280px,calc(100% - 32px));
    margin:28px auto 48px;
}

.athlos-player-page{
    color:#171e2d;
    font-family:inherit;
}

.athlos-player-page__eyebrow{
    margin-bottom:6px;
    color:#7d8593;
    font-size:11px;
    font-weight:850;
    letter-spacing:.06em;
}

.athlos-player-hero{
    display:grid;
    grid-template-columns:130px minmax(0,1fr) auto;
    gap:22px;
    align-items:center;
    padding:22px;
    border-top:3px solid #171e2d;
    border-bottom:1px solid #dfe3ea;
    background:#fff;
}

.athlos-player-hero__photo{
    width:120px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:50%;
    background:#f1f3f6;
}

.athlos-player-hero__photo img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
}

.athlos-player-hero__photo span{
    font-size:43px;
    font-weight:900;
}

.athlos-player-hero__main h1{
    margin:0 0 4px;
    font-size:33px;
    line-height:1.05;
    font-weight:900;
}

.athlos-player-hero__main > p{
    margin:0 0 16px;
    color:#687182;
    font-size:14px;
    font-weight:700;
}

.athlos-player-profile-grid{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.athlos-player-profile-grid > div{
    min-width:115px;
    padding:7px 9px;
    border:1px solid #e2e5ea;
    background:#fafbfc;
}

.athlos-player-profile-grid span,
.athlos-player-market > span{
    display:block;
    margin-bottom:3px;
    color:#838a97;
    font-size:8.5px;
    font-weight:850;
    letter-spacing:.05em;
}

.athlos-player-profile-grid strong{
    display:block;
    font-size:11.5px;
}

.athlos-player-market{
    min-width:155px;
    padding:14px 16px;
    border:1px solid #dfe3ea;
    text-align:center;
}

.athlos-player-market strong{
    display:block;
    font-size:26px;
    line-height:1.05;
    font-weight:900;
}

.athlos-player-market small{
    display:block;
    margin-top:5px;
    color:#7d8593;
    font-size:9.5px;
}

.athlos-player-section{
    margin-top:24px;
}

.athlos-player-section__title{
    padding-bottom:8px;
    border-bottom:2px solid #171e2d;
}

.athlos-player-section__title h2{
    margin:0;
    font-size:17px;
    font-weight:900;
}

.athlos-player-career-table-wrap{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.athlos-player-career-table{
    min-width:860px;
    border-left:1px solid #dfe3ea;
    border-right:1px solid #dfe3ea;
}

.athlos-player-career-table--club{
    min-width:700px;
}

.athlos-player-career-row{
    display:grid;
    grid-template-columns:minmax(180px,1.3fr) 70px minmax(160px,1fr) repeat(6,65px);
    min-height:42px;
    align-items:center;
    border-bottom:1px solid #e3e6eb;
}

.athlos-player-career-table--club .athlos-player-career-row{
    grid-template-columns:minmax(220px,1.5fr) repeat(6,75px);
}

.athlos-player-career-row > span,
.athlos-player-career-row > strong{
    padding:7px 9px;
    font-size:11.5px;
    text-align:center;
    white-space:nowrap;
}

.athlos-player-career-row > strong:first-child,
.athlos-player-career-row > span:first-child{
    text-align:left;
}

.athlos-player-career-row--head{
    min-height:31px;
    background:#f5f6f8;
    color:#707887;
    font-weight:850;
}

.athlos-player-career-row--head > span{
    font-size:9px;
}

.athlos-player-transfers{
    border:1px solid #dfe3ea;
}

.athlos-player-transfer{
    display:grid;
    grid-template-columns:110px minmax(0,1fr) auto;
    gap:12px;
    align-items:center;
    min-height:45px;
    padding:7px 11px;
    border-bottom:1px solid #e4e7eb;
}

.athlos-player-transfer:last-child{
    border-bottom:0;
}

.athlos-player-transfer span,
.athlos-player-transfer small{
    color:#747c8a;
    font-size:10px;
}

.athlos-player-transfer strong{
    font-size:12px;
}

.athlos-player-page__source-note{
    margin-top:22px;
    padding-top:10px;
    border-top:1px solid #e3e6eb;
    color:#8a919d;
    font-size:9.5px;
}

.athlos-player-page__error{
    max-width:900px;
    margin:70px auto;
    padding:30px;
    border:1px solid #dfe3ea;
    text-align:center;
    font-weight:800;
}

@media(max-width:782px){
    .athlos-video-grid--responsive{
        grid-template-columns:1fr;
        padding:8px 0 14px;
    }

    .athlos-video-grid--responsive .athlos-video-card{
        max-width:none;
        border-left:0;
        border-right:0;
    }

    .athlos-mc-player-template{
        width:100%;
        margin:12px auto 32px;
    }

    .athlos-player-page__eyebrow{
        padding:0 12px;
    }

    .athlos-player-hero{
        grid-template-columns:78px minmax(0,1fr);
        gap:12px;
        padding:14px 12px;
    }

    .athlos-player-hero__photo{
        width:72px;
        height:72px;
    }

    .athlos-player-hero__main h1{
        font-size:24px;
    }

    .athlos-player-profile-grid{
        display:none;
    }

    .athlos-player-market{
        grid-column:1 / -1;
        width:100%;
        min-width:0;
        padding:9px;
    }

    .athlos-player-market strong{
        font-size:21px;
    }

    .athlos-player-section__title{
        padding:0 12px 7px;
    }

    .athlos-player-career-table-wrap,
    .athlos-player-transfers{
        border-left:0;
        border-right:0;
    }

    .athlos-player-transfer{
        grid-template-columns:85px minmax(0,1fr);
    }

    .athlos-player-transfer small{
        grid-column:2;
    }

    .athlos-player-page__source-note{
        margin-left:12px;
        margin-right:12px;
    }
}


/* ============================================================
   v0.12.5-beta — DIRECT DATE PICKER
   ============================================================ */

.athlos-full-mc__date-picker-wrap{
    position:relative;
    display:inline-flex;
    align-items:center;
}

.athlos-full-mc__date-button{
    cursor:pointer;
}

.athlos-full-mc__date-button::after{
    content:"▾";
    display:inline-block;
    margin-left:8px;
    color:#7b8390;
    font-size:10px;
    line-height:1;
    vertical-align:1px;
}

.athlos-full-mc__date-button:hover{
    background:#fafbfc;
}

.athlos-full-mc__date-button:focus-visible{
    outline:2px solid #182131;
    outline-offset:2px;
}

/*
 * Keep the native date input available to the browser, but visually hidden.
 * showPicker() is triggered only by a real user click on the visible date button.
 */
.athlos-full-mc__date-picker{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    left:50%!important;
    bottom:0!important;
    opacity:0!important;
    pointer-events:none!important;
    border:0!important;
    padding:0!important;
    margin:0!important;
}

@media(max-width:782px){
    .athlos-full-mc__date-picker-wrap{
        min-width:0;
    }

    .athlos-full-mc__date-button::after{
        margin-left:5px;
    }
}


/* ============================================================
   v0.12.6-beta — DEDICATED NBA PLAYER BOX SCORE
   ============================================================ */

.athlos-nba-boxscore{
    display:grid;
    gap:18px;
    padding:14px;
}

.athlos-nba-box-team{
    min-width:0;
    border:1px solid #dde1e8;
    background:#fff;
}

.athlos-nba-box-wrap{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.athlos-nba-box{
    min-width:980px;
}

.athlos-nba-box-row{
    display:grid;
    grid-template-columns:minmax(190px,1fr) 54px 52px 52px 52px 48px 48px 48px 70px 70px 70px 54px;
    align-items:center;
    min-height:41px;
    border-bottom:1px solid #eceef2;
}

.athlos-nba-box-row:last-child{
    border-bottom:0;
}

.athlos-nba-box-row > span,
.athlos-nba-box-row > strong{
    padding:6px 7px;
    text-align:center;
    font-size:11.5px;
    white-space:nowrap;
}

.athlos-nba-box-row--head{
    min-height:31px;
    background:#fafbfc;
    color:#737b89;
    font-weight:850;
}

.athlos-nba-box-row--head > span{
    font-size:9px;
}

.athlos-nba-box-row--head > span:first-child{
    text-align:left;
}

.athlos-nba-box-player{
    min-width:0;
    text-align:left!important;
}

.athlos-nba-box-player strong{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:12px;
}

.athlos-nba-box-player small{
    display:block;
    margin-top:2px;
    color:#848b97;
    font-size:9px;
}

@media(max-width:782px){
    .athlos-nba-boxscore{
        padding:8px 0;
        gap:12px;
    }

    .athlos-nba-box-team{
        border-left:0;
        border-right:0;
    }
}


/* v0.12.7 — EuroLeague boxscore probe uses the same responsive basketball table. */
.athlos-mc-single__tabs button[data-athlos-single-tab="players"]{
    white-space:nowrap;
}


/* ============================================================
   v0.12.8-beta — BASKETBALL SCORE + OFFICIAL EUROLEAGUE BOX
   ============================================================ */

/* Never split basketball scores like 92 - 85 / 108 - 121 vertically. */
.athlos-mc--single .athlos-mc-single__middle{
    min-width:150px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.athlos-mc--single .athlos-mc-single__score{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:max-content!important;
    min-width:max-content!important;
    max-width:none!important;
    white-space:nowrap!important;
    word-break:keep-all!important;
    overflow-wrap:normal!important;
}

.athlos-mc--single .athlos-mc-single__scoreboard{
    grid-template-columns:minmax(0,1fr) 150px minmax(0,1fr);
}

/* EuroLeague official boxscore has an extra PIR column. */
.athlos-euroleague-box{
    min-width:1035px!important;
}

.athlos-nba-box-row.athlos-euroleague-box-row{
    grid-template-columns:
        minmax(190px,1fr)
        54px 52px 52px 52px
        48px 48px 48px
        70px 70px 70px
        52px 54px!important;
}

/* v0.18.54 — official FIBA boxscore column order, matching the public
 * FIBA table: PLAYER + MIN/PTS + FG/2PT/3PT/FT + OREB/DREB/REB +
 * AST/PF/TO/STL/BLK + +/- + EFF. Extra metrics remain available in the
 * separate ΣΤΑΤΙΣΤΙΚΑ tab without making the player table unnecessarily wide. */
.athlos-fiba-box{
    min-width:1290px!important;
}
.athlos-nba-box-row.athlos-fiba-box-row{
    grid-template-columns:
        minmax(205px,1fr)
        54px 52px
        84px 84px 84px 84px
        54px 54px 54px
        50px 48px 48px 48px 48px
        54px 52px!important;
}

@media(max-width:782px){
    .athlos-mc--single .athlos-mc-single__scoreboard{
        grid-template-columns:minmax(0,1fr) 96px minmax(0,1fr)!important;
        gap:8px!important;
    }

    .athlos-mc--single .athlos-mc-single__middle{
        min-width:96px;
    }

    .athlos-mc--single .athlos-mc-single__score{
        font-size:28px!important;
    }
}


/* ============================================================
   v0.13.0-beta — BASKETBALL PLAY BY PLAY / OFFICIAL GBL
   ============================================================ */

.athlos-basket-pbp{
    padding:14px 18px 20px;
}

.athlos-basket-pbp__filters{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:12px;
}

.athlos-basket-pbp__filters button{
    min-height:30px;
    padding:5px 10px;
    border:1px solid #dbe0e8;
    border-radius:16px;
    background:#fff;
    color:#687181;
    font-size:10px;
    font-weight:800;
    cursor:pointer;
}

.athlos-basket-pbp__filters button.is-active{
    border-color:#171e2d;
    background:#171e2d;
    color:#fff;
}

.athlos-basket-pbp__list{
    border-top:2px solid #171e2d;
}

.athlos-basket-pbp__row{
    display:grid;
    grid-template-columns:120px minmax(0,1fr) 90px;
    gap:14px;
    align-items:center;
    min-height:58px;
    padding:9px 10px;
    border-bottom:1px solid #e3e6eb;
}

.athlos-basket-pbp__clock span{
    display:block;
    margin-bottom:3px;
    color:#818996;
    font-size:8.5px;
    font-weight:850;
}

.athlos-basket-pbp__clock strong{
    display:block;
    font-size:14px;
}

.athlos-basket-pbp__main{
    min-width:0;
}

.athlos-basket-pbp__main strong{
    display:block;
    font-size:12px;
}

.athlos-basket-pbp__main span,
.athlos-basket-pbp__main small{
    display:block;
    margin-top:2px;
    color:#717a89;
    font-size:10px;
    line-height:1.3;
}

.athlos-basket-pbp__score{
    text-align:right;
    font-size:16px;
    font-weight:900;
    white-space:nowrap;
}

/* PLAYER + MIN/PTS/REB/AST/STL/BLK/TO/FG/3PT/FT/PIR/+/- */
.athlos-euroleague-box{
    min-width:1035px!important;
}

.athlos-nba-box-row.athlos-euroleague-box-row{
    grid-template-columns:
        minmax(190px,1fr)
        54px 52px 52px 52px
        48px 48px 48px
        70px 70px 70px
        52px 54px!important;
}

@media(max-width:782px){
    .athlos-basket-pbp{
        padding:8px 0 14px;
    }

    .athlos-basket-pbp__filters{
        padding:0 9px;
        overflow-x:auto;
        flex-wrap:nowrap;
        scrollbar-width:none;
    }

    .athlos-basket-pbp__filters::-webkit-scrollbar{
        display:none;
    }

    .athlos-basket-pbp__filters button{
        flex:0 0 auto;
    }

    .athlos-basket-pbp__row{
        grid-template-columns:78px minmax(0,1fr) 56px;
        gap:8px;
        min-height:54px;
        padding:8px 9px;
    }

    .athlos-basket-pbp__score{
        font-size:14px;
    }
}


/* v0.13.1-beta — ESAKE official PBP fallback while AJAX endpoint is unresolved */
.athlos-official-pbp-fallback{
    margin:18px;
    padding:22px;
    border:1px solid #dfe3ea;
    background:#fafbfc;
    text-align:center;
}

.athlos-official-pbp-fallback strong{
    display:block;
    margin-bottom:6px;
    font-size:13px;
}

.athlos-official-pbp-fallback span{
    display:block;
    margin-bottom:14px;
    color:#727b89;
    font-size:11px;
}

.athlos-official-pbp-fallback a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:7px 12px;
    border:1px solid #171e2d;
    color:#171e2d!important;
    text-decoration:none!important;
    font-size:10px;
    font-weight:850;
}


/* ============================================================
   v0.13.3-beta — CLICKABLE TEAM PAGES
   ============================================================ */

.athlos-mc-single__team-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    width:100%;
    color:inherit!important;
    text-decoration:none!important;
}
.athlos-mc-single__team-link:hover strong{text-decoration:underline}
.athlos-mc-single__team-link:focus-visible{outline:2px solid #171e2d;outline-offset:4px}

.athlos-mc-team-template{width:min(1280px,calc(100% - 32px));margin:28px auto 48px}
.athlos-team-page{color:#171e2d}
.athlos-team-page__eyebrow{margin-bottom:7px;color:#7e8693;font-size:10px;font-weight:850;letter-spacing:.06em}
.athlos-team-hero{display:flex;align-items:center;gap:20px;padding:22px;border-top:3px solid #171e2d;border-bottom:1px solid #dfe3ea;background:#fff}
.athlos-team-hero__logo{width:110px;height:110px;display:flex;align-items:center;justify-content:center;flex:0 0 110px}
.athlos-team-hero__logo img{width:100%!important;height:100%!important;object-fit:contain!important}
.athlos-team-hero__logo span{font-size:31px;font-weight:900}
.athlos-team-hero h1{margin:0;font-size:33px;line-height:1.05;font-weight:900}
.athlos-team-hero p{margin:5px 0 0;color:#747c89;font-size:12px;font-weight:800}
.athlos-team-section{margin-top:24px}
.athlos-team-section__title{padding-bottom:8px;border-bottom:2px solid #171e2d}
.athlos-team-section__title h2{margin:0;font-size:16px;font-weight:900}
.athlos-team-last-five{border-left:1px solid #dfe3ea;border-right:1px solid #dfe3ea}
.athlos-team-last-five__row{display:grid;grid-template-columns:90px minmax(150px,1fr) 80px minmax(150px,1fr) minmax(140px,.8fr);gap:10px;align-items:center;min-height:48px;padding:7px 12px;border-bottom:1px solid #e3e6eb}
.athlos-team-last-five__row span,.athlos-team-last-five__row small{color:#737c8b;font-size:10px}
.athlos-team-last-five__row strong{font-size:12px}
.athlos-team-last-five__row b{text-align:center;font-size:14px;white-space:nowrap}
.athlos-team-stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px;margin-top:12px}
.athlos-team-stat-card{padding:13px;border:1px solid #dfe3ea;background:#fff}
.athlos-team-stat-card h3{margin:0;font-size:13px;font-weight:900}
.athlos-team-stat-card>small{display:block;margin-top:3px;color:#7d8592;font-size:9px}
.athlos-team-stat-card>div{display:flex;flex-wrap:wrap;gap:7px;margin-top:12px}
.athlos-team-stat-card span{min-width:58px;padding:7px;background:#f6f7f9;text-align:center}
.athlos-team-stat-card em{display:block;color:#828a97;font-size:8px;font-style:normal;font-weight:800}
.athlos-team-stat-card strong{display:block;margin-top:2px;font-size:15px}
.athlos-team-page__source-note{margin-top:22px;padding-top:9px;border-top:1px solid #e3e6eb;color:#89919e;font-size:9px}
.athlos-team-page__error{max-width:900px;margin:70px auto;padding:30px;border:1px solid #dfe3ea;text-align:center;font-weight:800}

@media(max-width:782px){
    .athlos-mc-team-template{width:100%;margin:12px auto 32px}
    .athlos-team-page__eyebrow{padding:0 12px}
    .athlos-team-hero{gap:12px;padding:14px 12px}
    .athlos-team-hero__logo{width:76px;height:76px;flex-basis:76px}
    .athlos-team-hero h1{font-size:24px}
    .athlos-team-section__title{padding:0 12px 7px}
    .athlos-team-last-five{border-left:0;border-right:0}
    .athlos-team-last-five__row{grid-template-columns:64px minmax(0,1fr) 55px minmax(0,1fr);gap:6px;padding:8px 9px}
    .athlos-team-last-five__row small{grid-column:2/-1}
    .athlos-team-stats-grid{grid-template-columns:1fr;padding:0 9px}
    .athlos-team-page__source-note{margin-left:12px;margin-right:12px}
}


/* ============================================================
   v0.13.4-beta — TEAM PAGE 2.0 + ESAKE PBP FALLBACK
   ============================================================ */

.athlos-team-page__topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    color:#7e8693;
    font-size:10px;
    font-weight:850;
    letter-spacing:.04em;
}

.athlos-team-back{
    appearance:none;
    border:0;
    background:transparent;
    padding:4px 0;
    color:#171e2d;
    font:inherit;
    font-size:12px;
    font-weight:850;
    cursor:pointer;
}

.athlos-team-back:hover{
    text-decoration:underline;
}

.athlos-team-section__title--split{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
}

.athlos-team-section__title--split > span{
    color:#7b8390;
    font-size:9px;
    font-weight:700;
}

.athlos-team-fixtures{
    border-left:1px solid #dfe3ea;
    border-right:1px solid #dfe3ea;
}

.athlos-team-fixture-row{
    display:grid;
    grid-template-columns:90px minmax(150px,1fr) 76px minmax(150px,1fr) minmax(140px,.8fr);
    gap:10px;
    align-items:center;
    min-height:48px;
    padding:7px 12px;
    border-bottom:1px solid #e3e6eb;
}

.athlos-team-fixture-row__date{
    color:#677181;
    font-size:10px;
    font-weight:800;
}

.athlos-team-fixture-row__date small{
    display:block;
    margin-top:2px;
    color:#8a919c;
    font-size:9px;
}

.athlos-team-fixture-row > strong{
    font-size:12px;
}

.athlos-team-fixture-row > b{
    text-align:center;
    white-space:nowrap;
}

.athlos-team-fixture-row > b a{
    white-space:nowrap;
}

.athlos-team-fixture-row > small{
    color:#737c8b;
    font-size:10px;
}

.athlos-team-roster{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
    gap:8px;
    margin-top:12px;
}

.athlos-team-roster__player{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:58px;
    padding:8px 10px;
    border:1px solid #dfe3ea;
    color:inherit!important;
    text-decoration:none!important;
    background:#fff;
}

a.athlos-team-roster__player:hover strong{
    text-decoration:underline;
}

.athlos-team-roster__player > img,
.athlos-team-roster__avatar{
    width:40px;
    height:40px;
    flex:0 0 40px;
    border-radius:50%;
    object-fit:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f1f3f6;
    font-size:16px;
    font-weight:900;
}

.athlos-team-roster__player strong{
    display:block;
    font-size:11.5px;
}

.athlos-team-roster__player small{
    display:block;
    margin-top:2px;
    color:#808895;
    font-size:9px;
}

.athlos-team-standings{
    display:grid;
    gap:14px;
    margin-top:12px;
}

.athlos-team-standing-block{
    min-width:0;
    border:1px solid #dfe3ea;
    background:#fff;
}

.athlos-team-standing-block__head{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:9px 11px;
    border-bottom:1px solid #dfe3ea;
    background:#f7f8fa;
}

.athlos-team-standing-block__head strong{
    font-size:11.5px;
}

.athlos-team-standing-block__head span{
    color:#7c8491;
    font-size:9px;
}

.athlos-team-standing-table{
    width:100%;
    overflow-x:auto;
}

.athlos-team-standing-row{
    display:grid;
    grid-template-columns:40px minmax(190px,1fr) repeat(7,55px) 72px 72px;
    align-items:center;
    min-width:900px;
    min-height:36px;
    border-bottom:1px solid #eceef2;
}

.athlos-team-standing-row:last-child{
    border-bottom:0;
}

.athlos-team-standing-row > span{
    padding:6px 8px;
    text-align:center;
    font-size:10px;
}

.athlos-team-standing-row--head{
    color:#7b8390;
    font-weight:850;
}

.athlos-team-standing-row--head > span{
    font-size:8.5px;
}


.athlos-team-standing-row__points{
    font-weight:900;
}

.athlos-team-standing-row__split{
    white-space:nowrap;
    font-variant-numeric:tabular-nums;
}
.athlos-team-standing-row.is-current{
    background:#f2f4f8;
    font-weight:850;
}

.athlos-team-standing-row__team{
    display:flex;
    align-items:center;
    gap:7px;
    text-align:left!important;
}

.athlos-team-standing-row__team img{
    width:22px!important;
    height:22px!important;
    object-fit:contain!important;
}

.athlos-team-standing-row__team strong{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:10.5px;
}

.athlos-official-pbp-fallback__actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.athlos-official-pbp-fallback__actions button,
.athlos-official-pbp-fallback__actions a{
    min-height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 12px;
    border:1px solid #171e2d;
    background:#fff;
    color:#171e2d!important;
    text-decoration:none!important;
    font-size:10px;
    font-weight:850;
    cursor:pointer;
}

.athlos-official-pbp-fallback__frame{
    margin-top:14px;
    width:100%;
    height:min(720px,75vh);
    border:1px solid #dfe3ea;
    background:#fff;
}

.athlos-official-pbp-fallback__frame iframe{
    width:100%!important;
    height:100%!important;
    border:0!important;
}

@media(max-width:782px){
    .athlos-team-page__topline{
        padding:0 12px;
    }

    .athlos-team-fixtures{
        border-left:0;
        border-right:0;
    }

    .athlos-team-fixture-row{
        grid-template-columns:62px minmax(0,1fr) 68px minmax(0,1fr);
        gap:6px;
        padding:8px 9px;
    }

    .athlos-team-fixture-row > small{
        grid-column:2 / -1;
    }

    .athlos-team-roster{
        grid-template-columns:1fr 1fr;
        gap:6px;
        padding:0 9px;
    }

    .athlos-team-roster__player{
        min-width:0;
        padding:7px;
    }

    .athlos-team-roster__player > img,
    .athlos-team-roster__avatar{
        width:34px;
        height:34px;
        flex-basis:34px;
    }

    .athlos-team-roster__player strong{
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }

    .athlos-team-standings{
        padding:0 9px;
    }

    .athlos-official-pbp-fallback__frame{
        height:65vh;
    }
}


/* ============================================================
   v0.13.5-beta — ENTITY PAGE VISUAL OVERHAUL
   ============================================================ */

.athlos-player-page,
.athlos-team-page{
    --athlos-ink:#171e2d;
    --athlos-muted:#78808d;
    --athlos-line:#dfe3e9;
    --athlos-soft:#f6f7f9;
    --athlos-red:#e30613;
}

.athlos-player-page__topline,
.athlos-team-page__topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:10px;
    color:var(--athlos-muted);
    font-size:10px;
    font-weight:850;
    letter-spacing:.05em;
}

.athlos-entity-back{
    appearance:none;
    border:0;
    background:transparent;
    padding:5px 0;
    color:var(--athlos-ink);
    font:inherit;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
}

.athlos-entity-back:hover{
    text-decoration:underline;
}

.athlos-player-hero,
.athlos-team-hero{
    position:relative;
    overflow:hidden;
    border:1px solid var(--athlos-line);
    border-top:4px solid var(--athlos-ink);
    background:
        linear-gradient(135deg,rgba(23,30,45,.035),rgba(255,255,255,0) 45%),
        #fff;
}

.athlos-player-hero::after,
.athlos-team-hero::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:5px;
    height:54px;
    background:var(--athlos-red);
}

.athlos-player-hero__photo,
.athlos-team-hero__logo{
    border:1px solid #e5e8ed;
    background:#fff;
    box-shadow:0 7px 20px rgba(23,30,45,.06);
}

.athlos-player-hero__main h1,
.athlos-team-hero h1{
    letter-spacing:-.025em;
}

.athlos-player-profile-grid > div{
    border:1px solid #e6e8ec;
    background:#fff;
}

.athlos-player-market{
    border:1px solid var(--athlos-ink);
    background:var(--athlos-ink);
    color:#fff;
}

.athlos-player-market span,
.athlos-player-market small{
    color:#c7cbd3;
}

.athlos-player-snapshot,
.athlos-team-overview{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
    margin-top:12px;
}

.athlos-player-snapshot{
    grid-template-columns:repeat(4,minmax(0,1fr)) minmax(190px,1.45fr);
}

.athlos-player-snapshot > div,
.athlos-team-overview__card{
    min-width:0;
    min-height:86px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:12px 14px;
    border:1px solid var(--athlos-line);
    background:#fff;
}

.athlos-player-snapshot > div:first-child,
.athlos-team-overview__card--next{
    border-top:3px solid var(--athlos-red);
}

.athlos-player-snapshot span,
.athlos-team-overview__card > span{
    color:var(--athlos-muted);
    font-size:8.5px;
    font-weight:900;
    letter-spacing:.05em;
}

.athlos-player-snapshot strong,
.athlos-team-overview__card > strong{
    display:block;
    margin-top:5px;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:25px;
    line-height:1;
    font-weight:900;
    white-space:nowrap;
}

.athlos-player-snapshot small,
.athlos-team-overview__card > small{
    display:block;
    margin-top:5px;
    color:#858d99;
    font-size:9.5px;
}

.athlos-player-snapshot__competition strong,
.athlos-team-overview__card--next strong{
    font-size:16px;
    line-height:1.15;
    white-space:normal;
}

.athlos-entity-nav{
    display:flex;
    gap:0;
    margin-top:12px;
    overflow-x:auto;
    border:1px solid var(--athlos-line);
    background:#fff;
    scrollbar-width:none;
}

.athlos-entity-nav::-webkit-scrollbar{
    display:none;
}

.athlos-entity-nav a{
    flex:0 0 auto;
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px 15px;
    border-right:1px solid var(--athlos-line);
    color:#626b79!important;
    text-decoration:none!important;
    font-size:10px;
    font-weight:900;
    white-space:nowrap;
}

.athlos-entity-nav a:hover{
    background:var(--athlos-ink);
    color:#fff!important;
}

.athlos-player-section,
.athlos-team-section{
    scroll-margin-top:24px;
    margin-top:26px;
}

.athlos-player-section__title,
.athlos-team-section__title{
    position:relative;
    padding:0 0 9px 13px;
    border-bottom:2px solid var(--athlos-ink);
}

.athlos-player-section__title::before,
.athlos-team-section__title::before{
    content:"";
    position:absolute;
    left:0;
    top:1px;
    width:4px;
    height:17px;
    background:var(--athlos-red);
}

.athlos-player-section__title h2,
.athlos-team-section__title h2{
    font-size:15px;
    letter-spacing:.015em;
}

.athlos-player-career-table,
.athlos-team-last-five,
.athlos-team-fixtures,
.athlos-player-transfers{
    border-color:var(--athlos-line);
    background:#fff;
}

.athlos-player-career-row:not(.athlos-player-career-row--head):nth-child(even),
.athlos-team-last-five__row:nth-child(even),
.athlos-team-fixture-row:nth-child(even){
    background:#fafbfc;
}

.athlos-player-career-row:not(.athlos-player-career-row--head):hover,
.athlos-team-last-five__row:hover,
.athlos-team-fixture-row:hover{
    background:#f3f5f8;
}

.athlos-team-roster{
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:10px;
}

.athlos-team-roster__player{
    position:relative;
    min-height:70px;
    padding:10px 12px;
    border-color:var(--athlos-line);
    transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}

.athlos-team-roster__player::after{
    content:"";
    position:absolute;
    left:-1px;
    top:10px;
    bottom:10px;
    width:3px;
    background:#dfe3e9;
}

a.athlos-team-roster__player:hover{
    transform:translateY(-1px);
    border-color:#cbd1da;
    box-shadow:0 7px 18px rgba(23,30,45,.06);
}

a.athlos-team-roster__player:hover::after{
    background:var(--athlos-red);
}

.athlos-team-roster__player > img,
.athlos-team-roster__avatar{
    width:46px;
    height:46px;
    flex-basis:46px;
}

.athlos-team-roster__player strong{
    font-size:12px;
}

.athlos-team-standing-block,
.athlos-team-stat-card{
    border-color:var(--athlos-line);
    box-shadow:0 4px 14px rgba(23,30,45,.035);
}

.athlos-team-standing-row.is-current{
    position:relative;
    background:#f1f3f6;
}

.athlos-team-standing-row.is-current::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:4px;
    background:var(--athlos-red);
}

.athlos-team-stat-card{
    position:relative;
    overflow:hidden;
    padding:15px;
}

.athlos-team-stat-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    right:0;
    height:3px;
    background:var(--athlos-ink);
}

.athlos-team-stat-card > div{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(64px,1fr));
}

.athlos-team-stat-card span{
    min-width:0;
    border:1px solid #eceef1;
    background:#fafbfc;
}

.athlos-player-transfers{
    overflow:hidden;
}

.athlos-player-transfer{
    min-height:52px;
}

.athlos-player-transfer strong{
    font-size:12.5px;
}

.athlos-esake-pbp-embed{
    margin:14px;
    border:1px solid var(--athlos-line,#dfe3e9);
    background:#fff;
}

.athlos-esake-pbp-embed__head{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:9px 13px;
    border-bottom:1px solid #dfe3e9;
    background:#f7f8fa;
}

.athlos-esake-pbp-embed__head span{
    display:block;
    color:#858d99;
    font-size:8px;
    font-weight:900;
    letter-spacing:.06em;
}

.athlos-esake-pbp-embed__head strong{
    display:block;
    margin-top:2px;
    font-size:12px;
}

.athlos-esake-pbp-embed__head a{
    color:#171e2d!important;
    text-decoration:none!important;
    font-size:9px;
    font-weight:900;
    white-space:nowrap;
}

.athlos-esake-pbp-embed__head a:hover{
    text-decoration:underline!important;
}

.athlos-esake-pbp-embed iframe{
    display:block;
    width:100%!important;
    height:min(760px,76vh)!important;
    border:0!important;
    background:#fff;
}

@media(max-width:900px){
    .athlos-player-snapshot{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .athlos-player-snapshot__competition{
        grid-column:1 / -1;
    }

    .athlos-team-overview{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:782px){
    .athlos-player-page__topline,
    .athlos-team-page__topline{
        padding:0 12px;
    }

    .athlos-player-hero,
    .athlos-team-hero{
        border-left:0;
        border-right:0;
    }

    .athlos-player-snapshot,
    .athlos-team-overview{
        padding:0 9px;
        gap:6px;
    }

    .athlos-player-snapshot > div,
    .athlos-team-overview__card{
        min-height:74px;
        padding:10px;
    }

    .athlos-player-snapshot strong,
    .athlos-team-overview__card > strong{
        font-size:21px;
    }

    .athlos-player-snapshot__competition strong,
    .athlos-team-overview__card--next strong{
        font-size:14px;
    }

    .athlos-entity-nav{
        margin:10px 9px 0;
    }

    .athlos-entity-nav a{
        min-height:36px;
        padding:7px 12px;
        font-size:9px;
    }

    .athlos-player-section__title,
    .athlos-team-section__title{
        padding-left:23px;
    }

    .athlos-player-section__title::before,
    .athlos-team-section__title::before{
        left:10px;
    }

    .athlos-team-roster{
        grid-template-columns:1fr;
        gap:6px;
    }

    .athlos-team-roster__player{
        min-height:60px;
    }

    .athlos-esake-pbp-embed{
        margin:8px 0 0;
        border-left:0;
        border-right:0;
    }

    .athlos-esake-pbp-embed__head{
        padding:8px 10px;
    }

    .athlos-esake-pbp-embed iframe{
        height:72vh!important;
    }
}


/* ============================================================
   v0.13.6-beta — GLOBAL NAVIGATION / CLICKABILITY
   ============================================================ */

.athlos-page-backline{
    display:flex;
    justify-content:flex-start;
    margin-bottom:8px;
}

.athlos-mc-single__topbar{
    gap:12px;
}

.athlos-mc-single__crumbs{
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:6px;
    min-width:0;
    color:#7b8390;
    font-size:10px;
    font-weight:800;
}

.athlos-mc-single__crumbs a{
    color:inherit!important;
    text-decoration:none!important;
}

.athlos-mc-single__crumbs a:hover{
    color:#171e2d!important;
    text-decoration:underline!important;
}

.athlos-section-title-link{
    color:inherit!important;
    text-decoration:none!important;
}

.athlos-section-title-link:hover{
    text-decoration:underline!important;
}

.athlos-team-fixture-row a,
.athlos-team-last-five__row a,
.athlos-team-standing-row a,
.athlos-team-standing-block__head a,
.athlos-team-stat-card h3 a,
.athlos-player-career-row a{
    color:inherit!important;
    text-decoration:none!important;
}

.athlos-team-fixture-row a:hover,
.athlos-team-last-five__row a:hover,
.athlos-team-standing-row a:hover,
.athlos-team-standing-block__head a:hover,
.athlos-team-stat-card h3 a:hover,
.athlos-player-career-row a:hover{
    text-decoration:underline!important;
}

.athlos-team-fixture-row__date > a{
    display:block;
    color:inherit!important;
}

.athlos-league-group__head a{
    color:inherit!important;
    text-decoration:none!important;
}

.athlos-league-group__head a:hover{
    text-decoration:underline!important;
}

@media(max-width:782px){
    .athlos-page-backline{
        padding:0 10px;
    }

    .athlos-mc-single__crumbs{
        max-width:68%;
        overflow:hidden;
        white-space:nowrap;
    }

    .athlos-mc-single__crumbs a{
        overflow:hidden;
        text-overflow:ellipsis;
    }
}


/* ============================================================
   v0.13.7-beta — LARGE CENTERED VIDEO STAGE
   ============================================================ */

.athlos-video-grid--responsive{
    grid-template-columns:minmax(0,min(100%,1040px))!important;
    justify-content:center!important;
    justify-items:center!important;
    gap:24px!important;
    padding:24px 24px 34px!important;
}

.athlos-video-grid--responsive .athlos-video-card{
    width:min(100%,1040px)!important;
    max-width:1040px!important;
    margin:0 auto!important;
    border:1px solid #d8dde5!important;
    box-shadow:0 8px 28px rgba(23,30,45,.06);
}

.athlos-video-card__player{
    width:100%!important;
    aspect-ratio:16 / 9!important;
    background:#07090d!important;
}

.athlos-video-card__player iframe{
    display:block!important;
    width:100%!important;
    height:100%!important;
    max-width:none!important;
    margin:0!important;
}

.athlos-video-grid--responsive .athlos-video-card__image{
    width:100%!important;
}

.athlos-video-grid--responsive .athlos-video-card__body{
    padding:13px 15px 15px!important;
}

.athlos-video-grid--responsive .athlos-video-card__body strong{
    font-size:14px!important;
    line-height:1.3!important;
}

.athlos-video-grid--responsive .athlos-video-card__body small{
    font-size:10.5px!important;
}

/* Streamain's official embed uses the exact same stage as YouTube. */
.athlos-video-card--streamain .athlos-video-card__player,
.athlos-video-card--youtube .athlos-video-card__player{
    min-height:0;
}

/* Football roster assembled from several recent matchday squads. */
.athlos-team-roster__player small{
    line-height:1.35;
}

@media(max-width:782px){
    .athlos-video-grid--responsive{
        grid-template-columns:1fr!important;
        padding:8px 0 18px!important;
        gap:14px!important;
    }

    .athlos-video-grid--responsive .athlos-video-card{
        width:100%!important;
        max-width:none!important;
        border-left:0!important;
        border-right:0!important;
        box-shadow:none;
    }

    .athlos-video-grid--responsive .athlos-video-card__body{
        padding:11px 12px 13px!important;
    }
}


/* ============================================================
   v0.13.9-beta — TOP GAMES READABILITY
   Slightly larger carousel, especially typography.
   ============================================================ */

.athlos-mc[data-athlos-match-centre] .athlos-mc__topline{
    min-height:39px;
    padding:5px 10px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__title{
    font-size:16px!important;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__all-link{
    min-height:27px;
    padding:0 7px;
    font-size:11px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__all-link-arrow{
    font-size:15px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__arrow{
    width:32px;
    height:28px;
    font-size:20px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__filters{
    min-height:35px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__tab{
    min-height:34px;
    padding:7px 15px;
    font-size:11.5px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar{
    padding:3px 9px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__competition-bar select{
    width:min(310px,100%);
    min-height:29px;
    height:29px;
    padding:2px 30px 2px 9px;
    font-size:11px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__body{
    min-height:78px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__card,
.athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
    flex:0 0 225px;
    width:225px;
    min-width:225px;
    min-height:78px;
    height:78px;
    padding:4px 10px 5px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-meta{
    height:17px;
    margin-bottom:2px;
    gap:6px;
    font-size:10px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team{
    grid-template-columns:21px minmax(0,1fr) 25px;
    gap:6px;
    height:27px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap,
.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo{
    width:20px;
    height:20px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team .athlos-mc__team-logo-wrap{
    flex-basis:20px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team-name{
    font-size:12.5px;
    line-height:1.05;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__strip-score{
    font-size:14px;
}

.athlos-mc[data-athlos-match-centre] .athlos-mc__loading,
.athlos-mc[data-athlos-match-centre] .athlos-mc__message{
    min-height:78px;
    font-size:13px;
}

@media (min-width:1200px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex-basis:220px;
        width:220px;
        min-width:220px;
    }
}

@media (max-width:1199px) and (min-width:783px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex-basis:225px;
        width:225px;
        min-width:225px;
    }
}

@media (max-width:782px){
    .athlos-mc[data-athlos-match-centre] .athlos-mc__topline{
        min-height:39px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__title{
        font-size:15px!important;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__tab{
        min-height:33px;
        font-size:11px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__card,
    .athlos-mc[data-athlos-match-centre] .athlos-mc__card--basketball{
        flex:0 0 228px;
        width:228px;
        min-width:228px;
        min-height:76px;
        height:76px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__strip-team-name{
        font-size:12px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__strip-score{
        font-size:13.5px;
    }

    .athlos-mc[data-athlos-match-centre] .athlos-mc__strip-meta{
        font-size:9.7px;
    }
}


/* ============================================================
   v0.13.10-beta — STREAMAIN STRICT INLINE SANDBOX TEST
   ============================================================ */

.athlos-video-card--streamain .athlos-video-card__player{
    position:relative;
}

.athlos-video-card--streamain .athlos-video-card__player::before{
    content:"STREAMAIN · INLINE";
    position:absolute;
    z-index:2;
    left:10px;
    top:10px;
    padding:4px 7px;
    background:rgba(0,0,0,.72);
    color:#fff;
    font-size:9px;
    font-weight:900;
    letter-spacing:.05em;
    pointer-events:none;
}


/* ============================================================
   v0.13.11-beta — LIVE MATCH CARRYOVER AFTER MIDNIGHT
   ============================================================ */

.athlos-mc__card.is-carryover-live .athlos-mc__strip-meta::before{
    content:"LIVE";
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:28px;
    height:14px;
    padding:0 4px;
    margin-right:2px;
    background:#e30613;
    color:#fff;
    font-size:8px;
    font-weight:900;
    letter-spacing:.04em;
}


/* ============================================================
   v0.13.14-beta — STREAMAIN FORCED OFFICIAL EMBED
   ============================================================ */

.athlos-video-card--streamain .athlos-video-card__player::before{
    content:"STREAMAIN · OFFICIAL EMBED";
}

.athlos-video-card--streamain-error{
    width:min(100%,1040px)!important;
    max-width:1040px!important;
    margin:0 auto!important;
    border:1px solid #dfe3e9!important;
    background:#fff;
}

.athlos-video-card--streamain-error .athlos-video-card__body{
    text-align:center;
    padding:24px!important;
}


/* ============================================================
   v0.13.15-beta — STREAMAIN VERBATIM OFFICIAL IFRAME TEST
   ============================================================ */

.athlos-video-card--streamain .athlos-video-card__player::before{
    content:"STREAMAIN · ORIGINAL IFRAME";
}


/* ============================================================
   v0.13.16-beta — STREAMA.IN SHORT-DOMAIN NORMALIZATION
   ============================================================ */

.athlos-video-card--streamain .athlos-video-card__player::before{
    content:"STREAMAIN · INLINE";
}


/* ============================================================
   v0.13.18-beta — DEDICATED COMPETITION PAGES
   ============================================================ */

.athlos-mc-competition-template{
    width:100%;
}

.athlos-competition-page{
    width:min(1180px,calc(100% - 28px));
    margin:24px auto 42px;
}

.athlos-competition-hero .athlos-team-hero__logo img{
    object-fit:contain;
}

.athlos-competition-match-row small{
    text-align:right;
    opacity:.72;
}

.athlos-competition-page .athlos-team-standing-block{
    overflow:hidden;
}

@media (max-width:767px){
    .athlos-competition-page{
        width:min(100% - 18px,1180px);
        margin-top:14px;
    }

    .athlos-competition-match-row{
        grid-template-columns:82px minmax(0,1fr) 68px minmax(0,1fr)!important;
    }

    .athlos-competition-match-row > small{
        grid-column:1/-1;
        text-align:left;
        padding-left:82px;
    }
}

/* v0.14.0 — team league link, season schedule, round navigation, league directory */
.athlos-team-hero__league{margin-top:8px!important}
.athlos-team-hero__league a{display:inline-flex;align-items:center;gap:5px;color:#c8102e!important;text-decoration:none!important;font-size:13px;font-weight:900;letter-spacing:.03em;text-transform:uppercase}
.athlos-team-hero__league a:hover{text-decoration:underline!important}
.athlos-team-section__title>span{margin-left:auto;color:#747c89;font-size:12px;font-weight:800}
.athlos-round-browser{border:1px solid #e0e4ea;background:#fff}
.athlos-round-browser__controls{display:grid;grid-template-columns:42px minmax(180px,320px) 42px;justify-content:center;gap:8px;padding:12px;border-bottom:1px solid #e6e9ee;background:#f7f8fa}
.athlos-round-browser__controls button,.athlos-round-browser__controls select{height:40px;border:1px solid #d9dee6;background:#fff;font:inherit;font-weight:800;color:#171e2d}
.athlos-round-browser__controls button{cursor:pointer;font-size:23px;line-height:1}
.athlos-round-browser__controls select{padding:0 12px;text-align:center}
.athlos-round-browser__label{padding:12px 14px 6px;font-size:13px;font-weight:900;letter-spacing:.05em;color:#171e2d}
.athlos-full-mc__league-directory{margin:12px 0 4px;border:1px solid #dfe3e9;background:#fff}
.athlos-full-mc__league-directory summary{display:flex;align-items:center;gap:9px;padding:12px 14px;cursor:pointer;font-size:13px;font-weight:900;letter-spacing:.05em;color:#171e2d;list-style:none}
.athlos-full-mc__league-directory summary::-webkit-details-marker{display:none}
.athlos-full-mc__league-directory summary::after{content:'⌄';margin-left:auto;font-size:17px}
.athlos-full-mc__league-directory[open] summary::after{transform:rotate(180deg)}
.athlos-full-mc__league-directory summary span{font-size:11px;font-weight:700;color:#7a8290;letter-spacing:0;text-transform:none}
.athlos-full-mc__league-directory-panel{border-top:1px solid #e4e7ec;padding:15px}
.athlos-full-mc__league-popular{padding-bottom:14px;margin-bottom:14px;border-bottom:1px solid #eceff3}
.athlos-full-mc__league-popular>strong{display:block;margin-bottom:8px;font-size:11px;letter-spacing:.08em;color:#777f8c}
.athlos-full-mc__league-popular>div{display:flex;flex-wrap:wrap;gap:7px}
.athlos-full-mc__league-popular a{display:inline-flex;padding:7px 10px;border:1px solid #dde2e8;border-radius:999px;color:#171e2d!important;text-decoration:none!important;font-size:12px;font-weight:800;background:#fafbfc}
.athlos-full-mc__league-popular a:hover{border-color:#c8102e;color:#c8102e!important}
.athlos-full-mc__league-country-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.athlos-full-mc__league-country-grid section{min-width:0}
.athlos-full-mc__league-country-grid h4{margin:0 0 7px;font-size:11px;letter-spacing:.08em;color:#777f8c}
.athlos-full-mc__league-country-grid a{display:block;padding:5px 0;color:#171e2d!important;text-decoration:none!important;font-size:13px;font-weight:800;white-space:normal}
.athlos-full-mc__league-country-grid a:hover{color:#c8102e!important}
@media(max-width:767px){
  .athlos-round-browser__controls{grid-template-columns:38px minmax(0,1fr) 38px;padding:9px;gap:6px}
  .athlos-round-browser__controls button,.athlos-round-browser__controls select{height:38px}
  .athlos-full-mc__league-directory{margin:9px 0 2px}
  .athlos-full-mc__league-directory-panel{padding:12px}
  .athlos-full-mc__league-country-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 16px}
  .athlos-full-mc__league-popular>div{gap:6px}
  .athlos-full-mc__league-popular a{font-size:11px;padding:6px 8px}
}


/* ============================================================
   v0.15.0-beta — GLOBAL LEAGUE EXPLORE
   Explicit-search only: opening the panel makes zero API requests.
   ============================================================ */
.athlos-full-mc__league-explore{margin-top:8px}
.athlos-full-mc__league-explore summary{background:#171e2d;color:#fff}
.athlos-full-mc__league-explore summary span{color:#cbd1dc}
.athlos-full-mc__league-explore-intro{margin:0 0 12px;color:#697180;font-size:13px;line-height:1.45;font-weight:650}
.athlos-full-mc__league-explore-form{display:grid;grid-template-columns:auto minmax(180px,1fr) auto;gap:8px;align-items:center}
.athlos-full-mc__league-explore-sport{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 12px;background:#f2f4f7;border:1px solid #dfe3e9;color:#171e2d;font-size:12px;font-weight:900;letter-spacing:.04em}
.athlos-full-mc__league-explore-form input{width:100%;height:42px;border:1px solid #d9dee6;background:#fff;padding:0 13px;color:#171e2d;font:inherit;font-size:14px;font-weight:700;outline:none}
.athlos-full-mc__league-explore-form input:focus{border-color:#c8102e;box-shadow:0 0 0 2px rgba(200,16,46,.08)}
.athlos-full-mc__league-explore-form button{height:42px;border:0;background:#c8102e;color:#fff;padding:0 17px;font:inherit;font-size:12px;font-weight:900;letter-spacing:.04em;cursor:pointer}
.athlos-full-mc__league-explore-form button:hover{filter:brightness(.94)}
.athlos-full-mc__league-explore-status{min-height:18px;margin-top:10px;color:#737b88;font-size:12px;font-weight:800}
.athlos-full-mc__league-explore-results{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:5px}
.athlos-full-mc__league-explore-result{display:grid;grid-template-columns:42px minmax(0,1fr) auto;gap:10px;align-items:center;min-height:60px;padding:8px 11px;border:1px solid #e0e4ea;background:#fff;color:#171e2d!important;text-decoration:none!important}
.athlos-full-mc__league-explore-result:hover{border-color:#c8102e}
.athlos-full-mc__league-explore-result>span:nth-child(2){min-width:0;display:flex;flex-direction:column;gap:3px}
.athlos-full-mc__league-explore-result strong{font-size:14px;line-height:1.25;white-space:normal}
.athlos-full-mc__league-explore-result small{font-size:11px;color:#737b88;font-weight:700}
.athlos-full-mc__league-explore-result>b{font-size:22px;color:#c8102e}
.athlos-full-mc__league-explore-logo{width:38px;height:38px;display:flex;align-items:center;justify-content:center}
.athlos-full-mc__league-explore-logo img{max-width:36px;max-height:36px;object-fit:contain}
.athlos-full-mc__league-explore-logo-fallback{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f0f2f5;color:#606978;font-size:11px;font-weight:900}
@media(max-width:767px){
  .athlos-full-mc__league-explore-form{grid-template-columns:1fr auto}
  .athlos-full-mc__league-explore-sport{grid-column:1/-1;justify-content:flex-start;min-height:34px}
  .athlos-full-mc__league-explore-form input{min-width:0;height:40px;font-size:13px}
  .athlos-full-mc__league-explore-form button{height:40px;padding:0 12px}
  .athlos-full-mc__league-explore-results{grid-template-columns:1fr}
  .athlos-full-mc__league-explore-result{min-height:58px;padding:7px 9px}
}

/* ============================================================
   v0.15.1-beta — UNIFIED COMPETITION PAGE SHELL
   Same visual standings component across sports; sport-specific columns only.
   ============================================================ */
.athlos-team-standing-row--basketball,
.athlos-team-standing-row--volleyball{
    grid-template-columns:40px minmax(190px,1fr) repeat(6,64px);
    min-width:690px;
}

.athlos-team-standing-table--basketball .athlos-team-standing-row__points,
.athlos-team-standing-table--volleyball .athlos-team-standing-row__points{
    font-variant-numeric:tabular-nums;
}

@media(max-width:767px){
    .athlos-team-standing-row--basketball,
    .athlos-team-standing-row--volleyball{
        grid-template-columns:36px minmax(170px,1fr) repeat(6,58px);
        min-width:630px;
    }
}


/* ============================================================
   v0.15.2-beta — CLEAN COMPETITION DISCOVERY + RICH LEAGUE STATS
   ============================================================ */
.athlos-full-mc__competition-discovery{margin:14px 0 8px;border:1px solid #dfe3e9;background:#fff;padding:14px}
.athlos-full-mc__competition-discovery-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px;padding-bottom:10px;border-bottom:2px solid #171e2d}
.athlos-full-mc__competition-discovery-head strong{font-size:15px;font-weight:950;letter-spacing:.055em;color:#171e2d}
.athlos-full-mc__competition-discovery-head span{font-size:11px;font-weight:900;color:#707886;letter-spacing:.06em}
.athlos-full-mc__league-popular--compact{margin:0 0 12px;padding:0;border:0}
.athlos-full-mc__league-popular--compact>strong{margin-bottom:7px}
.athlos-full-mc__league-explore-form--clean{grid-template-columns:minmax(0,1fr) auto;margin-top:4px}
.athlos-full-mc__country-browser{margin-top:10px;border-top:1px solid #eceff3;padding-top:2px}
.athlos-full-mc__country-browser>summary{display:flex;align-items:center;cursor:pointer;list-style:none;padding:10px 0 4px;font-size:12px;font-weight:900;letter-spacing:.045em;color:#58616f}
.athlos-full-mc__country-browser>summary::-webkit-details-marker{display:none}
.athlos-full-mc__country-browser>summary::after{content:'⌄';margin-left:auto;font-size:16px;color:#171e2d}
.athlos-full-mc__country-browser[open]>summary::after{transform:rotate(180deg)}
.athlos-full-mc__country-browser .athlos-full-mc__league-country-grid{padding-top:12px}
.athlos-competition-stat-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.athlos-competition-stat-grid article{min-width:0;border:1px solid #e1e5ea;background:#fff;padding:14px 15px;display:flex;flex-direction:column;gap:5px}
.athlos-competition-stat-grid article>span{font-size:11px;font-weight:900;letter-spacing:.065em;color:#737b88}
.athlos-competition-stat-grid article>strong{font-size:27px;line-height:1.05;font-weight:950;color:#171e2d;font-variant-numeric:tabular-nums}
.athlos-competition-stat-grid article>strong.athlos-competition-stat-grid__text{font-size:17px;line-height:1.2;white-space:normal}
.athlos-competition-stat-grid article>small{font-size:11px;line-height:1.3;color:#7d8592;font-weight:700}
@media(max-width:767px){
    .athlos-full-mc__competition-discovery{margin:10px 0 6px;padding:11px}
    .athlos-full-mc__competition-discovery-head{margin-bottom:10px;padding-bottom:8px}
    .athlos-full-mc__competition-discovery-head strong{font-size:14px}
    .athlos-full-mc__competition-discovery-head span{font-size:10px}
    .athlos-full-mc__league-explore-form--clean{grid-template-columns:minmax(0,1fr) auto}
    .athlos-full-mc__country-browser .athlos-full-mc__league-country-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:13px 15px}
    .athlos-competition-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
    .athlos-competition-stat-grid article{padding:11px 10px}
    .athlos-competition-stat-grid article>strong{font-size:23px}
    .athlos-competition-stat-grid article>strong.athlos-competition-stat-grid__text{font-size:15px}
}


/* ============================================================
   v0.15.3-beta — DEEP COMPETITION STATISTICS
   ============================================================ */
.athlos-competition-deep-stats .athlos-entity-back{text-decoration:none!important}
.athlos-deep-stats-team-form{display:grid;grid-template-columns:minmax(220px,420px) auto;gap:8px;align-items:center;margin:0 0 14px}
.athlos-deep-stats-team-form select{height:44px;border:1px solid #d9dee6;background:#fff;padding:0 12px;font:inherit;font-size:14px;font-weight:800;color:#171e2d}
.athlos-deep-stats-team-form button{height:44px;border:0;background:#171e2d;color:#fff;padding:0 18px;font:inherit;font-size:12px;font-weight:950;letter-spacing:.055em;cursor:pointer}
.athlos-deep-stats-selected-team>h3{margin:4px 0 12px;font-size:20px;color:#171e2d}
.athlos-deep-stats-splits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.athlos-deep-stats-splits article{border:1px solid #e0e4e9;background:#fff;padding:14px}
.athlos-deep-stats-splits h3{margin:0 0 10px;font-size:12px;letter-spacing:.075em;color:#6e7785}
.athlos-deep-stats-splits dl{margin:0;display:grid;gap:7px}
.athlos-deep-stats-splits dl>div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-bottom:6px;border-bottom:1px solid #eef0f3}
.athlos-deep-stats-splits dl>div:last-child{border-bottom:0;padding-bottom:0}
.athlos-deep-stats-splits dt{font-size:12px;font-weight:800;color:#687180}
.athlos-deep-stats-splits dd{margin:0;font-size:16px;font-weight:950;color:#171e2d;font-variant-numeric:tabular-nums}
.athlos-stats-empty{margin:8px 0 0;padding:13px 14px;background:#f7f8fa;border:1px solid #e6e9ee;color:#697180;font-size:13px;font-weight:700;line-height:1.5}
.athlos-deep-stats-hint{margin:10px 0 0;color:#6f7784;font-size:12px;font-weight:700}
@media(max-width:767px){
  .athlos-deep-stats-team-form{grid-template-columns:minmax(0,1fr) auto}
  .athlos-deep-stats-team-form select{min-width:0;height:42px;font-size:13px}
  .athlos-deep-stats-team-form button{height:42px;padding:0 12px}
  .athlos-deep-stats-splits{grid-template-columns:1fr}
}

/* v0.15.3-beta — on-demand deep match statistics */
.athlos-deep-stats-selected-match{margin:16px 0 24px;padding:18px;border:1px solid #dfe3ea;background:#fff}
.athlos-deep-stats-selected-match>h3{margin:0 0 14px;font-size:18px}
.athlos-deep-match-stat-blocks{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.athlos-deep-match-stat-card{border:1px solid #e1e5eb;padding:15px;background:#fafbfc}
.athlos-deep-match-stat-card h3{margin:0 0 12px;font-size:16px}
.athlos-deep-match-stat-card dl{display:grid;gap:7px;margin:0}
.athlos-deep-match-stat-card dl>div{display:flex;align-items:center;justify-content:space-between;gap:16px;border-bottom:1px solid #e8ebef;padding-bottom:6px}
.athlos-deep-match-stat-card dt{font-weight:600;color:#5e6776}
.athlos-deep-match-stat-card dd{margin:0;font-weight:800;color:#171d2b}
.athlos-deep-stats-recent-matches{margin-top:24px}
@media(max-width:700px){.athlos-deep-match-stat-blocks{grid-template-columns:1fr}.athlos-deep-stats-selected-match{padding:13px}}


/* v0.15.6 — player season navigation */
.athlos-player-season-selector{display:flex;justify-content:flex-start;align-items:center;margin:14px 0 18px;padding:12px 14px;border:1px solid #dfe3ea;background:#f7f8fa}
.athlos-player-season-selector label{display:flex;align-items:center;gap:10px;margin:0;font-weight:800;font-size:13px;color:#667085}
.athlos-player-season-selector select{min-width:170px;height:40px;padding:0 38px 0 12px;border:1px solid #cfd5df;background:#fff;color:#111827;font-size:15px;font-weight:800}
.athlos-player-season-selector button{height:40px;margin-left:8px;padding:0 14px;border:1px solid #cfd5df;background:#fff;font-weight:800}
@media (max-width:680px){.athlos-player-season-selector{justify-content:stretch}.athlos-player-season-selector label{width:100%;justify-content:space-between}.athlos-player-season-selector select{flex:1;min-width:0}}


/* v0.15.7 — player competition source tabs */
.athlos-player-source-tabs{display:flex;align-items:center;justify-content:flex-start;gap:0;margin:14px 0 0;border-bottom:1px solid #dfe3ea}
.athlos-player-source-tabs a{display:inline-flex;align-items:center;justify-content:center;min-width:130px;min-height:42px;padding:10px 16px;border:1px solid #dfe3ea;border-bottom:0;background:#fff;color:#667085!important;text-decoration:none!important;font-size:13px;font-weight:900;letter-spacing:.02em}
.athlos-player-source-tabs a+a{border-left:0}
.athlos-player-source-tabs a.is-active{background:#171d2b;color:#fff!important;border-color:#171d2b}
.athlos-player-source-tabs + .athlos-player-season-selector{margin-top:0;border-top:0}
@media(max-width:680px){.athlos-player-source-tabs a{flex:1 1 0;min-width:0}.athlos-player-season-selector{justify-content:flex-start}}


/* v0.15.8 — stacked basketball sources + competition season selector */
.athlos-player-competition-block{margin:22px 0 30px;padding:0;border-top:2px solid #171d2b}
.athlos-player-competition-block__head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 0 4px}
.athlos-player-competition-block__head h2{margin:0;font-size:18px;font-weight:900;color:#111827}
.athlos-player-competition-block__head span{font-size:12px;font-weight:700;color:#7b8494}
.athlos-player-competition-block .athlos-player-season-selector{margin-left:0;margin-right:0;justify-content:flex-start}
.athlos-competition-season-selector{max-width:100%;justify-content:flex-start;margin:14px 0 18px}
.athlos-competition-season-selector label{justify-content:flex-start}
@media(max-width:680px){.athlos-player-competition-block__head{align-items:flex-start;flex-direction:column;gap:3px}.athlos-competition-season-selector label{justify-content:space-between}}


/* v0.18.26 — stable entity navigation: Back | MATCH CENTER | context */
.athlos-mc-single__topbar:not(.is-embedded),
.athlos-player-page__topline,
.athlos-team-page__topline,
.athlos-competition-page__topline,
.athlos-competition-deep-stats .athlos-player-page__topline{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;
    align-items:center!important;
    gap:12px!important;
}
.athlos-entity-matchcenter-link{
    justify-self:center;
    color:#171e2d!important;
    text-decoration:none!important;
    font-size:11px;
    font-weight:900;
    letter-spacing:.03em;
    white-space:nowrap;
}
.athlos-entity-matchcenter-link:hover{text-decoration:underline!important}
.athlos-mc-single__crumbs,
.athlos-player-page__topline>span,
.athlos-team-page__topline>span{
    justify-self:end;
    text-align:right;
    min-width:0;
}
@media(max-width:782px){
    .athlos-mc-single__topbar:not(.is-embedded),
    .athlos-player-page__topline,
    .athlos-team-page__topline{
        grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;
        gap:7px!important;
    }
    .athlos-entity-matchcenter-link{font-size:9.5px}
    .athlos-player-page__topline>span,
    .athlos-team-page__topline>span{font-size:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
}


/* ============================================================
   v0.18.29 — unified ΑΘΛΟΣ MATCH CENTER surface polish
   ============================================================ */
.athlos-full-mc__header{
  padding:18px 0 16px!important;
  border-bottom:3px solid #171e2d!important;
}
.athlos-full-mc__title{
  font-size:34px!important;
  line-height:1!important;
  letter-spacing:-.025em!important;
  font-weight:950!important;
  color:#171e2d!important;
}
.athlos-entity-matchcenter-link{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:34px!important;
  padding:0 13px!important;
  border:1px solid #d9dee6!important;
  border-radius:4px!important;
  background:#fff!important;
  font-size:10.5px!important;
  font-weight:950!important;
  letter-spacing:.035em!important;
  text-decoration:none!important;
}
.athlos-entity-matchcenter-link:hover{background:#f5f6f8!important;text-decoration:none!important}
.athlos-mc-single__tabs,
.athlos-team-page__tabs,
.athlos-player-page__tabs{background:#fafbfc!important}
.athlos-mc-single__tab{transition:background .12s ease,color .12s ease,border-color .12s ease}
.athlos-mc-single__tab:hover{background:#f3f5f8!important}
.athlos-mc-single__scoreboard{background:linear-gradient(180deg,#fff 0%,#fbfcfd 100%)!important}
.athlos-team-page__hero,.athlos-player-page__hero{background:linear-gradient(180deg,#fff 0%,#fafbfc 100%)!important}
@media(max-width:782px){
  .athlos-full-mc__title{font-size:27px!important}
  .athlos-entity-matchcenter-link{min-height:30px!important;padding:0 8px!important;font-size:8.7px!important}
}

/* ============================================================
   v0.18.34 — Central Match Center visual direction
   Strong ATHLOS identity at the chrome; quiet white data surface.
   ============================================================ */
.athlos-full-mc{
  --mc-border:#dfe3e8;
  --mc-text:#11141b;
  --mc-muted:#6e7581;
  --mc-soft:#f4f5f7;
  --mc-live:#d71935;
}
.athlos-full-mc__header{
  min-height:76px;
  display:flex!important;
  align-items:center!important;
  padding:0 18px!important;
  border:0!important;
  border-top:4px solid #c9152d!important;
  background:#09090a!important;
}
.athlos-full-mc__title{
  color:#fff!important;
  font-size:31px!important;
  letter-spacing:.015em!important;
  font-weight:950!important;
}
.athlos-full-mc__updated{
  color:#aeb4bd!important;
  font-size:10.5px!important;
  font-weight:750;
}
.athlos-full-mc__datebar{
  justify-content:flex-start!important;
  gap:6px!important;
  padding:10px 0 12px!important;
  border-bottom:1px solid #e4e7eb;
}
.athlos-full-mc__datebar button{
  border-radius:3px!important;
  min-height:36px;
  border-color:#d9dde3!important;
  font-weight:900!important;
}
.athlos-full-mc__today{
  background:#11141b!important;
  color:#fff!important;
  border-color:#11141b!important;
}
.athlos-full-mc__sports{
  margin:12px 0 10px!important;
  border:1px solid #dfe3e8!important;
  background:#fff;
}
.athlos-full-mc__sports button{
  min-height:42px;
  padding:0 10px!important;
  color:#6c7380!important;
  background:#fff!important;
  font-size:12px!important;
  letter-spacing:.035em;
}
.athlos-full-mc__sports button.is-active{
  position:relative;
  color:#11141b!important;
  background:#fff!important;
  box-shadow:inset 0 -3px 0 #c9152d;
}
.athlos-full-mc__competition-discovery{
  margin:10px 0!important;
  padding:10px 12px!important;
  border-color:#e0e4e9!important;
  background:#f7f8fa!important;
}
.athlos-full-mc__competition-discovery-head{
  margin-bottom:8px!important;
  padding-bottom:7px!important;
  border-bottom:1px solid #dfe3e8!important;
}
.athlos-full-mc__competition-discovery-head strong{
  font-size:13px!important;
  letter-spacing:.07em!important;
}
.athlos-full-mc__league-popular--compact>strong{font-size:10px;letter-spacing:.06em;color:#737a86}
.athlos-full-mc__league-popular--compact a{
  border-radius:999px!important;
  background:#fff!important;
}
.athlos-full-mc__filters{
  border:1px solid #dfe3e8;
  background:#fff;
}
.athlos-full-mc__viewnav{
  display:flex!important;
  align-items:center;
  gap:0!important;
  margin:10px 0 18px!important;
  border:1px solid #dfe3e8!important;
  background:#fff;
}
.athlos-full-mc__viewnav button{
  min-height:39px!important;
  flex:0 0 auto;
  padding:0 18px!important;
  border:0!important;
  border-right:1px solid #e4e7eb!important;
  background:#fff!important;
  color:#707784!important;
  font-size:11px!important;
  font-weight:950!important;
  letter-spacing:.04em;
}
.athlos-full-mc__viewnav button.is-active{
  color:#11141b!important;
  box-shadow:inset 0 -3px 0 #c9152d;
}
.athlos-full-mc__section-title-wrap{
  min-height:37px;
  padding:0 2px 8px!important;
  border-bottom:3px solid #11141b!important;
}
.athlos-full-mc__section-title-wrap h2{
  font-size:16px!important;
  letter-spacing:.025em;
}
.athlos-full-mc__top-list,.athlos-full-mc__live-list{
  border-color:#dfe3e8!important;
}
.athlos-league-group{
  margin-bottom:14px!important;
  border-color:#dfe3e8!important;
}
.athlos-league-group__head{
  min-height:38px;
  padding:8px 11px!important;
  background:#f3f4f6!important;
  border-bottom:1px solid #dfe3e8!important;
}
.athlos-league-group__head strong{
  color:#161a22;
  font-size:12px!important;
  letter-spacing:.02em;
}
.athlos-full-mc .athlos-match-row{
  min-height:58px;
  border-bottom-color:#eceef1!important;
  transition:background .12s ease,border-color .12s ease;
}
.athlos-full-mc .athlos-match-row:hover{background:#fafafa!important}
.athlos-full-mc .athlos-match-row.is-live{
  background:#fffafb!important;
  box-shadow:inset 3px 0 0 #d71935!important;
}
.athlos-full-mc .athlos-match-row.is-live .athlos-match-row__time{color:#d71935!important}

@media(max-width:782px){
  .athlos-full-mc__header{
    min-height:54px;
    padding:0 12px!important;
    border-top-width:3px!important;
  }
  .athlos-full-mc__title{
    font-size:22px!important;
    letter-spacing:.01em!important;
  }
  .athlos-full-mc__updated{display:none!important}
  .athlos-full-mc__datebar{
    justify-content:center!important;
    padding:8px 0 10px!important;
  }
  .athlos-full-mc__date-arrow{width:34px!important}
  .athlos-full-mc__date-button{min-width:150px!important;font-size:11.5px!important}
  .athlos-full-mc__today{padding:0 9px!important;font-size:10px!important}
  .athlos-full-mc__sports{
    margin:8px 0!important;
  }
  .athlos-full-mc__sports button{
    min-height:39px;
    font-size:10.5px!important;
    padding:0 5px!important;
  }
  .athlos-full-mc__competition-discovery{
    margin:8px 0!important;
    padding:9px!important;
  }
  .athlos-full-mc__competition-discovery-head span{display:none}
  .athlos-full-mc__viewnav{
    margin:8px 0 14px!important;
  }
  .athlos-full-mc__viewnav button{
    flex:1 1 33.333%;
    min-width:0;
    padding:0 4px!important;
    font-size:10px!important;
  }
  .athlos-full-mc__section{margin-bottom:20px!important}
  .athlos-full-mc__section-title-wrap{min-height:34px}
  .athlos-full-mc__section-title-wrap h2{font-size:14px!important}
  .athlos-league-group__head{min-height:35px;padding:7px 9px!important}
  .athlos-league-group__head strong{font-size:11px!important}
}

/* ============================================================
   v0.18.35 — COMPACT MATCH CENTER CONTROL DECK
   Keep discovery available, but do not let it push the first match below fold.
   ============================================================ */
.athlos-full-mc__header{
    min-height:60px!important;
    padding:0 15px!important;
}
.athlos-full-mc__title{
    font-size:28px!important;
}
.athlos-full-mc__datebar{
    min-height:44px!important;
    margin:0!important;
    padding:6px 0!important;
}
.athlos-full-mc__datebar button{
    min-height:32px!important;
    height:32px!important;
}
.athlos-full-mc__date-arrow{width:34px!important;font-size:20px!important}
.athlos-full-mc__date-button{height:32px!important;min-width:172px!important;padding:0 11px!important;font-size:12px!important}
.athlos-full-mc__today{height:32px!important;padding:0 11px!important;font-size:10px!important}

.athlos-full-mc__sports{
    margin:7px 0 6px!important;
}
.athlos-full-mc__sports button{
    min-height:36px!important;
    padding:0 9px!important;
    font-size:11px!important;
}

/* The large competition browser is now an on-demand drawer. */
.athlos-full-mc__competition-discovery{
    margin:6px 0!important;
    padding:0!important;
    border:1px solid #dfe3e8!important;
    background:#fff!important;
}
.athlos-full-mc__competition-discovery-head{
    min-height:38px!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    margin:0!important;
    padding:0 11px!important;
    border:0!important;
    cursor:pointer;
    list-style:none;
    user-select:none;
}
.athlos-full-mc__competition-discovery-head::-webkit-details-marker{display:none}
.athlos-full-mc__competition-discovery-head strong{
    flex:0 0 auto;
    font-size:11.5px!important;
    letter-spacing:.06em!important;
}
.athlos-full-mc__competition-discovery-head>span{
    flex:0 0 auto;
    padding-left:9px;
    border-left:1px solid #e4e7eb;
    color:#7a818d!important;
    font-size:9.5px!important;
    font-weight:900!important;
    letter-spacing:.05em!important;
}
.athlos-full-mc__competition-discovery-action{
    margin-left:auto;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#616976;
    font-size:9px;
    line-height:1;
    font-weight:900;
    letter-spacing:.055em;
}
.athlos-full-mc__competition-discovery-action::after{
    content:'⌄';
    color:#151922;
    font-size:15px;
    line-height:1;
    transition:transform .15s ease;
}
.athlos-full-mc__competition-discovery[open] .athlos-full-mc__competition-discovery-action::after{
    transform:rotate(180deg);
}
.athlos-full-mc__competition-discovery-body{
    padding:9px 11px 10px;
    border-top:1px solid #e2e5e9;
    background:#f7f8fa;
}
.athlos-full-mc__competition-discovery .athlos-full-mc__league-explore-form{
    margin:0 0 8px!important;
}
.athlos-full-mc__competition-discovery .athlos-full-mc__league-explore-form input,
.athlos-full-mc__competition-discovery .athlos-full-mc__league-explore-form button{
    height:34px!important;
    min-height:34px!important;
}
.athlos-full-mc__competition-discovery .athlos-full-mc__league-popular--compact{
    margin:0 0 7px!important;
}
.athlos-full-mc__competition-discovery .athlos-full-mc__country-browser{
    margin-top:5px!important;
}

.athlos-full-mc__filters{
    min-height:40px!important;
    margin-bottom:6px!important;
}
.athlos-full-mc__subnav{
    padding:0!important;
    min-height:40px;
    align-items:center!important;
}
.athlos-full-mc__subnav button{
    min-height:30px!important;
    margin:4px 0 4px 6px!important;
    padding:0 11px!important;
    font-size:10px!important;
}
.athlos-full-mc__league-filter{
    min-height:40px!important;
    padding:4px 6px!important;
}
.athlos-full-mc__league-filter select{height:30px!important}

.athlos-full-mc__viewnav{
    min-height:38px!important;
    margin:6px 0 10px!important;
}
.athlos-full-mc__viewnav button{
    min-height:36px!important;
    padding:0 14px!important;
    font-size:10px!important;
}
.athlos-full-mc__section{margin-bottom:18px!important}

@media(max-width:782px){
    .athlos-full-mc__header{min-height:54px!important;padding:0 11px!important}
    .athlos-full-mc__title{font-size:22px!important}
    .athlos-full-mc__datebar{padding:5px 0!important}
    .athlos-full-mc__date-button{min-width:0!important;flex:1 1 auto!important}
    .athlos-full-mc__sports{margin:5px 0!important}
    .athlos-full-mc__sports button{min-height:34px!important;font-size:10px!important}
    .athlos-full-mc__competition-discovery{margin:5px 0!important}
    .athlos-full-mc__competition-discovery-head{min-height:36px!important;padding:0 9px!important;gap:7px!important}
    .athlos-full-mc__competition-discovery-head strong{font-size:10.5px!important}
    .athlos-full-mc__competition-discovery-action{font-size:0!important}
    .athlos-full-mc__competition-discovery-action::before{content:'ΑΝΟΙΓΜΑ';font-size:8.5px}
    .athlos-full-mc__filters{margin-bottom:4px!important}
    .athlos-full-mc__league-filter{min-height:36px!important}
    .athlos-full-mc__viewnav{margin:4px 0 8px!important}
}

/* ============================================================
   v0.18.37 — GLOBAL LIVE PULSE + LIVE MATCH IDENTITY
   Central Match Center mirrors the desktop carousel: one global LIVE signal
   plus a separate lamp on every sport that currently has live action.
   ============================================================ */
@keyframes athlos-full-live-blink{
    0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 0 rgba(215,25,53,.36)}
    50%{opacity:.48;transform:scale(.88);box-shadow:0 0 0 5px rgba(215,25,53,0)}
}
.athlos-full-mc__title-wrap{
    min-width:0;
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}
.athlos-full-mc__global-live{
    display:inline-flex;
    align-items:center;
    gap:5px;
    min-height:24px;
    padding:3px 8px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:10px;
    line-height:1;
    font-weight:950;
    letter-spacing:.05em;
}
.athlos-full-mc__global-live[hidden]{display:none!important}
.athlos-full-mc__global-live b{color:#ff4057;font:inherit}
.athlos-full-mc__global-live em{font-style:normal;color:#fff;font-weight:950}
.athlos-full-mc__global-live-dot,
.athlos-full-mc__sport-live-dot{
    display:inline-block;
    flex:0 0 auto;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ef324a;
    box-shadow:0 0 0 3px rgba(215,25,53,.13);
}
.athlos-full-mc__global-live-dot,
.athlos-full-mc__sport-live-dot.is-live{
    animation:athlos-full-live-blink 1.12s ease-in-out infinite;
}
.athlos-full-mc__sport-live-dot[hidden]{display:none!important}
.athlos-full-mc__sports button{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:7px!important;
}
.athlos-full-mc__sports button.has-live-sport{color:#252a34!important}
.athlos-full-mc__sports button.has-live-sport.is-active .athlos-full-mc__sport-live-dot{background:#d71935}

.athlos-mc-single__status-wrap{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:0;
}
.athlos-mc-single__live-pill{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 7px;
    border-radius:999px;
    background:#d71935;
    color:#fff!important;
    font-size:9px;
    line-height:1;
    font-weight:950;
    letter-spacing:.07em;
    white-space:nowrap;
}
.athlos-mc-single__live-pill[hidden]{display:none!important}
.athlos-mc-single__live-pill i{
    display:inline-block;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#fff;
    animation:athlos-full-live-blink 1.05s ease-in-out infinite;
}
.athlos-mc--single.is-live-match .athlos-mc-single__meta strong{color:#d71935!important}

@media(max-width:782px){
    .athlos-full-mc__title-wrap{gap:8px}
    .athlos-full-mc__global-live{min-height:21px;padding:3px 6px;font-size:8.5px}
    .athlos-full-mc__global-live-dot,.athlos-full-mc__sport-live-dot{width:7px;height:7px}
    .athlos-full-mc__sports button{gap:5px!important}
    .athlos-mc-single__meta{gap:7px;flex-wrap:wrap}
    .athlos-mc-single__status-wrap{gap:6px}
}
@media(prefers-reduced-motion:reduce){
    .athlos-full-mc__global-live-dot,
    .athlos-full-mc__sport-live-dot,
    .athlos-mc-single__live-pill i{animation:none!important}
}

/* ============================================================
   v0.18.46-beta — DAILY TIMELINE UX
   Completed matches are first-class citizens: ALL is split into
   LIVE / upcoming / finals and each state also has its own filter.
   ============================================================ */
.athlos-full-mc__viewnav{
  overflow-x:auto!important;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
}
.athlos-full-mc__viewnav::-webkit-scrollbar{display:none}
.athlos-full-mc__viewnav button{
  white-space:nowrap;
}
.athlos-full-mc__viewnav button > span:not(.athlos-full-mc__tiny-live){
  margin-left:3px;
  color:#969ca6;
  font-size:.88em;
  font-weight:800;
}
.athlos-full-mc__viewnav button.is-active > span:not(.athlos-full-mc__tiny-live){
  color:#5d6470;
}
.athlos-full-mc__section-title-wrap--count{
  justify-content:flex-start;
}
.athlos-full-mc__section-title-wrap--count .athlos-full-mc__section-count{
  margin-left:auto;
  color:#858c98!important;
  font-size:11px!important;
  font-weight:800;
}
.athlos-full-mc__section[data-athlos-upcoming-section] .athlos-full-mc__section-title-wrap{
  border-bottom-color:#20242d!important;
}
.athlos-full-mc__section[data-athlos-finished-section] .athlos-full-mc__section-title-wrap{
  border-bottom-color:#7b828d!important;
}
.athlos-full-mc__section[data-athlos-finished-section] .athlos-match-row{
  background:#fcfcfd;
}
.athlos-full-mc__section[data-athlos-finished-section] .athlos-match-row__time{
  color:#7b828d!important;
}
@media(max-width:782px){
  .athlos-full-mc__viewnav{
    scroll-snap-type:x proximity;
  }
  .athlos-full-mc__viewnav button{
    scroll-snap-align:start;
    padding:0 12px!important;
  }
  .athlos-full-mc__section-title-wrap--count .athlos-full-mc__section-count{
    font-size:10px!important;
  }
}


/* v0.18.54 — official FIBA Team/Coaches + TOTAL boxscore footer */
.athlos-match-shell .athlos-fiba-box-row--team,
.athlos-match-shell .athlos-fiba-box-row--total{
    border-top:1px solid #d9dee5;
}
.athlos-match-shell .athlos-fiba-box-row--team{
    background:#f5f6f8;
}
.athlos-match-shell .athlos-fiba-box-row--total{
    background:#fff;
    border-top:2px solid #c7cdd5;
    font-weight:700;
}
.athlos-match-shell .athlos-fiba-box-row--team .athlos-nba-box-player strong,
.athlos-match-shell .athlos-fiba-box-row--total .athlos-nba-box-player strong{
    white-space:nowrap;
}


/* v0.18.59 — team season timeline selector */
.athlos-team-season-selector{margin:0 0 16px;background:#fff;border-left:3px solid #d71920}
.athlos-team-season-selector label>span{color:#111827;letter-spacing:.035em}
@media(max-width:680px){.athlos-team-season-selector{margin-bottom:12px}}
.athlos-team-empty{padding:20px;border:1px solid #e1e5eb;background:#f8f9fb;color:#667085;font-weight:700;text-align:center}


/* ============================================================
   v0.18.60-beta — mathematically centred Match Center masthead
   The title stays on the exact viewport/content centre.
   LIVE is visually attached without shifting it.
   ============================================================ */
.athlos-full-mc__header{
    position:relative!important;
    justify-content:flex-start!important;
}
.athlos-full-mc__title-wrap{
    position:absolute!important;
    left:50%!important;
    top:50%!important;
    transform:translate(-50%,-50%)!important;
    flex-wrap:nowrap!important;
    gap:0!important;
    z-index:1;
}
.athlos-full-mc__title{
    white-space:nowrap!important;
    text-align:center!important;
}
.athlos-full-mc__global-live{
    position:absolute!important;
    left:calc(100% + 12px)!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    white-space:nowrap!important;
}
@media(max-width:782px){
    .athlos-full-mc__title-wrap{gap:0!important}
    .athlos-full-mc__global-live{left:calc(100% + 6px)!important}
}


/* v0.18.61 — entity names are navigational across Match Center. */
.athlos-match-row__entity-link,
.athlos-match-row__match-link,
.athlos-entity-inline-link,
.athlos-mc__entity-link,
.athlos-player-row__profile-link,
.athlos-lineup-player a,
.athlos-standing__team a,
.athlos-form-team a,
.athlos-form-game a,
.athlos-h2h a,
.athlos-stats__head a,
.athlos-player-team__head a{
    color:inherit!important;
    text-decoration:none!important;
}
.athlos-match-row__entity-link:hover,
.athlos-match-row__match-link:hover,
.athlos-entity-inline-link:hover,
.athlos-mc__entity-link:hover,
.athlos-player-row__profile-link:hover,
.athlos-lineup-player a:hover,
.athlos-standing__team a:hover,
.athlos-form-team a:hover,
.athlos-form-game a:hover,
.athlos-h2h a:hover,
.athlos-stats__head a:hover,
.athlos-player-team__head a:hover{
    text-decoration:underline!important;
    text-underline-offset:2px;
}

/* v0.18.62 — cold default basketball boxscore stays local-only until real user demand. */
.athlos-mc-single__demand-button{appearance:none;border:1px solid #171d2b;background:#171d2b;color:#fff;padding:11px 18px;border-radius:4px;font:inherit;font-size:12px;font-weight:900;letter-spacing:.035em;cursor:pointer}.athlos-mc-single__demand-button:hover,.athlos-mc-single__demand-button:focus-visible{background:#fff;color:#171d2b}

/* ============================================================
   v0.18.66-beta — isolated semantic SEO copy presentation
   Presentation only: no existing Match Center selector is rewritten.
   ============================================================ */
.athlos-mc-seo-intro{
    margin:10px 0 18px;
    font-size:14px;
    line-height:1.55;
    opacity:.78;
}
.athlos-mc-single__seo-heading{
    margin:12px 0 4px;
    text-align:center;
    font-size:18px;
    line-height:1.3;
    font-weight:800;
}
.athlos-mc--single>.athlos-mc-seo-intro{
    max-width:920px;
    margin:10px auto 18px;
    padding:0 16px;
    text-align:center;
}
.athlos-team-page>.athlos-mc-seo-intro,
.athlos-player-page>.athlos-mc-seo-intro{
    margin-left:0;
    margin-right:0;
}
.athlos-full-mc>.athlos-mc-seo-intro{
    margin:26px 0 0;
    padding:16px 12px 0;
    border-top:1px solid rgba(12,30,57,.10);
    text-align:center;
    opacity:.68;
}
@media(max-width:782px){
    .athlos-mc-single__seo-heading{font-size:16px}
    .athlos-mc-seo-intro{font-size:13px;line-height:1.5}
}


/* v0.18.81 — player photos/jersey fallback + server-visible video preview */
.athlos-team-roster__avatar--number{font-variant-numeric:tabular-nums;font-size:14px;font-weight:900;letter-spacing:-.25px}
.athlos-mc-video-preview{margin:18px 0 22px;padding:15px;border:1px solid rgba(12,30,57,.10);border-radius:14px;background:#fff}
.athlos-mc-video-preview__head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:12px}
.athlos-mc-video-preview__head strong{font-size:14px;font-weight:900;letter-spacing:.02em}
.athlos-mc-video-preview__head span{font-size:12px;opacity:.65}
.athlos-mc-video-preview__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.athlos-mc-video-preview__item{display:grid;grid-template-columns:112px minmax(0,1fr);gap:10px;align-items:center;color:inherit;text-decoration:none;min-width:0}
.athlos-mc-video-preview__thumb{position:relative;display:block;aspect-ratio:16/9;border-radius:9px;overflow:hidden;background:#111}
.athlos-mc-video-preview__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.athlos-mc-video-preview__thumb i{position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-style:normal;font-size:22px}
.athlos-mc-video-preview__thumb b{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:rgba(0,0,0,.68);color:#fff;font-size:12px}
.athlos-mc-video-preview__item>strong{font-size:13px;line-height:1.3;min-width:0}
.athlos-mc-video-preview>p{margin:11px 0 0;font-size:12px;opacity:.72}
@media(max-width:640px){.athlos-mc-video-preview__grid{grid-template-columns:1fr}.athlos-mc-video-preview__item{grid-template-columns:96px minmax(0,1fr)}}


/* v0.18.83 — native Streamff media inside the ATHLOS video stage. */
.athlos-video-card__player video{
    position:absolute;
    inset:0;
    display:block;
    width:100%!important;
    height:100%!important;
    max-width:none!important;
    margin:0!important;
    border:0!important;
    background:#07090d;
    object-fit:contain;
}

/* v0.18.86 — YouTube embed fallback + native Streamin stage. */
.athlos-video-card--streamin .athlos-video-card__player{position:relative}
.athlos-video-card--youtube-locked .athlos-video-card__youtube-external{
    display:block;
    color:inherit;
    text-decoration:none;
}
.athlos-video-card__player .athlos-video-card__youtube-external{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    overflow:hidden;
    color:#fff;
    text-decoration:none;
    background:#07090d;
}
.athlos-video-card__player .athlos-video-card__youtube-external .athlos-video-card__image{
    position:absolute;
    inset:0;
    width:100%!important;
    height:100%!important;
    aspect-ratio:auto!important;
    opacity:.72;
}
.athlos-video-card__player .athlos-video-card__youtube-external>strong{
    position:relative;
    z-index:2;
    padding:10px 14px;
    border-radius:7px;
    background:rgba(0,0,0,.72);
    font-size:13px;
    font-weight:900;
    letter-spacing:.01em;
}

/* ============================================================
   v0.19.00-beta — MATCH / TEAM UX PASS
   ============================================================ */
.athlos-mc-single__competition{
    display:flex;
    justify-content:center;
    padding:8px 12px 0;
}
.athlos-mc-single__competition a{
    color:#606978!important;
    text-decoration:none!important;
    font-size:12px;
    font-weight:900;
    letter-spacing:.035em;
}
.athlos-mc-single__competition a:hover{text-decoration:underline!important}

.athlos-mc-single__tabs-shell{position:relative}
.athlos-mc-single__tabs-nav{display:none}

.athlos-overview--match{display:flex;flex-direction:column;gap:14px}
.athlos-overview-status{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:11px 14px;
    border:1px solid #e0e4ea;
    background:#f8f9fb;
}
.athlos-overview-status span{font-size:11px;font-weight:950;letter-spacing:.055em;color:#687181}
.athlos-overview-status strong{font-size:21px;font-weight:950;color:#171e2d;font-variant-numeric:tabular-nums}
.athlos-overview-block{border:1px solid #dfe3e9;background:#fff}
.athlos-overview-block__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:9px 11px;
    border-bottom:1px solid #e5e8ed;
    background:#fafbfc;
}
.athlos-overview-block__head strong{font-size:12px;font-weight:950;letter-spacing:.035em;color:#171e2d}
.athlos-overview-block__head button{
    appearance:none;
    border:0;
    background:transparent;
    color:#697282;
    padding:0;
    font-size:9px;
    font-weight:900;
    cursor:pointer;
}
.athlos-overview-block__head button:hover{text-decoration:underline}
.athlos-overview-events{display:grid}
.athlos-overview-event{
    display:grid;
    grid-template-columns:48px 28px minmax(0,1fr);
    align-items:center;
    gap:8px;
    min-height:48px;
    padding:7px 11px;
    border-bottom:1px solid #edf0f3;
}
.athlos-overview-event:last-child{border-bottom:0}
.athlos-overview-event>span{font-size:11px;font-weight:900;color:#5f6877;text-align:center}
.athlos-overview-event>i{font-style:normal;text-align:center}
.athlos-overview-event>div{min-width:0;display:flex;align-items:baseline;gap:7px;flex-wrap:wrap}
.athlos-overview-event>div>strong{font-size:11px;font-weight:950}
.athlos-overview-event>div>b{font-size:12px;font-weight:900}
.athlos-overview-event>div>small{font-size:10px;color:#747d8b}
.athlos-overview-event a{color:inherit!important;text-decoration:none!important}
.athlos-overview-event a:hover{text-decoration:underline!important}
.athlos-overview-quick-stats{display:grid}
.athlos-overview-quick-stats>div{
    display:grid;
    grid-template-columns:74px minmax(0,1fr) 74px;
    align-items:center;
    gap:8px;
    min-height:42px;
    padding:6px 11px;
    border-bottom:1px solid #edf0f3;
    text-align:center;
}
.athlos-overview-quick-stats>div:last-child{border-bottom:0}
.athlos-overview-quick-stats strong{font-size:13px;font-weight:950;font-variant-numeric:tabular-nums}
.athlos-overview-quick-stats span{font-size:10px;font-weight:850;color:#697282}
.athlos-overview-video-cta{
    appearance:none;
    width:100%;
    min-height:54px;
    display:grid;
    grid-template-columns:34px minmax(0,1fr) auto;
    align-items:center;
    gap:9px;
    padding:10px 13px;
    border:1px solid #dfe3e9;
    background:#171e2d;
    color:#fff;
    text-align:left;
    cursor:pointer;
}
.athlos-overview-video-cta>span{font-size:20px;text-align:center}
.athlos-overview-video-cta>strong{font-size:11px;font-weight:950;letter-spacing:.035em}
.athlos-overview-video-cta>small{font-size:9px;color:#d3d8e1;font-weight:800}

.athlos-team-fixture-row--first-future{border-top:2px solid #171e2d}
.athlos-team-fixture-row > strong{font-size:12.5px}
.athlos-team-fixture-row > b{font-size:13px;font-weight:950}
.athlos-team-fixture-row__date{font-size:10.5px}
.athlos-team-fixture-row > small{font-size:10.5px}
.athlos-team-standing-row:not(.athlos-team-standing-row--head) > span{font-size:11.5px}
.athlos-team-standing-row__team strong{font-size:12px}
.athlos-team-schedule-toggle{
    appearance:none;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:9px 12px;
    border:1px solid #dfe3e9;
    border-top:0;
    background:#fff;
    color:#171e2d;
    cursor:pointer;
}
.athlos-team-schedule-toggle span{font-size:18px;line-height:1}
.athlos-team-schedule-toggle strong{font-size:10px;font-weight:950;letter-spacing:.045em}
.athlos-team-schedule-toggle:hover{background:#f6f7f9}

@media(max-width:782px){
    .athlos-mc-single__competition{padding-top:6px}
    .athlos-mc-single__competition a{font-size:11px}

    .athlos-mc-single__tabs-shell{overflow:hidden}
    .athlos-mc-single__tabs-shell::before,
    .athlos-mc-single__tabs-shell::after{
        content:"";
        position:absolute;
        z-index:4;
        top:1px;
        bottom:1px;
        width:30px;
        pointer-events:none;
        opacity:0;
        transition:opacity .15s ease;
    }
    .athlos-mc-single__tabs-shell::before{left:0;background:linear-gradient(90deg,#fff 15%,rgba(255,255,255,0))}
    .athlos-mc-single__tabs-shell::after{right:0;background:linear-gradient(270deg,#fff 15%,rgba(255,255,255,0))}
    .athlos-mc-single__tabs-shell.has-left-overflow::before,
    .athlos-mc-single__tabs-shell.has-right-overflow::after{opacity:1}
    .athlos-mc-single__tabs-nav{
        appearance:none;
        position:absolute;
        z-index:6;
        top:50%;
        transform:translateY(-50%);
        width:27px;
        height:31px;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:0;
        border:1px solid #d7dce4;
        border-radius:50%;
        background:rgba(255,255,255,.96);
        color:#171e2d;
        font-size:20px;
        font-weight:900;
        line-height:1;
        box-shadow:0 2px 8px rgba(23,30,45,.10);
        cursor:pointer;
    }
    .athlos-mc-single__tabs-nav[hidden]{display:none!important}
    .athlos-mc-single__tabs-nav--prev{left:4px}
    .athlos-mc-single__tabs-nav--next{right:4px}
    .athlos-mc-single__tabs{scroll-behavior:smooth;padding-left:2px;padding-right:2px}

    .athlos-overview--match{gap:10px}
    .athlos-overview-event{grid-template-columns:40px 24px minmax(0,1fr);padding:7px 8px}
    .athlos-overview-quick-stats>div{grid-template-columns:60px minmax(0,1fr) 60px;padding:6px 8px}
    .athlos-overview-video-cta{grid-template-columns:30px minmax(0,1fr);min-height:50px}
    .athlos-overview-video-cta>small{grid-column:2}

    .athlos-team-fixture-row > strong{font-size:12px}
    .athlos-team-fixture-row > b{font-size:12.5px}
    .athlos-team-standing-row:not(.athlos-team-standing-row--head) > span{font-size:11px}
    .athlos-team-standing-row__team strong{font-size:12px}
    .athlos-team-schedule-toggle{border-left:0;border-right:0}
}


/* v0.19.02 — football PBP naming + semantic intro */
.athlos-tab-label--mobile{display:none}
.athlos-pbp-seo-intro{
    margin:0 0 12px;
    padding:12px 14px;
    border:1px solid #dfe3e9;
    background:#fff;
}
.athlos-pbp-seo-intro[hidden]{display:none!important}
.athlos-pbp-seo-intro h2{
    margin:0;
    font-size:15px;
    line-height:1.25;
    font-weight:950;
    letter-spacing:.025em;
    color:#171e2d;
}
.athlos-pbp-seo-intro p{
    margin:6px 0 0;
    font-size:11.5px;
    line-height:1.5;
    color:#697282;
}
@media(max-width:782px){
    .athlos-mc-single__tabs button[data-athlos-single-tab="events"] .athlos-tab-label--full,
    .athlos-mc-single__tabs button[data-athlos-single-tab="overview"] .athlos-tab-label--full{display:none}
    .athlos-mc-single__tabs button[data-athlos-single-tab="events"] .athlos-tab-label--mobile,
    .athlos-mc-single__tabs button[data-athlos-single-tab="overview"] .athlos-tab-label--mobile{display:inline}
    .athlos-pbp-seo-intro{margin-bottom:10px;padding:11px 10px}
    .athlos-pbp-seo-intro h2{font-size:13.5px}
    .athlos-pbp-seo-intro p{font-size:11px}
}

/* v0.19.03 — compact mobile label for ΣΤΟΙΧΕΙΑ ΑΓΩΝΑ; event player links reuse entity-link styling. */


/* v0.19.04 — compact one-line official FIBA player identity. */
.athlos-nba-box-row.athlos-fiba-box-row:not(.athlos-nba-box-row--head):not(.athlos-fiba-box-row--team):not(.athlos-fiba-box-row--total){
    min-height:34px;
}
.athlos-nba-box-row.athlos-fiba-box-row:not(.athlos-nba-box-row--head):not(.athlos-fiba-box-row--team):not(.athlos-fiba-box-row--total) > span,
.athlos-nba-box-row.athlos-fiba-box-row:not(.athlos-nba-box-row--head):not(.athlos-fiba-box-row--team):not(.athlos-fiba-box-row--total) > strong{
    padding-top:4px;
    padding-bottom:4px;
}
.athlos-fiba-box-player{
    display:flex!important;
    align-items:center;
    gap:8px;
    min-width:0;
}
.athlos-fiba-box-player .athlos-player-row__profile-link,
.athlos-fiba-box-player > strong{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.athlos-fiba-box-player strong{
    display:inline!important;
}
.athlos-fiba-player-number{
    flex:0 0 30px;
    width:30px;
    text-align:right;
    color:#4f5968;
    font-size:11px;
    font-weight:900;
    line-height:1;
}


/* ============================================================
   v0.19.12-beta — football scorers / red cards under scoreboard
   ============================================================ */
.athlos-mc-single__incidents{
    display:grid;
    grid-template-columns:minmax(0,1fr) 150px minmax(0,1fr);
    gap:20px;
    align-items:start;
    padding:0 28px 18px;
    margin-top:-8px;
}
.athlos-mc-single__incidents[hidden]{display:none!important}
.athlos-mc-single__incidents-team{
    display:flex;
    flex-direction:column;
    gap:5px;
    min-width:0;
}
.athlos-mc-single__incidents-team--home{grid-column:1;text-align:center}
.athlos-mc-single__incidents-team--away{grid-column:3;text-align:center}
.athlos-mc-single__incident{
    display:flex;
    justify-content:center;
    align-items:baseline;
    gap:6px;
    min-width:0;
    color:#202735;
    font-size:12.5px;
    line-height:1.35;
    font-weight:700;
}
.athlos-mc-single__incident-icon{
    flex:0 0 auto;
    font-size:12px;
    line-height:1;
    font-weight:400;
}
.athlos-mc-single__incident-main{min-width:0}
.athlos-mc-single__incident-main a{
    color:inherit;
    font-weight:850;
    text-decoration:none;
}
.athlos-mc-single__incident-main a:hover{text-decoration:underline}
.athlos-mc-single__incident-main em{
    font-style:normal;
    font-weight:700;
    color:#596273;
    white-space:normal;
}
.athlos-mc-single__incident-main small{
    font-size:10px;
    font-weight:850;
    color:#596273;
}
.athlos-mc-single__incident--red .athlos-mc-single__incident-main a,
.athlos-mc-single__incident--red .athlos-mc-single__incident-main>span{font-weight:850}

@media(max-width:782px){
    .athlos-mc-single__incidents{
        grid-template-columns:minmax(0,1fr) 96px minmax(0,1fr);
        gap:8px;
        padding:0 10px 15px;
        margin-top:-5px;
    }
    .athlos-mc-single__incident{
        gap:4px;
        font-size:10.5px;
        line-height:1.3;
    }
    .athlos-mc-single__incident-icon{font-size:10px}
    .athlos-mc-single__incident-main small{font-size:8.5px}
}


/* ============================================================
   v0.19.88 — DESKTOP SHORTCODE TAB DISCOVERABILITY
   The full-match shortcode can live in a narrower article/TagDiv column.
   On desktop, expose the same overflow affordance used on mobile only when
   there are hidden tabs; standalone match pages remain unchanged.
   ============================================================ */
@media (min-width:783px){
    .athlos-match-full-embed .athlos-mc-single__tabs-shell{
        overflow:hidden;
    }
    .athlos-match-full-embed .athlos-mc-single__tabs-shell::before,
    .athlos-match-full-embed .athlos-mc-single__tabs-shell::after{
        content:"";
        position:absolute;
        z-index:4;
        top:1px;
        bottom:1px;
        width:42px;
        pointer-events:none;
        opacity:0;
        transition:opacity .15s ease;
    }
    .athlos-match-full-embed .athlos-mc-single__tabs-shell::before{
        left:0;
        background:linear-gradient(90deg,#fff 22%,rgba(255,255,255,0));
    }
    .athlos-match-full-embed .athlos-mc-single__tabs-shell::after{
        right:0;
        background:linear-gradient(270deg,#fff 22%,rgba(255,255,255,0));
    }
    .athlos-match-full-embed .athlos-mc-single__tabs-shell.has-left-overflow::before,
    .athlos-match-full-embed .athlos-mc-single__tabs-shell.has-right-overflow::after{
        opacity:1;
    }
    .athlos-match-full-embed .athlos-mc-single__tabs-nav{
        appearance:none;
        position:absolute;
        z-index:6;
        top:50%;
        transform:translateY(-50%);
        width:31px;
        height:35px;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:0;
        border:1px solid #d7dce4;
        border-radius:50%;
        background:rgba(255,255,255,.97);
        color:#171e2d;
        font-size:22px;
        font-weight:900;
        line-height:1;
        box-shadow:0 2px 9px rgba(23,30,45,.12);
        cursor:pointer;
    }
    .athlos-match-full-embed .athlos-mc-single__tabs-nav[hidden]{display:none!important}
    .athlos-match-full-embed .athlos-mc-single__tabs-nav--prev{left:5px}
    .athlos-match-full-embed .athlos-mc-single__tabs-nav--next{right:5px}
    .athlos-match-full-embed .athlos-mc-single__tabs{scroll-behavior:smooth}
}

/* v0.19.91 — cached VIDEO discoverability directly below the score, all sports. */
.athlos-mc--single .athlos-mc-single__middle{
    flex-direction:column;
    gap:8px;
}
.athlos-mc-single__video-jump{
    appearance:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    min-height:26px;
    padding:4px 9px;
    border:1px solid rgba(18,27,45,.18);
    border-radius:999px;
    background:#fff;
    color:#171e2d;
    font:inherit;
    cursor:pointer;
    line-height:1;
    white-space:nowrap;
}
.athlos-mc-single__video-jump>span{font-size:10px}
.athlos-mc-single__video-jump>strong{font-size:9px;font-weight:950;letter-spacing:.06em}
.athlos-mc-single__video-jump:hover{border-color:#171e2d}
@media(max-width:782px){
    .athlos-mc--single .athlos-mc-single__middle{gap:6px}
    .athlos-mc-single__video-jump{min-height:24px;padding:3px 7px}
    .athlos-mc-single__video-jump>strong{font-size:8px}
}

/* =========================================================
   v0.20.58 — FOOTBALL MATCH VISUAL LAYER
   Presentation-only: visual statistics, formation pitch and
   two-sided event timeline. No provider/data/cadence changes.
   ========================================================= */

/* Football statistics — match-up graphics */
.athlos-football-stats{padding:16px 18px 22px}
.athlos-football-stats__teams{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
    align-items:center;
    gap:16px;
    padding:0 0 16px;
    border-bottom:1px solid #e2e6eb;
}
.athlos-football-stats__teams>div{
    display:flex;
    align-items:center;
    gap:9px;
    min-width:0;
}
.athlos-football-stats__teams>div:last-child{justify-content:flex-end;text-align:right}
.athlos-football-stats__teams img{width:34px;height:34px;object-fit:contain;flex:0 0 34px}
.athlos-football-stats__teams strong{font-size:13px;min-width:0}
.athlos-football-stats__teams>span{
    font-size:10px;
    font-weight:900;
    letter-spacing:.08em;
    color:#737b89;
    white-space:nowrap;
}
.athlos-stats--visual{padding:15px 0 4px}
.athlos-stat-graphic{padding:10px 0 12px}
.athlos-stat-graphic__values{
    display:grid;
    grid-template-columns:60px minmax(0,1fr) 60px;
    align-items:center;
    gap:10px;
    text-align:center;
}
.athlos-stat-graphic__values strong{font-size:18px;line-height:1;font-weight:900;color:#151b28}
.athlos-stat-graphic__values span{font-size:11px;font-weight:900;color:#5f6876;text-transform:uppercase;letter-spacing:.035em}
.athlos-stat-graphic__track{
    display:flex;
    gap:3px;
    height:7px;
    margin:8px 70px 0;
    border-radius:999px;
    overflow:hidden;
    background:#edf0f3;
}
.athlos-stat-graphic__track i{display:block;height:100%;border-radius:999px}
.athlos-stat-graphic__home{background:#171d2b}
.athlos-stat-graphic__away{background:#d7192d}
.athlos-stats__more{border-top:1px solid #e2e6eb;margin-top:7px;padding-top:7px}
.athlos-stat-row--graphic{grid-template-columns:58px minmax(0,1fr) 58px;min-height:48px;border-bottom:1px solid #edf0f3}
.athlos-stat-row--graphic>div{display:flex;flex-direction:column;gap:6px;min-width:0}
.athlos-stat-row--graphic>div>span{font-size:11px;font-weight:800;color:#68717f;text-align:center}
.athlos-stat-row__bars{display:flex;gap:2px;height:4px;overflow:hidden;border-radius:999px;background:#eef0f3}
.athlos-stat-row__bars i:first-child{background:#171d2b}
.athlos-stat-row__bars i:last-child{background:#d7192d}

/* Football lineups — formation pitch */
.athlos-lineups-visual{padding:16px 18px 22px;background:#fff}
.athlos-lineup-scoreboard{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}
.athlos-lineup-scoreboard>div{display:grid;grid-template-columns:32px minmax(0,1fr);grid-template-rows:auto auto;column-gap:8px;align-items:center;min-width:0}
.athlos-lineup-scoreboard>div:last-child{grid-template-columns:minmax(0,1fr) 32px;text-align:right}
.athlos-lineup-scoreboard>div:last-child img{grid-column:2;grid-row:1/3}
.athlos-lineup-scoreboard>div:first-child img{grid-column:1;grid-row:1/3}
.athlos-lineup-scoreboard img{width:32px;height:32px;object-fit:contain}
.athlos-lineup-scoreboard strong{font-size:12px;font-weight:900;min-width:0}
.athlos-lineup-scoreboard span{font-size:10px;color:#747d8b;font-weight:800}
.athlos-lineup-scoreboard>b{font-size:10px;letter-spacing:.08em;color:#6c7583;white-space:nowrap}
.athlos-lineup-pitch{
    position:relative;
    width:min(100%,720px);
    aspect-ratio:68/94;
    margin:0 auto;
    overflow:hidden;
    border:3px solid #fff;
    border-radius:8px;
    background:
        linear-gradient(90deg,rgba(255,255,255,.035) 50%,transparent 50%) 0 0/18% 100%,
        #277a4d;
    box-shadow:0 0 0 1px #dfe3e8,0 10px 24px rgba(17,29,43,.10);
}
.athlos-lineup-pitch:before{
    content:"";
    position:absolute;
    inset:10px;
    border:2px solid rgba(255,255,255,.72);
    pointer-events:none;
    z-index:1;
}
.athlos-lineup-pitch__centre-line{position:absolute;z-index:1;left:10px;right:10px;top:50%;height:2px;background:rgba(255,255,255,.72);transform:translateY(-1px)}
.athlos-lineup-pitch__centre-circle{position:absolute;z-index:1;left:50%;top:50%;width:90px;height:90px;border:2px solid rgba(255,255,255,.72);border-radius:50%;transform:translate(-50%,-50%)}
.athlos-lineup-pitch__box{position:absolute;z-index:1;left:25%;width:50%;height:11%;border:2px solid rgba(255,255,255,.72);pointer-events:none}
.athlos-lineup-pitch__box--top{top:10px;border-top:0}
.athlos-lineup-pitch__box--bottom{bottom:10px;border-bottom:0}
.athlos-lineup-pitch__half{
    position:absolute;
    z-index:2;
    left:20px;
    right:20px;
    height:calc(50% - 18px);
    display:flex;
    flex-direction:column;
    justify-content:space-evenly;
    gap:2px;
}
.athlos-lineup-pitch__half--home{top:14px}
.athlos-lineup-pitch__half--away{bottom:14px}
.athlos-lineup-pitch__row{display:flex;align-items:center;justify-content:space-evenly;gap:6px;min-height:42px}
.athlos-pitch-player{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    min-width:0;
    max-width:100px;
    color:#fff!important;
    text-decoration:none!important;
    text-shadow:0 1px 2px rgba(0,0,0,.55);
}
.athlos-pitch-player__badge{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    border:2px solid rgba(23,29,43,.28);
    color:#171d2b;
    font-size:10px;
    font-weight:900;
    text-shadow:none;
    box-shadow:0 2px 7px rgba(0,0,0,.20);
}
.athlos-lineup-pitch__half--away .athlos-pitch-player__badge{background:#d7192d;color:#fff;border-color:rgba(255,255,255,.75)}
.athlos-pitch-player strong{display:block;max-width:92px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:10px;line-height:1.1;font-weight:900}
.athlos-lineup-benches{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.athlos-lineup-bench{border:1px solid #e0e4e9;background:#fff}
.athlos-lineup-bench__head{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:9px 11px;background:#f5f6f8;border-bottom:1px solid #e0e4e9}
.athlos-lineup-bench__head strong{font-size:11px}.athlos-lineup-bench__head span{font-size:9px;font-weight:900;color:#7b8390;letter-spacing:.05em}
.athlos-lineup-bench__players{display:grid;grid-template-columns:1fr 1fr}
.athlos-lineup-bench__players .athlos-lineup-player{padding:6px 8px}

/* Football PBP — two-sided visual timeline */
.athlos-pbp-head--visual{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
    gap:14px;
    padding:14px 18px 8px;
}
.athlos-pbp-head--visual>b{font-size:10px;letter-spacing:.08em;color:#7b8390;white-space:nowrap}
.athlos-pbp-head__team{display:flex;align-items:center;gap:7px;min-width:0}
.athlos-pbp-head__team--away{justify-content:flex-end;text-align:right}
.athlos-pbp-head__team strong{font-size:11px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.athlos-pbp-head__team span{display:block;width:22px;height:4px;border-radius:999px;background:#171d2b;flex:0 0 22px}
.athlos-pbp-head__team--away span{background:#d7192d}
.athlos-events--visual{position:relative;padding:6px 18px 20px}
.athlos-events--visual:before{content:"";position:absolute;top:6px;bottom:20px;left:50%;width:1px;background:#d9dee5;transform:translateX(-.5px)}
.athlos-events--visual .athlos-event{
    position:relative;
    z-index:1;
    grid-template-columns:minmax(0,1fr) 42px 42px minmax(0,1fr);
    gap:0;
    min-height:62px;
    padding:9px 0;
    border-bottom:0;
}
.athlos-events--visual .athlos-event__time,.athlos-events--visual .athlos-event__icon,.athlos-events--visual .athlos-event__main{grid-row:1;align-self:center}
.athlos-events--visual .athlos-event__time{padding:0;text-align:center;font-size:11px;color:#555f6e}
.athlos-events--visual .athlos-event__icon{
    width:30px;height:30px;margin:auto;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#fff;border:1px solid #dce1e7;font-size:12px;box-shadow:0 2px 7px rgba(17,29,43,.07)
}
.athlos-events--visual .athlos-event__main{padding:9px 11px;border:1px solid #e2e6eb;border-radius:7px;background:#fff;box-shadow:0 2px 8px rgba(17,29,43,.035)}
.athlos-events--visual .athlos-event--home .athlos-event__main{grid-column:1;text-align:right;align-items:flex-end;border-right:3px solid #171d2b}
.athlos-events--visual .athlos-event--home .athlos-event__time{grid-column:2}
.athlos-events--visual .athlos-event--home .athlos-event__icon{grid-column:3}
.athlos-events--visual .athlos-event--away .athlos-event__icon{grid-column:2}
.athlos-events--visual .athlos-event--away .athlos-event__time{grid-column:3}
.athlos-events--visual .athlos-event--away .athlos-event__main{grid-column:4;border-left:3px solid #d7192d}
.athlos-events--visual .athlos-event--neutral{display:grid;grid-template-columns:minmax(0,1fr) 42px 42px minmax(0,1fr)}
.athlos-events--visual .athlos-event--neutral .athlos-event__time{grid-column:2}
.athlos-events--visual .athlos-event--neutral .athlos-event__icon{grid-column:3}
.athlos-events--visual .athlos-event--neutral .athlos-event__main{grid-column:4;background:#f5f6f8}
.athlos-events--visual .athlos-event--shot .athlos-event__main{background:#fbfcfd}
.athlos-events--visual .athlos-event--major .athlos-event__main strong{font-size:13px}
.athlos-events--visual .athlos-event__main span{font-size:12px}.athlos-events--visual .athlos-event__main small{font-size:10px}

@media (max-width:782px){
    .athlos-football-stats{padding:12px 10px 17px}
    .athlos-football-stats__teams{gap:7px;padding-bottom:12px}
    .athlos-football-stats__teams>span{font-size:8px;letter-spacing:.04em}
    .athlos-football-stats__teams img{width:27px;height:27px;flex-basis:27px}
    .athlos-football-stats__teams strong{font-size:11px}
    .athlos-stat-graphic__values{grid-template-columns:48px minmax(0,1fr) 48px;gap:5px}
    .athlos-stat-graphic__values strong{font-size:16px}.athlos-stat-graphic__values span{font-size:9px}
    .athlos-stat-graphic__track{margin:7px 54px 0}
    .athlos-lineups-visual{padding:11px 8px 16px}
    .athlos-lineup-scoreboard{gap:5px}.athlos-lineup-scoreboard>b{font-size:8px}.athlos-lineup-scoreboard strong{font-size:10px}
    .athlos-lineup-scoreboard>div{grid-template-columns:25px minmax(0,1fr);column-gap:5px}.athlos-lineup-scoreboard>div:last-child{grid-template-columns:minmax(0,1fr) 25px}
    .athlos-lineup-scoreboard img{width:25px;height:25px}
    .athlos-lineup-pitch{width:100%;aspect-ratio:68/105;border-radius:5px}
    .athlos-lineup-pitch__half{left:10px;right:10px}
    .athlos-lineup-pitch__row{gap:3px;min-height:35px}
    .athlos-pitch-player__badge{width:25px;height:25px;font-size:9px}
    .athlos-pitch-player strong{max-width:64px;font-size:8px}
    .athlos-lineup-benches{grid-template-columns:1fr;gap:9px}
    .athlos-lineup-bench__players{grid-template-columns:1fr 1fr}
    .athlos-pbp-head--visual{grid-template-columns:1fr 1fr;padding:12px 10px 6px;gap:8px}
    .athlos-pbp-head--visual>b{display:none}
    .athlos-events--visual{padding:4px 10px 14px}
    .athlos-events--visual:before{left:34px;transform:none}
    .athlos-events--visual .athlos-event,
    .athlos-events--visual .athlos-event--neutral{
        grid-template-columns:36px 34px minmax(0,1fr);
        min-height:56px;
        gap:0;
    }
    .athlos-events--visual .athlos-event--home .athlos-event__time,
    .athlos-events--visual .athlos-event--away .athlos-event__time,
    .athlos-events--visual .athlos-event--neutral .athlos-event__time{grid-column:1;grid-row:1;text-align:left}
    .athlos-events--visual .athlos-event--home .athlos-event__icon,
    .athlos-events--visual .athlos-event--away .athlos-event__icon,
    .athlos-events--visual .athlos-event--neutral .athlos-event__icon{grid-column:2;grid-row:1}
    .athlos-events--visual .athlos-event--home .athlos-event__main,
    .athlos-events--visual .athlos-event--away .athlos-event__main,
    .athlos-events--visual .athlos-event--neutral .athlos-event__main{grid-column:3;grid-row:1;text-align:left;align-items:flex-start;border-right:0}
    .athlos-events--visual .athlos-event--home .athlos-event__main{border-left:3px solid #171d2b}
    .athlos-events--visual .athlos-event--away .athlos-event__main{border-left:3px solid #d7192d}
    .athlos-events--visual .athlos-event--neutral .athlos-event__main{border-left:3px solid #a9b0bb}
}

/* =========================================================
   v0.20.59 — ATHLOS PREMIUM SCORE HEADER + QUIET SEO COPY
   Presentation-only. Dark ATHLOS score hero, no green accent;
   match descriptive copy moves to a native collapsed <details>
   at the bottom while remaining server-rendered/user-accessible.
   ========================================================= */
.athlos-mc--single .athlos-mc-single__score-card{
    position:relative;
    margin:14px 0 22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:
        radial-gradient(ellipse at 50% -15%,rgba(215,25,45,.20) 0%,rgba(215,25,45,.055) 30%,transparent 58%),
        linear-gradient(116deg,#07090d 0%,#121720 48%,#090b10 100%);
    box-shadow:0 16px 34px rgba(12,18,29,.14),inset 0 1px 0 rgba(255,255,255,.045);
    isolation:isolate;
}
.athlos-mc--single .athlos-mc-single__score-card:before,
.athlos-mc--single .athlos-mc-single__score-card:after{
    content:"";
    position:absolute;
    z-index:0;
    pointer-events:none;
}
.athlos-mc--single .athlos-mc-single__score-card:before{
    inset:0;
    opacity:.72;
    background:
        linear-gradient(132deg,transparent 0 13%,rgba(215,25,45,.10) 13.1% 13.35%,transparent 13.5% 100%),
        linear-gradient(312deg,transparent 0 11%,rgba(215,25,45,.09) 11.1% 11.35%,transparent 11.5% 100%),
        repeating-linear-gradient(122deg,transparent 0 42px,rgba(255,255,255,.012) 43px,transparent 44px);
}
.athlos-mc--single .athlos-mc-single__score-card:after{
    left:35%;
    right:35%;
    bottom:-1px;
    height:2px;
    background:linear-gradient(90deg,transparent,#d71935 22%,#ff394e 50%,#d71935 78%,transparent);
    box-shadow:0 -2px 14px rgba(215,25,53,.55);
}
.athlos-mc--single .athlos-mc-single__score-card.is-live{
    box-shadow:0 16px 34px rgba(12,18,29,.16),0 0 0 1px rgba(215,25,53,.13),inset 0 1px 0 rgba(255,255,255,.05);
}
.athlos-mc--single .athlos-mc-single__scoreboard{
    position:relative;
    z-index:1;
    grid-template-columns:minmax(0,1fr) minmax(132px,190px) minmax(0,1fr);
    gap:24px;
    min-height:190px;
    margin:0;
    padding:30px 34px 22px;
    background:transparent!important;
}
.athlos-mc--single .athlos-mc-single__team{
    gap:12px;
}
.athlos-mc--single .athlos-mc-single__team strong{
    color:#f8fafc!important;
    font-size:20px;
    font-weight:900;
    letter-spacing:-.015em;
    text-shadow:0 2px 8px rgba(0,0,0,.28);
}
.athlos-mc--single .athlos-mc-single__team-link{
    color:#fff!important;
    text-decoration:none!important;
}
.athlos-mc--single .athlos-mc-single__logo,
.athlos-mc--single .athlos-mc-single__logo img{
    width:72px;
    height:72px;
}
.athlos-mc--single .athlos-mc-single__logo{
    filter:drop-shadow(0 5px 8px rgba(0,0,0,.22));
}
.athlos-mc--single .athlos-mc-single__logo--fallback{
    background:rgba(255,255,255,.10);
    border-color:rgba(255,255,255,.20);
    color:#fff;
}
.athlos-mc--single .athlos-mc-single__middle{
    position:relative;
    z-index:2;
    min-width:132px;
    min-height:108px;
    display:flex!important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px!important;
    padding:16px 24px;
    border:1px solid rgba(255,255,255,.20);
    border-radius:14px;
    background:
        radial-gradient(circle at 50% 110%,rgba(215,25,53,.20),transparent 46%),
        linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
    box-shadow:0 12px 30px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter:blur(5px);
}
.athlos-mc--single .athlos-mc-single__middle:before{
    content:"";
    position:absolute;
    left:16%;
    right:16%;
    bottom:-1px;
    height:2px;
    background:linear-gradient(90deg,transparent,#d71935 28%,#ff465a 50%,#d71935 72%,transparent);
    box-shadow:0 0 13px rgba(215,25,53,.68);
}
.athlos-mc--single .athlos-mc-single__score{
    color:#fff!important;
    font-size:46px;
    line-height:.95;
    font-weight:950;
    letter-spacing:.015em;
    font-variant-numeric:tabular-nums;
    text-shadow:0 5px 16px rgba(0,0,0,.32);
}
.athlos-mc--single .athlos-mc-single__time{
    color:#fff!important;
    font-size:31px;
    font-weight:950;
    text-shadow:0 4px 14px rgba(0,0,0,.30);
}
.athlos-mc--single .athlos-mc-single__video-jump{
    position:relative;
    z-index:2;
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);
    color:#fff;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.athlos-mc--single .athlos-mc-single__video-jump:hover{
    border-color:rgba(255,255,255,.50);
    background:rgba(255,255,255,.13);
}
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incidents{
    position:relative;
    z-index:1;
    margin:0;
    padding:0 34px 24px;
}
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident{
    color:#f3f5f8;
}
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident-main a{
    color:#fff!important;
}
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident-main em,
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident-main small{
    color:#b9c0cb;
}
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident--red .athlos-mc-single__incident-main a,
.athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident--red .athlos-mc-single__incident-main>span{
    color:#ff5062!important;
}

/* Match-only SEO description: native accordion at the absolute bottom. */
.athlos-mc-single__seo-details{
    margin:28px 0 0;
    border-top:1px solid #e2e5ea;
    color:#697180;
}
.athlos-mc-single__seo-details>summary{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:42px;
    padding:9px 12px;
    list-style:none;
    cursor:pointer;
    color:#7a828f;
    font-size:10px;
    font-weight:900;
    letter-spacing:.07em;
    user-select:none;
}
.athlos-mc-single__seo-details>summary::-webkit-details-marker{display:none}
.athlos-mc-single__seo-details>summary:after{
    content:"+";
    font-size:14px;
    font-weight:700;
    line-height:1;
}
.athlos-mc-single__seo-details[open]>summary:after{content:"−"}
.athlos-mc-single__seo-details>summary:hover{color:#171e2d}
.athlos-mc-single__seo-details .athlos-mc-seo-intro{
    max-width:920px;
    margin:0 auto!important;
    padding:0 18px 18px!important;
    text-align:center;
    color:#697180;
    font-size:12px;
    line-height:1.55;
    opacity:.84;
}

@media(max-width:782px){
    .athlos-mc--single .athlos-mc-single__score-card{
        margin:10px 0 16px;
        border-radius:14px;
    }
    .athlos-mc--single .athlos-mc-single__scoreboard{
        grid-template-columns:minmax(0,1fr) 104px minmax(0,1fr);
        gap:8px;
        min-height:150px;
        padding:22px 10px 16px;
    }
    .athlos-mc--single .athlos-mc-single__team{gap:8px}
    .athlos-mc--single .athlos-mc-single__team strong{font-size:13.5px;line-height:1.15}
    .athlos-mc--single .athlos-mc-single__logo,
    .athlos-mc--single .athlos-mc-single__logo img{width:48px;height:48px}
    .athlos-mc--single .athlos-mc-single__middle{
        min-width:0;
        min-height:82px;
        padding:10px 7px;
        border-radius:11px;
    }
    .athlos-mc--single .athlos-mc-single__score{font-size:31px}
    .athlos-mc--single .athlos-mc-single__time{font-size:22px}
    .athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incidents{
        grid-template-columns:minmax(0,1fr) 72px minmax(0,1fr);
        gap:6px;
        padding:0 10px 16px;
    }
    .athlos-mc--single .athlos-mc-single__score-card .athlos-mc-single__incident{font-size:9.5px}
    .athlos-mc-single__seo-details{margin-top:20px}
    .athlos-mc-single__seo-details>summary{min-height:38px;font-size:9px}
    .athlos-mc-single__seo-details .athlos-mc-seo-intro{font-size:11px;padding:0 12px 14px!important}
}

/* =========================================================
   v0.20.60-beta — ATHLOS FOOTBALL HERO / GLOSS SCOREBOARD
   Presentation-only football pass. All match metadata lives
   inside one controlled-height ATHLOS hero card.
   Basketball/volleyball layout remains on the v0.20.59 path.
   ========================================================= */
.athlos-mc--single-football .athlos-mc-single__score-card--football{
    position:relative;
    min-height:0;
    height:auto;
    margin:14px 0 22px;
    padding:0;
    overflow:hidden;
    border:1px solid rgba(236,240,247,.38);
    border-radius:22px;
    background:
        radial-gradient(ellipse at 50% 33%,rgba(215,25,45,.12) 0%,rgba(215,25,45,.045) 28%,transparent 56%),
        radial-gradient(circle at 4% 50%,rgba(215,25,45,.045),transparent 22%),
        radial-gradient(circle at 96% 50%,rgba(215,25,45,.055),transparent 22%),
        linear-gradient(115deg,#05070a 0%,#0c1016 43%,#07090d 100%);
    box-shadow:
        0 18px 40px rgba(6,10,17,.22),
        inset 0 1px 0 rgba(255,255,255,.10),
        inset 0 0 0 1px rgba(255,255,255,.025);
    isolation:isolate;
    contain:paint;
}
.athlos-mc--single-football .athlos-mc-single__score-card--football:before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.95;
    background:
        linear-gradient(132deg,transparent 0 10.5%,rgba(255,38,58,.42) 10.56% 10.72%,transparent 10.78% 100%),
        linear-gradient(132deg,transparent 0 13.2%,rgba(215,25,45,.15) 13.25% 13.36%,transparent 13.42% 100%),
        linear-gradient(312deg,transparent 0 9.5%,rgba(255,38,58,.40) 9.56% 9.72%,transparent 9.78% 100%),
        linear-gradient(312deg,transparent 0 12.3%,rgba(215,25,45,.15) 12.35% 12.46%,transparent 12.52% 100%),
        repeating-linear-gradient(122deg,transparent 0 50px,rgba(255,255,255,.010) 51px,transparent 52px);
}
.athlos-mc--single-football .athlos-mc-single__score-card--football:after{
    content:"";
    position:absolute;
    z-index:0;
    left:29%;
    right:29%;
    bottom:-1px;
    height:2px;
    pointer-events:none;
    background:linear-gradient(90deg,transparent,#d71935 24%,#ff4357 50%,#d71935 76%,transparent);
    box-shadow:0 -2px 18px rgba(215,25,53,.50);
}
.athlos-mc--single-football .athlos-mc-single__score-card--football.is-live{
    border-color:rgba(255,255,255,.46);
    box-shadow:
        0 20px 44px rgba(6,10,17,.25),
        0 0 0 1px rgba(215,25,53,.10),
        inset 0 1px 0 rgba(255,255,255,.12);
}
.athlos-mc--single-football .athlos-mc-single__hero-head{
    position:relative;
    z-index:3;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    min-height:76px;
    padding:20px 56px 2px;
    text-align:center;
}
.athlos-mc--single-football .athlos-mc-single__hero-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-width:0;
    color:#d9dee8;
    font-size:13px;
    font-weight:800;
    line-height:1.2;
}
.athlos-mc--single-football .athlos-mc-single__hero-date{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#e7ebf2;
    white-space:nowrap;
}
.athlos-mc--single-football .athlos-mc-single__hero-date svg,
.athlos-mc--single-football .athlos-mc-single__hero-competition svg,
.athlos-mc--single-football .athlos-mc-single__hero-fact svg{
    flex:0 0 auto;
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
    opacity:.88;
}
.athlos-mc--single-football .athlos-mc-single__hero-status-wrap{
    gap:11px;
    min-width:0;
}
.athlos-mc--single-football .athlos-mc-single__hero-status-wrap:before{
    content:"";
    display:block;
    width:1px;
    height:22px;
    margin-right:1px;
    background:rgba(255,255,255,.30);
}
.athlos-mc--single-football .athlos-mc-single__hero-status-wrap>strong{
    color:#f6f7fa!important;
    font-size:13px;
    font-weight:950;
    letter-spacing:.01em;
    white-space:nowrap;
    text-shadow:0 1px 6px rgba(0,0,0,.35);
}
.athlos-mc--single-football .athlos-mc-single__live-pill{
    position:relative;
    min-height:28px;
    padding:7px 12px;
    border:1px solid rgba(255,74,92,.72);
    background:linear-gradient(180deg,#c8122d 0%,#9f0c20 100%);
    box-shadow:0 0 18px rgba(215,25,53,.28),inset 0 1px 0 rgba(255,255,255,.20);
    font-size:10px;
    letter-spacing:.06em;
}
.athlos-mc--single-football .athlos-mc-single__live-pill i{
    width:8px;
    height:8px;
    box-shadow:0 0 10px rgba(255,255,255,.75);
}
.athlos-mc--single-football .athlos-mc-single__hero-competition{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0;
    color:#c8ced8;
    line-height:1.2;
}
.athlos-mc--single-football .athlos-mc-single__hero-competition svg{
    width:20px;
    height:20px;
}
.athlos-mc--single-football .athlos-mc-single__hero-competition a{
    color:#d9dee7!important;
    font-size:15px;
    font-weight:800;
    letter-spacing:.015em;
    text-decoration:none!important;
}
.athlos-mc--single-football .athlos-mc-single__hero-competition a:hover{color:#fff!important}
.athlos-mc--single-football .athlos-mc-single__hero-round{
    color:#8f98a7;
    font-size:11px;
    font-weight:800;
}
.athlos-mc--single-football .athlos-mc-single__seo-heading--hero{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
}
.athlos-mc--single-football .athlos-mc-single__scoreboard{
    position:relative;
    z-index:2;
    grid-template-columns:minmax(0,1fr) minmax(260px,34%) minmax(0,1fr);
    gap:34px;
    min-height:166px;
    margin:0;
    padding:2px 76px 16px;
    background:transparent!important;
}
.athlos-mc--single-football .athlos-mc-single__team{
    position:relative;
    z-index:2;
    gap:12px;
    min-width:0;
}
.athlos-mc--single-football .athlos-mc-single__team-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    min-width:0;
    color:#fff!important;
    text-decoration:none!important;
}
.athlos-mc--single-football .athlos-mc-single__team strong{
    max-width:100%;
    color:#f9fafc!important;
    font-size:25px;
    line-height:1.08;
    font-weight:950;
    letter-spacing:-.028em;
    text-shadow:0 4px 16px rgba(0,0,0,.42);
}
.athlos-mc--single-football .athlos-mc-single__logo,
.athlos-mc--single-football .athlos-mc-single__logo img{
    width:92px;
    height:92px;
}
.athlos-mc--single-football .athlos-mc-single__logo{
    filter:drop-shadow(0 7px 15px rgba(0,0,0,.32));
}
.athlos-mc--single-football .athlos-mc-single__middle{
    position:relative;
    z-index:3;
    min-width:0;
    min-height:132px;
    display:flex!important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px!important;
    padding:18px 34px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.38);
    border-radius:20px;
    background:
        linear-gradient(154deg,rgba(255,255,255,.17) 0%,rgba(255,255,255,.035) 30%,transparent 46%),
        radial-gradient(ellipse at 50% 112%,rgba(215,25,53,.26),transparent 48%),
        linear-gradient(180deg,rgba(32,36,44,.88),rgba(9,11,16,.88));
    box-shadow:
        0 18px 36px rgba(0,0,0,.35),
        0 0 0 1px rgba(255,255,255,.045),
        inset 0 1px 0 rgba(255,255,255,.22),
        inset 0 -1px 0 rgba(255,255,255,.06);
    backdrop-filter:blur(8px);
    transform:perspective(900px) rotateX(.45deg);
}
.athlos-mc--single-football .athlos-mc-single__middle:before{
    content:"";
    position:absolute;
    z-index:0;
    left:11%;
    right:11%;
    bottom:-1px;
    height:3px;
    background:linear-gradient(90deg,transparent,#cf1530 20%,#ff4357 50%,#cf1530 80%,transparent);
    box-shadow:0 -4px 22px rgba(215,25,53,.75),0 0 9px rgba(255,67,87,.45);
}
.athlos-mc--single-football .athlos-mc-single__middle:after{
    content:"";
    position:absolute;
    z-index:0;
    left:4%;
    right:4%;
    top:0;
    height:42%;
    border-radius:18px 18px 55% 55%;
    background:linear-gradient(180deg,rgba(255,255,255,.15),rgba(255,255,255,.018));
    opacity:.48;
    pointer-events:none;
}
.athlos-mc--single-football .athlos-mc-single__score,
.athlos-mc--single-football .athlos-mc-single__time,
.athlos-mc--single-football .athlos-mc-single__video-jump{
    position:relative;
    z-index:2;
}
.athlos-mc--single-football .athlos-mc-single__score{
    color:#fff!important;
    font-size:68px;
    line-height:.94;
    font-weight:950;
    letter-spacing:.025em;
    font-variant-numeric:tabular-nums;
    text-shadow:0 5px 18px rgba(0,0,0,.46),0 0 1px rgba(255,255,255,.85);
}
.athlos-mc--single-football .athlos-mc-single__time{
    color:#fff!important;
    font-size:40px;
    line-height:1;
    font-weight:950;
    text-shadow:0 5px 16px rgba(0,0,0,.42);
}
.athlos-mc--single-football .athlos-mc-single__video-jump{
    border-color:rgba(255,255,255,.24);
    background:rgba(255,255,255,.07);
    color:#fff;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.athlos-mc--single-football .athlos-mc-single__incidents{
    position:relative;
    z-index:2;
    grid-template-columns:minmax(0,1fr) minmax(260px,34%) minmax(0,1fr);
    gap:34px;
    margin:-5px 0 0;
    padding:0 76px 18px;
}
.athlos-mc--single-football .athlos-mc-single__incident{
    color:#eef1f6;
    font-size:11.5px;
}
.athlos-mc--single-football .athlos-mc-single__incident-main a{color:#fff!important}
.athlos-mc--single-football .athlos-mc-single__incident-main em,
.athlos-mc--single-football .athlos-mc-single__incident-main small{color:#adb5c2}
.athlos-mc--single-football .athlos-mc-single__incident--red .athlos-mc-single__incident-main a,
.athlos-mc--single-football .athlos-mc-single__incident--red .athlos-mc-single__incident-main>span{color:#ff5364!important}
.athlos-mc--single-football .athlos-mc-single__hero-facts{
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:0;
    min-height:62px;
    margin:0 12.5%;
    padding:12px 0 13px;
    border-top:1px solid rgba(255,255,255,.14);
    color:#c9d0db;
}
.athlos-mc--single-football .athlos-mc-single__hero-fact{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:0;
    padding:0 28px;
    color:#bcc4d0;
    font-size:12px;
    line-height:1.25;
}
.athlos-mc--single-football .athlos-mc-single__hero-fact+.athlos-mc-single__hero-fact{
    border-left:1px solid rgba(215,25,53,.60);
}
.athlos-mc--single-football .athlos-mc-single__hero-fact svg{
    width:21px;
    height:21px;
    color:#c9d0db;
}
.athlos-mc--single-football .athlos-mc-single__hero-fact strong{
    color:#d9dee7;
    font-size:12px;
    font-weight:750;
    white-space:nowrap;
}

@media(max-width:1100px){
    .athlos-mc--single-football .athlos-mc-single__scoreboard{
        grid-template-columns:minmax(0,1fr) minmax(220px,31%) minmax(0,1fr);
        gap:20px;
        padding-left:38px;
        padding-right:38px;
    }
    .athlos-mc--single-football .athlos-mc-single__incidents{
        grid-template-columns:minmax(0,1fr) minmax(220px,31%) minmax(0,1fr);
        gap:20px;
        padding-left:38px;
        padding-right:38px;
    }
    .athlos-mc--single-football .athlos-mc-single__team strong{font-size:21px}
    .athlos-mc--single-football .athlos-mc-single__logo,
    .athlos-mc--single-football .athlos-mc-single__logo img{width:78px;height:78px}
    .athlos-mc--single-football .athlos-mc-single__score{font-size:58px}
    .athlos-mc--single-football .athlos-mc-single__hero-facts{margin-left:7%;margin-right:7%}
    .athlos-mc--single-football .athlos-mc-single__hero-fact{padding-left:18px;padding-right:18px}
}

@media(max-width:782px){
    .athlos-mc--single-football .athlos-mc-single__score-card--football{
        min-height:0;
        margin:10px 0 16px;
        border-radius:16px;
    }
    .athlos-mc--single-football .athlos-mc-single__hero-head{
        min-height:77px;
        gap:7px;
        padding:15px 45px 3px;
    }
    .athlos-mc--single-football .athlos-mc-single__hero-meta{
        gap:7px;
        flex-wrap:wrap;
        font-size:9.5px;
    }
    .athlos-mc--single-football .athlos-mc-single__hero-date{gap:5px}
    .athlos-mc--single-football .athlos-mc-single__hero-date svg{width:14px;height:14px}
    .athlos-mc--single-football .athlos-mc-single__hero-status-wrap{gap:6px}
    .athlos-mc--single-football .athlos-mc-single__hero-status-wrap:before{height:17px}
    .athlos-mc--single-football .athlos-mc-single__hero-status-wrap>strong{font-size:9.5px}
    .athlos-mc--single-football .athlos-mc-single__live-pill{min-height:22px;padding:5px 7px;font-size:8px}
    .athlos-mc--single-football .athlos-mc-single__live-pill i{width:6px;height:6px}
    .athlos-mc--single-football .athlos-mc-single__hero-competition{gap:5px}
    .athlos-mc--single-football .athlos-mc-single__hero-competition svg{width:15px;height:15px}
    .athlos-mc--single-football .athlos-mc-single__hero-competition a{font-size:11px}
    .athlos-mc--single-football .athlos-mc-single__hero-round{display:none}
    .athlos-mc--single-football .athlos-mc-single__scoreboard{
        grid-template-columns:minmax(0,1fr) 112px minmax(0,1fr);
        gap:8px;
        min-height:135px;
        padding:4px 10px 14px;
    }
    .athlos-mc--single-football .athlos-mc-single__team,
    .athlos-mc--single-football .athlos-mc-single__team-link{gap:8px}
    .athlos-mc--single-football .athlos-mc-single__team strong{
        font-size:13.5px;
        line-height:1.12;
        letter-spacing:-.02em;
    }
    .athlos-mc--single-football .athlos-mc-single__logo,
    .athlos-mc--single-football .athlos-mc-single__logo img{width:54px;height:54px}
    .athlos-mc--single-football .athlos-mc-single__middle{
        min-height:92px;
        padding:12px 8px;
        border-radius:13px;
    }
    .athlos-mc--single-football .athlos-mc-single__middle:after{border-radius:12px 12px 45% 45%}
    .athlos-mc--single-football .athlos-mc-single__score{font-size:38px}
    .athlos-mc--single-football .athlos-mc-single__time{font-size:24px}
    .athlos-mc--single-football .athlos-mc-single__incidents{
        grid-template-columns:minmax(0,1fr) 112px minmax(0,1fr);
        gap:8px;
        margin-top:-2px;
        padding:0 10px 12px;
    }
    .athlos-mc--single-football .athlos-mc-single__incident{font-size:9px}
    .athlos-mc--single-football .athlos-mc-single__hero-facts{
        justify-content:flex-start;
        gap:0;
        min-height:48px;
        margin:0 14px;
        padding:10px 0 11px;
        overflow-x:auto;
        flex-wrap:nowrap;
        scrollbar-width:none;
    }
    .athlos-mc--single-football .athlos-mc-single__hero-facts::-webkit-scrollbar{display:none}
    .athlos-mc--single-football .athlos-mc-single__hero-fact{
        flex:0 0 auto;
        gap:6px;
        padding:0 12px;
        font-size:9px;
    }
    .athlos-mc--single-football .athlos-mc-single__hero-fact:first-child{padding-left:2px}
    .athlos-mc--single-football .athlos-mc-single__hero-fact svg{width:16px;height:16px}
    .athlos-mc--single-football .athlos-mc-single__hero-fact strong{font-size:9px}
}

/* ============================================================
   v0.20.62-beta — MOBILE TOP-AREA CLEANUP
   1) Central Match Center: title + LIVE stay inside the black masthead instead
      of the absolute LIVE badge overflowing off-screen.
   2) Single-match mobile topbar: use the same ATHLOS black/red chrome so the
      back link, Match Center CTA and breadcrumbs cannot disappear on white.
   ============================================================ */
@media (max-width:782px){
    .athlos-full-mc__header{
        min-height:50px!important;
        padding:0 9px!important;
        overflow:hidden!important;
    }
    .athlos-full-mc__title-wrap{
        position:static!important;
        left:auto!important;
        top:auto!important;
        transform:none!important;
        width:100%!important;
        min-width:0!important;
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
        gap:7px!important;
        flex-wrap:nowrap!important;
    }
    .athlos-full-mc__title{
        min-width:0!important;
        font-size:19px!important;
        line-height:1!important;
        letter-spacing:.025em!important;
        overflow:hidden!important;
        text-overflow:ellipsis!important;
        white-space:nowrap!important;
    }
    .athlos-full-mc__global-live{
        position:static!important;
        left:auto!important;
        top:auto!important;
        transform:none!important;
        flex:0 0 auto!important;
        min-height:20px!important;
        padding:2px 6px!important;
        font-size:8px!important;
        margin:0!important;
    }

    .athlos-mc--single .athlos-mc-single__topbar:not(.is-embedded){
        min-height:46px!important;
        padding:7px 9px!important;
        gap:7px!important;
        background:#09090a!important;
        border-top:3px solid #c9152d!important;
        border-bottom:1px solid #27282c!important;
        color:#fff!important;
    }
    .athlos-mc--single .athlos-mc-single__topbar:not(.is-embedded) .athlos-mc-single__back,
    .athlos-mc--single .athlos-mc-single__topbar:not(.is-embedded) .athlos-entity-back{
        color:#fff!important;
        background:transparent!important;
        border:0!important;
    }
    .athlos-mc--single .athlos-mc-single__topbar:not(.is-embedded) .athlos-entity-matchcenter-link{
        min-height:29px!important;
        padding:0 8px!important;
        border:1px solid #37383c!important;
        background:#151517!important;
        color:#fff!important;
        font-size:8.8px!important;
        box-shadow:none!important;
    }
    .athlos-mc--single .athlos-mc-single__topbar:not(.is-embedded) .athlos-mc-single__crumbs{
        color:#b7bcc6!important;
        max-width:38%!important;
        font-size:8px!important;
    }
    .athlos-mc--single .athlos-mc-single__topbar:not(.is-embedded) .athlos-mc-single__crumbs a{
        color:inherit!important;
    }
}

/* ============================================================
   v0.20.66-beta — ATHLOS MATCH FLOW (DERBILY-LIKE, NON-REPETITIVE)
   Current stats remain once above. The old H/X/A momentum-probability row is
   removed; the lower visual is now only the match-flow chart and team legend.
   ============================================================ */
.athlos-pbp-now__momentum--flow{
    padding:14px 16px 16px;
    border-top:1px solid #e2e5ea;
}
.athlos-pbp-now__momentum--flow .athlos-pbp-now__momentum-head{
    margin-bottom:10px;
    gap:14px;
}
.athlos-pbp-now__momentum--flow .athlos-pbp-now__momentum-head>strong{
    font-size:12px;
    font-weight:950;
    letter-spacing:.045em;
    color:#171c27;
}
.athlos-pbp-now__momentum-legend{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    min-width:0;
    color:#626b79;
    font-size:10px;
    font-weight:800;
}
.athlos-pbp-now__momentum-legend span{
    display:inline-flex;
    align-items:center;
    gap:5px;
    min-width:0;
    white-space:nowrap;
}
.athlos-pbp-now__momentum-legend i{
    width:7px;
    height:7px;
    flex:0 0 7px;
    border-radius:50%;
}
.athlos-pbp-now__momentum-legend .is-home i{background:#1f5fe0}
.athlos-pbp-now__momentum-legend .is-away i{background:#d71935}
.athlos-pbp-now__momentum--flow .athlos-pbp-now__momentum-chart{
    height:158px;
    margin-top:0;
    background:
        linear-gradient(to bottom,rgba(31,95,224,.03) 0 49.5%,rgba(215,25,53,.03) 50.5% 100%),
        repeating-linear-gradient(90deg,transparent 0,transparent calc(25% - 1px),rgba(105,113,128,.07) 25%);
}
@media (max-width:782px){
    .athlos-pbp-now__momentum--flow{padding:12px 10px 13px}
    .athlos-pbp-now__momentum--flow .athlos-pbp-now__momentum-head{align-items:flex-start;gap:8px}
    .athlos-pbp-now__momentum-legend{gap:8px;font-size:8.8px;max-width:72%}
    .athlos-pbp-now__momentum-legend span{overflow:hidden;text-overflow:ellipsis}
    .athlos-pbp-now__momentum--flow .athlos-pbp-now__momentum-chart{height:132px}
}
