.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}

/* 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-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:850px}
.athlos-player-row{display:grid;grid-template-columns:minmax(230px,1fr) 48px 48px 42px 42px 52px 52px 52px 64px 48px;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:810px}
}


/* ============================================================
   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;
}

@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) 45px 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;
}

.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) 30px 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) 48px 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}}
