.live-score-page {
    --live-panel: #0d1218;
    --live-panel-strong: #111820;
    --live-border: rgba(184, 196, 211, 0.10);
    --live-muted: #99a3b0;
}

.live-breadcrumb {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 650;
}

.live-breadcrumb a {
    color: var(--text-soft);
}

.live-breadcrumb > i {
    font-size: .65rem;
    opacity: .55;
}

.live-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 1rem;
    padding: clamp(1.35rem, 3vw, 2.35rem);
    overflow: hidden;
    border: 1px solid var(--live-border);
    border-radius: 16px;
    background: #0f151d;
    box-shadow: var(--shadow);
}

.live-hero-copy,
.live-hero-status {
    position: relative;
    z-index: 1;
}

.live-league-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.25rem;
}

.league-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .75rem;
    border: 1px solid var(--live-border);
    border-radius: 8px;
    color: #dbe7fa;
    background: rgba(255, 255, 255, .045);
    font-size: .8rem;
    font-weight: 750;
}

.league-pill > span,
.competition-mark {
    width: .65rem;
    height: .65rem;
    flex: 0 0 auto;
    border-radius: 50%;
    box-shadow: none;
}

.league-pill.ucl > span,
.ucl .competition-mark {
    background: #607fa7;
}

.league-pill.uel > span,
.uel .competition-mark {
    background: #b66a35;
}

.league-pill.uecl > span,
.uecl .competition-mark {
    background: #4f9b7b;
}

.live-hero-status {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--live-border);
    border-radius: 12px;
    background: #0b1118;
}

.live-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .72rem .25rem;
    color: var(--live-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: .9rem;
    font-weight: 650;
}

.live-status-row strong {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    color: #fff;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    font-size: .9rem;
}

.live-updated {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: .85rem;
    color: var(--text-dim);
    font-size: .78rem;
}

.live-pulse,
.live-tab-dot {
    position: relative;
    display: inline-block;
    width: .56rem;
    height: .56rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #4f9b7b;
    box-shadow: none;
}

.live-pulse::after,
.live-tab-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(79, 155, 123, .38);
    border-radius: inherit;
    animation: live-pulse-ring 1.8s ease-out infinite;
}

@keyframes live-pulse-ring {
    0% { transform: scale(.7); opacity: 1; }
    75%, 100% { transform: scale(1.7); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .live-pulse::after,
    .live-tab-dot::after {
        animation: none;
    }
}

.live-notice {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(77, 163, 255, .2);
    border-radius: 18px;
    background: rgba(77, 163, 255, .08);
    color: #dceaff;
}

.live-notice-warning {
    border-color: rgba(255, 176, 32, .24);
    background: rgba(255, 176, 32, .08);
    color: #ffe7b5;
}

.live-notice > i {
    margin-top: .2rem;
    font-size: 1.15rem;
}

.live-notice div {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.live-notice span {
    color: var(--text-soft);
    font-size: .9rem;
}

.live-dashboard {
    overflow: hidden;
    border: 1px solid var(--live-border);
    border-radius: 14px;
    background: #0c1219;
    box-shadow: var(--shadow);
}

.live-tabs {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--live-border);
    background: rgba(255, 255, 255, .02);
    scrollbar-width: thin;
}

.live-tab,
.live-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 44px;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 13px;
    color: var(--text-soft);
    background: transparent;
    font-size: .9rem;
    font-weight: 750;
    transition: .2s ease;
}

.live-tab {
    padding: .6rem .8rem;
}

.live-tab:hover,
.live-tab:focus-visible,
.live-tab.is-active,
.live-refresh:hover,
.live-refresh:focus-visible {
    color: #fff;
    border-color: var(--live-border);
    background: rgba(255, 255, 255, .06);
    outline: none;
}

.live-tab.is-active {
    border-color: rgba(96, 127, 167, .38);
    background: #17202b;
}

.live-tab strong {
    display: grid;
    min-width: 1.6rem;
    height: 1.6rem;
    padding: 0 .35rem;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .72rem;
}

.live-refresh {
    margin-left: auto;
    padding: .6rem .75rem;
}

.live-tab-panels {
    min-height: 280px;
}

.live-tab-panel {
    padding: clamp(.75rem, 2vw, 1.25rem);
}

.live-round-browser {
    min-width: 0;
}

.live-round-flow {
    display: flex;
    gap: .45rem;
    margin: 0 0 1rem;
    padding: .45rem;
    overflow-x: auto;
    border: 1px solid var(--live-border);
    border-radius: 16px;
    background: rgba(3, 9, 18, .42);
    scrollbar-width: thin;
}

.live-round-button {
    position: relative;
    display: inline-flex;
    min-width: max-content;
    min-height: 42px;
    align-items: center;
    gap: .5rem;
    padding: .55rem .7rem;
    border: 1px solid transparent;
    border-radius: 11px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, .025);
    font-size: .78rem;
    font-weight: 750;
    transition: .2s ease;
}

.live-round-button:hover,
.live-round-button:focus-visible,
.live-round-button.is-active {
    color: #fff;
    border-color: rgba(77, 163, 255, .28);
    background: rgba(77, 163, 255, .11);
    outline: none;
}

.live-round-button.is-empty:not(.is-active) {
    opacity: .58;
}

.live-round-button strong {
    display: grid;
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 .3rem;
    place-items: center;
    border-radius: 7px;
    color: #dceaff;
    background: rgba(255, 255, 255, .07);
    font-size: .68rem;
}

.live-round-panel[hidden] {
    display: none;
}

.live-date-group + .live-date-group {
    margin-top: 1.25rem;
}

.live-date-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .25rem .2rem .75rem;
    color: var(--text-soft);
}

.live-date-header i {
    color: var(--accent-2);
}

.live-date-header h2 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: capitalize;
}

.live-date-header span {
    margin-left: auto;
    color: var(--text-dim);
    font-size: .78rem;
    font-weight: 650;
}

.live-competition-block {
    overflow: hidden;
    border: 1px solid var(--live-border);
    border-radius: 18px;
    background: rgba(5, 12, 23, .38);
}

.live-competition-block + .live-competition-block {
    margin-top: .8rem;
}

.live-competition-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    min-height: 42px;
    padding: .65rem .85rem;
    border-bottom: 1px solid var(--live-border);
    background: rgba(255, 255, 255, .025);
}

.live-competition-title h3 {
    margin: 0;
    color: #dce7f9;
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.live-match-card {
    position: relative;
    padding: .8rem 1rem;
    background: rgba(255, 255, 255, .012);
}

.live-match-card + .live-match-card {
    border-top: 1px solid rgba(255, 255, 255, .065);
}

.live-match-card.is-live {
    background: #101d18;
}

.live-match-card.is-live::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--accent);
}

.live-match-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .45rem 1rem;
    min-height: 1.15rem;
    margin-bottom: .35rem;
    color: var(--text-dim);
    font-size: .72rem;
}

.live-match-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.live-scoreboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
    align-items: center;
    gap: .75rem;
    min-height: 66px;
}

.live-team {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-width: 0;
}

.live-team-home {
    justify-content: flex-end;
    text-align: right;
}

.live-team-away {
    justify-content: flex-start;
    text-align: left;
}

.live-team-name {
    overflow: hidden;
    color: #f5f8ff;
    font-size: .95rem;
    font-weight: 780;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.live-team-name-link {
    text-decoration: none;
    transition: color .2s ease;
}

.live-team-name-link:hover,
.live-team-name-link:focus-visible {
    color: #9fc7ff;
    outline: none;
}

.live-team-logo {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--live-border);
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
    color: var(--text-dim);
}

.live-team-logo:not(.is-static) {
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.live-team-logo:not(.is-static):hover,
.live-team-logo:not(.is-static):focus-visible {
    border-color: rgba(77, 163, 255, .45);
    background: rgba(77, 163, 255, .12);
    transform: translateY(-1px);
    outline: none;
}

.live-team-logo.is-static {
    pointer-events: none;
}

.live-team-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.live-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    text-align: center;
}

.live-score-value,
.live-kickoff-time,
.live-kickoff-pending {
    color: #fff;
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
    font-weight: 850;
    letter-spacing: -.02em;
}

.live-kickoff-time {
    color: #cfe2ff;
}

.live-kickoff-pending {
    color: var(--text-soft);
    font-size: .78rem;
    letter-spacing: 0;
}

.live-score-center > span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--text-dim);
    font-size: .69rem;
    font-weight: 750;
    text-transform: uppercase;
}

.live-score-center > span.is-live-label {
    color: #8ff2bb;
}

.live-score-center > span b {
    color: inherit;
    font-weight: 850;
}

.live-match-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .55rem;
    padding-top: .55rem;
    border-top: 1px dashed rgba(255, 255, 255, .065);
}

.live-period-scores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
}

.live-period-scores span {
    padding: .3rem .48rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: var(--text-dim);
    font-size: .68rem;
    font-weight: 650;
}

.live-period-scores strong {
    margin-left: .2rem;
    color: #dce7f9;
    font-variant-numeric: tabular-nums;
}

.live-events-button {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .38rem .6rem;
    border: 1px solid var(--live-border);
    border-radius: 9px;
    background: rgba(77, 163, 255, .07);
    color: #cfe2ff;
    font-size: .72rem;
    font-weight: 750;
    transition: .2s ease;
}

.live-events-button:hover,
.live-events-button:focus-visible {
    border-color: rgba(77, 163, 255, .32);
    background: rgba(77, 163, 255, .14);
    color: #fff;
    outline: none;
}

.live-events-button:disabled {
    cursor: wait;
    opacity: .65;
}

.live-events-button.is-loading i {
    animation: live-spin .8s linear infinite;
}

@keyframes live-spin {
    to { transform: rotate(360deg); }
}

.live-events-panel {
    margin-top: .7rem;
    padding: .75rem;
    border: 1px solid var(--live-border);
    border-radius: 14px;
    background: rgba(3, 9, 18, .5);
}

.live-events-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .7rem;
    color: var(--text-soft);
    font-size: .8rem;
}

.live-events-message.is-error {
    color: #ffc0c9;
}

.live-events-head {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding: .15rem .2rem .65rem;
    color: #fff;
    font-size: .8rem;
}

.live-events-head span {
    color: var(--text-dim);
}

.live-event-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.live-event-timeline li {
    display: grid;
    grid-template-columns: 34px 28px minmax(0, 1fr);
    align-items: center;
    gap: .4rem;
    min-width: 0;
    padding: .5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}

.live-event-minute {
    color: #fff;
    font-size: .78rem;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    text-align: center;
}

.live-event-icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: #dce7f9;
    font-size: .72rem;
}

.live-event-icon .event-yellow {
    color: #ffd83d;
}

.live-event-icon .event-red {
    color: #ff5d73;
}

.live-event-timeline li > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .08rem;
}

.live-event-timeline strong {
    color: #f2f6ff;
    font-size: .74rem;
}

.live-event-timeline li > div > span,
.live-event-timeline small {
    overflow: hidden;
    color: var(--text-dim);
    font-size: .68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-empty-state {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
}

.live-empty-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    place-items: center;
    border: 1px solid var(--live-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
    color: var(--text-dim);
    font-size: 1.5rem;
}

.live-empty-state h2 {
    margin: 0 0 .45rem;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}

.live-empty-state p {
    max-width: 480px;
    margin: 0;
    color: var(--text-soft);
    font-size: .88rem;
    line-height: 1.6;
}

.live-source-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: var(--text-dim);
    font-size: .76rem;
    text-align: center;
}

/* Avrupa Yolu arşivi, canlı maç merkeziyle aynı yüzey ve ritmi kullanır. */
.archive-page .live-hero {
    margin-top: 1rem;
}

.archive-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--live-border);
}

.archive-section-head h2,
.archive-content-title h2 {
    margin: .25rem 0;
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 820;
}

.archive-section-head p,
.archive-content-title p {
    margin: 0;
    color: var(--live-muted);
    font-size: .84rem;
    line-height: 1.55;
}

.archive-season-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    padding: 1rem;
}

.archive-season-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    align-items: center;
    gap: .75rem;
    min-height: 88px;
    padding: .9rem;
    border: 1px solid var(--live-border);
    border-radius: 14px;
    color: #f4f7ff;
    background: rgba(255, 255, 255, .025);
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.archive-season-card:hover,
.archive-season-card:focus-visible {
    border-color: rgba(77, 163, 255, .38);
    color: #fff;
    background: rgba(77, 163, 255, .08);
    transform: translateY(-2px);
    outline: none;
}

.archive-season-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    color: #bcd7ff;
    background: #17202b;
}

.archive-season-card > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .25rem;
}

.archive-season-card strong {
    font-size: .95rem;
}

.archive-season-card small {
    overflow: hidden;
    color: var(--live-muted);
    font-size: .74rem;
    line-height: 1.4;
    text-overflow: ellipsis;
}

.archive-season-card > i {
    color: var(--live-muted);
    text-align: center;
}

.archive-season-nav,
.archive-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.15rem;
}

.archive-season-nav a,
.archive-detail-chips span,
.archive-match-count {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 36px;
    padding: .45rem .65rem;
    border: 1px solid var(--live-border);
    border-radius: 10px;
    color: #dbe7fa;
    background: rgba(255, 255, 255, .045);
    font-size: .76rem;
    font-weight: 750;
    text-decoration: none;
}

.archive-season-nav a:hover,
.archive-season-nav a:focus-visible {
    border-color: rgba(77, 163, 255, .38);
    color: #fff;
    background: rgba(77, 163, 255, .1);
    outline: none;
}

.archive-search-panel .archive-section-head {
    border-bottom: 0;
}

.archive-search-panel .season-search-wrap {
    width: min(100%, 420px);
    flex: 0 1 420px;
}

.archive-content-title {
    margin-bottom: .9rem;
}

.archive-standings-grid {
    gap: 1rem;
}

.archive-standings-card {
    min-width: 0;
}

.archive-table-head {
    min-height: 70px;
}

.archive-table-head > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .18rem;
}

.archive-table-head h3 {
    margin: 0;
    color: #fff;
    font-size: .95rem;
}

.archive-table-head small,
.archive-stage-card .live-competition-title small {
    color: var(--live-muted);
    font-size: .7rem;
}

.archive-table-head .league-zone-legend {
    margin-left: auto;
}

.archive-stage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.archive-stage-card {
    min-width: 0;
}

.archive-stage-card .live-competition-title small {
    margin-left: auto;
}

.archive-stage-code {
    display: grid;
    min-width: 36px;
    height: 30px;
    padding: 0 .35rem;
    place-items: center;
    border-radius: 8px;
    color: #dceaff;
    background: #17202b;
    font-size: .68rem;
    font-weight: 850;
}

.archive-stage-teams {
    display: flex;
    flex-direction: column;
    padding: .4rem;
}

.archive-team-link {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .45rem .55rem;
    border-radius: 9px;
    color: #e5ecf8;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
}

.archive-team-link:hover,
.archive-team-link:focus-visible {
    color: #fff;
    background: rgba(77, 163, 255, .09);
    outline: none;
}

.archive-team-link > i:first-child {
    color: #7898bd;
    text-align: center;
}

.archive-team-link > i:last-child {
    color: var(--live-muted);
    font-size: .65rem;
    text-align: center;
}

.archive-team-stats .live-status-row:last-child {
    border-bottom: 0;
}

.archive-season-switcher .archive-section-head {
    border-bottom: 0;
}

.archive-switcher-actions {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.archive-switcher-actions > a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--live-border);
    border-radius: 10px;
    color: #dbe7fa;
    background: rgba(255, 255, 255, .04);
}

.archive-switcher-actions .form-select {
    min-width: 190px;
    border-color: var(--live-border);
    color: #fff;
    background-color: #111820;
}

.archive-match-head {
    border-bottom: 0;
}

.archive-match-count {
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .live-hero {
        grid-template-columns: 1fr;
    }

    .live-hero-status {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .65rem;
    }

    .live-status-row {
        flex-direction: column;
        align-items: flex-start;
        gap: .45rem;
        border: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, .035);
        padding: .75rem;
    }

    .live-updated {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .archive-season-grid,
    .archive-stage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .archive-search-panel .season-search-wrap {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 767.98px) {
    .live-tab-panel {
        padding: .6rem;
    }

    .live-match-card {
        padding: .8rem .65rem;
    }

    .live-scoreboard {
        grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
        gap: .4rem;
    }

    .live-team {
        flex-direction: column;
        gap: .35rem;
        text-align: center;
    }

    .live-team-home {
        flex-direction: column-reverse;
    }

    .live-team-home,
    .live-team-away {
        justify-content: center;
    }

    .live-team-name {
        display: -webkit-box;
        min-height: 2.35rem;
        overflow: hidden;
        font-size: .79rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .live-team-logo {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .live-team-logo img {
        width: 31px;
        height: 31px;
    }

    .live-score-value,
    .live-kickoff-time {
        font-size: 1.1rem;
    }

    .live-score-center > span {
        flex-wrap: wrap;
        justify-content: center;
        font-size: .6rem;
    }

    .live-match-meta {
        margin-bottom: .55rem;
    }

    .live-event-timeline {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575.98px) {
    .live-hero-status {
        grid-template-columns: 1fr 1fr;
    }

    .live-status-row:last-of-type {
        grid-column: 1 / -1;
    }

    .live-refresh span {
        display: none;
    }

    .live-tabs {
        gap: .25rem;
        padding: .5rem;
    }

    .live-tab {
        gap: .35rem;
        padding-inline: .55rem;
        font-size: .8rem;
    }

    .live-tab i:not(.live-tab-dot) {
        display: none;
    }

    .live-date-header h2 {
        font-size: .88rem;
    }

    .live-date-header span {
        display: none;
    }

    .live-competition-title h3 {
        font-size: .77rem;
    }

    .live-events-head {
        flex-direction: column;
    }

    .archive-season-grid,
    .archive-stage-grid {
        grid-template-columns: 1fr;
    }

    .archive-season-grid {
        padding: .65rem;
    }

    .archive-switcher-actions {
        width: 100%;
    }

    .archive-switcher-actions .form-select {
        min-width: 0;
        flex: 1 1 auto;
    }

}
