.live-page {
    --surface: #131a26;
    --deep: #0b0f1b;
    --row: rgba(255, 255, 255, 0.03);
    --row-hover: rgba(255, 255, 255, 0.055);
    --line: rgba(66, 67, 124, 0.5);
    --line-soft: rgba(255, 255, 255, 0.06);
    --text: #ffffff;
    --soft: #d6dce6;
    --muted: #8b95a7;
    --yellow: #ffea63;
    --blue: #53c3ff;
    --red: #ff5353;
    --green: #82ff4a;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --finale: #ffe84a;
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s5: 24px;
    --s6: 32px;
    --r: 8px;
    --fs-head: 1.2rem;
    --fs-body: 1rem;
    --fs-meta: 0.8rem;
    width: min(1280px, calc(100% - var(--s6)));
    margin: 0 auto var(--s6);
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: var(--s4);
}

.live-page [hidden] {
    display: none !important;
}

.live-page button {
    appearance: none;
    font-family: 'WMCT_One', sans-serif;
}

.live-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s3);
    padding: var(--s6) var(--s5);
    border-radius: var(--r);
    background: linear-gradient(135deg, rgba(19, 53, 82, 0.4) 0%, rgba(11, 15, 27, 0.6) 100%);
    border: 1px solid var(--line);
}

.live-hero-status {
    display: inline-flex;
    align-items: center;
    gap: var(--s3);
    font-size: var(--fs-meta);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    padding: var(--s1) var(--s3);
    border-radius: var(--r);
    background: var(--red);
    color: #0b141d;
    letter-spacing: 2px;
}

.live-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b141d;
    animation: live-pulse 1.5s infinite;
}

.live-status-text {
    color: var(--yellow);
}

.live-head-title {
    display: inline-block;
    margin: 0;
    padding-bottom: var(--s3);
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: normal;
    line-height: 1.15;
    letter-spacing: 1px;
    color: var(--yellow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-head-sub {
    margin: 0;
    max-width: 640px;
    font-size: var(--fs-body);
    color: var(--text);
}

.live-notice {
    padding: var(--s3) var(--s4);
    border-radius: var(--r);
    border: 1px solid var(--red);
    background: var(--surface);
    color: var(--text);
    text-align: center;
}

.live-notice.is-preview {
    border-color: var(--yellow);
    color: var(--yellow);
}

.live-topbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: var(--r);
    overflow: hidden;
    background: var(--deep);
    border: 1px solid var(--line);
}

.live-route {
    padding: var(--s4) var(--s3);
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: #888888;
    font-size: var(--fs-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.live-route:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.live-route.active {
    color: var(--yellow);
    background: var(--surface);
    border-bottom-color: var(--yellow);
}

.live-route:focus-visible,
.live-side-btn:focus-visible,
.live-btn:focus-visible,
.live-row:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: -2px;
}

.live-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: var(--s4);
    align-items: start;
}

.live-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
    padding: var(--s2);
    border-radius: var(--r);
    background: var(--deep);
    border: 1px solid var(--line);
}

.live-side-label {
    margin: var(--s3) var(--s3) var(--s1);
    font-family: 'Blogger', sans-serif;
    font-size: var(--fs-meta);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.live-side-label:first-child {
    margin-top: var(--s1);
}

.live-side-empty {
    margin: var(--s2) var(--s3);
    color: var(--muted);
}

.live-side-btn {
    width: 100%;
    padding: var(--s3);
    background: transparent;
    border: 0;
    border-left: 3px solid transparent;
    border-radius: var(--r);
    color: #888888;
    font-size: var(--fs-body);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.live-side-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.live-side-btn.active {
    color: var(--yellow);
    background: var(--surface);
    border-left-color: var(--yellow);
}

.live-main,
.live-view {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
    min-width: 0;
}

.live-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: var(--s5);
    border-radius: var(--r);
    background: var(--surface);
    border: 1px solid var(--line);
}

.live-card-title {
    margin: 0 0 var(--s4);
    padding-bottom: var(--s3);
    font-size: var(--fs-head);
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: var(--yellow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-card-hint {
    margin: calc(var(--s2) * -1) 0 var(--s4);
    font-size: var(--fs-meta);
    color: var(--muted);
    text-align: center;
}

.live-card-hint:empty {
    display: none;
}

.live-next,
.live-gate {
    align-items: center;
    text-align: center;
    gap: var(--s3);
    padding: var(--s6) var(--s5);
}

.live-next-label {
    margin: 0;
    font-size: var(--fs-meta);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
}

.live-next-name {
    margin: 0;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: normal;
    color: var(--yellow);
}

.live-next-when {
    margin: 0;
    font-size: var(--fs-body);
    color: var(--text);
}

.live-countdown {
    display: grid;
    grid-template-columns: repeat(4, 104px);
    justify-content: center;
    gap: var(--s3);
    margin: var(--s2) 0;
}

.live-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s2);
    padding: var(--s4) var(--s2) var(--s3);
    border-radius: var(--r);
    background: var(--deep);
    border: 1px solid var(--line);
}

.live-countdown-value {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    line-height: 1;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.live-countdown-label {
    font-size: var(--fs-meta);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.live-countdown-now {
    grid-column: 1 / -1;
    font-size: var(--fs-head);
    color: var(--green);
}

.live-gate-title {
    margin: 0;
    font-size: var(--fs-head);
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
}

.live-gate-text {
    margin: 0;
    max-width: 560px;
    font-size: var(--fs-body);
    color: var(--text);
}

.live-btn,
.live-page a.live-btn {
    display: inline-block;
    margin-top: var(--s2);
    padding: var(--s3) var(--s5);
    border-radius: var(--r);
    border: 1px solid var(--blue);
    background: transparent;
    color: var(--text);
    font-family: 'WMCT_One', sans-serif;
    font-size: var(--fs-body);
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.live-btn:hover,
.live-page a.live-btn:hover {
    color: var(--text);
    background: rgba(83, 195, 255, 0.15);
}

.live-standings,
.live-feed,
.live-board-list,
.live-track {
    list-style: none;
    margin: 0;
    padding: 0;
}

.live-standings,
.live-feed,
.live-board-list {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.live-standing {
    --team: #4c84b6;
    border-radius: var(--r);
    background: var(--row);
    border: 1px solid transparent;
    border-left: 4px solid var(--team);
    transition: border-color 0.2s ease;
}

.live-standing.is-open {
    border-top-color: var(--line);
    border-right-color: var(--line);
    border-bottom-color: var(--line);
}

.live-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 104px 16px;
    align-items: center;
    gap: var(--s3);
    width: 100%;
    min-height: 60px;
    padding: var(--s3) var(--s4) var(--s3) var(--s2);
    border: 0;
    border-radius: var(--r);
    background: transparent;
    color: var(--text);
    font-size: var(--fs-body);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.live-row:hover {
    background: var(--row-hover);
}

.live-row.is-bumped {
    animation: live-bump 1.4s ease-out;
}

.live-rank-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s1);
}

.live-rank {
    min-width: 24px;
    text-align: center;
    font-size: var(--fs-body);
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.is-rank-1 .live-rank {
    color: var(--gold);
}

.is-rank-2 .live-rank {
    color: var(--silver);
}

.is-rank-3 .live-rank {
    color: var(--bronze);
}

.live-standing.is-podium .live-rank {
    font-size: var(--fs-head);
}

.live-move {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: var(--fs-meta);
    font-variant-numeric: tabular-nums;
    animation: live-move-fade 4s linear forwards;
}

.live-move.is-up {
    color: var(--green);
}

.live-move.is-down {
    color: var(--red);
}

.live-move.is-up::before {
    content: '\25B2';
    font-size: 0.6rem;
}

.live-move.is-down::before {
    content: '\25BC';
    font-size: 0.6rem;
}

.live-swatch {
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: var(--team);
    flex-shrink: 0;
}

.live-row-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.live-team-name {
    color: var(--team);
    font-size: var(--fs-head);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-bar {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: var(--line-soft);
    overflow: hidden;
}

.live-bar-fill {
    display: block;
    height: 100%;
    background: var(--team);
    transition: width 0.9s ease;
}

.live-row-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--s1);
}

.live-total {
    font-size: var(--fs-head);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.live-gap {
    font-size: var(--fs-meta);
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.live-chevron {
    justify-self: center;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.live-standing.is-open .live-chevron {
    margin-top: 4px;
    transform: rotate(225deg);
    border-color: var(--yellow);
}

.live-detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.live-standing.is-open .live-detail {
    grid-template-rows: 1fr;
}

.live-detail-inner {
    min-height: 0;
    overflow: hidden;
}

.live-detail-body {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    margin: 0 var(--s4) var(--s4);
    padding-top: var(--s4);
    border-top: 1px solid var(--line-soft);
}

.live-chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
    gap: var(--s2);
}

.live-chip {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
    padding: var(--s2) var(--s3);
    border-radius: var(--r);
    background: var(--deep);
    border: 1px solid var(--line);
}

.live-chip.is-current {
    border-color: var(--yellow);
}

.live-chip.is-finale {
    border-color: var(--finale);
}

.live-chip.is-upcoming,
.live-chip.is-skipped {
    opacity: 0.55;
}

.live-chip-label {
    font-size: var(--fs-meta);
    color: var(--muted);
    white-space: nowrap;
}

.live-chip-value {
    font-size: var(--fs-body);
    text-align: right;
    color: var(--team);
    font-variant-numeric: tabular-nums;
}

.live-feed-item {
    --team: #4c84b6;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 72px;
    align-items: center;
    gap: var(--s3);
    min-height: 44px;
    padding: var(--s2) var(--s3);
    border-radius: var(--r);
    background: var(--row);
    border-left: 4px solid var(--team);
    font-size: var(--fs-body);
}

.live-feed-item.is-new {
    animation: live-feed-in 1.2s ease-out;
}

.live-feed-delta {
    padding: 2px 0;
    border-radius: var(--r);
    text-align: center;
    background: var(--green);
    color: #0b141d;
    font-family: 'WMCT_One', sans-serif;
    font-variant-numeric: tabular-nums;
}

.live-feed-item.is-negative .live-feed-delta {
    background: var(--red);
}

.live-feed-text {
    color: var(--soft);
    overflow-wrap: anywhere;
}

.live-feed-player {
    color: var(--team);
}

.live-feed-time {
    font-size: var(--fs-meta);
    color: var(--muted);
    text-align: right;
    white-space: nowrap;
}

#live-feed-full {
    max-height: 640px;
    overflow-y: auto;
}

.live-empty {
    padding: var(--s3);
    font-family: 'Blogger', sans-serif;
    color: var(--muted);
    text-align: center;
}

.live-track-wrap {
    overflow-x: auto;
}

.live-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(128px, 1fr);
    gap: var(--s3);
    min-width: min-content;
    padding-bottom: var(--s1);
}

.live-track-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s1);
    padding: var(--s4) var(--s2) var(--s3);
    border-radius: var(--r);
    background: var(--deep);
    border: 1px solid var(--line);
    text-align: center;
}

.live-track-node:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23px;
    right: -13px;
    width: 12px;
    height: 2px;
    background: var(--line);
}

.live-track-node.is-done:not(:last-child)::after {
    background: var(--green);
}

.live-track-dot {
    width: 14px;
    height: 14px;
    margin-bottom: var(--s1);
    border-radius: 50%;
    border: 2px solid var(--muted);
}

.live-track-node.is-done .live-track-dot {
    background: var(--green);
    border-color: var(--green);
}

.live-track-node.is-current {
    border-color: var(--yellow);
}

.live-track-node.is-current .live-track-dot {
    background: var(--yellow);
    border-color: var(--yellow);
    animation: live-dot-pulse 1.5s infinite;
}

.live-track-node.is-upcoming {
    opacity: 0.6;
}

.live-track-node.is-skipped {
    opacity: 0.5;
}

.live-track-node.is-skipped .live-track-dot {
    border-color: var(--red);
}

.live-track-node.is-skipped .live-track-name {
    text-decoration: line-through;
}

.live-track-node.is-finale {
    border: 2px solid var(--finale);
    opacity: 1;
}

.live-track-node.is-finale .live-track-slot {
    color: var(--finale);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.live-track-node.is-finale .live-track-dot {
    width: 18px;
    height: 18px;
    border-color: var(--finale);
}

.live-track-slot {
    font-size: var(--fs-body);
    color: var(--text);
}

.live-track-name {
    font-size: var(--fs-body);
    line-height: 1.2;
    color: var(--soft);
}

.live-track-meta {
    font-size: var(--fs-meta);
    color: var(--blue);
}

.live-table-wrap {
    max-height: 70vh;
    overflow: auto;
}

.live-score-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: var(--fs-body);
}

.live-score-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: var(--s2) var(--s3);
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    font-weight: normal;
    font-size: var(--fs-meta);
    text-align: right;
    vertical-align: bottom;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.live-detail .live-score-table th {
    background: var(--surface);
}

.live-score-table th.live-th-lead {
    text-align: left;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-score-table th.live-th-total {
    width: 96px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-score-table th.is-current {
    color: var(--yellow);
}

.live-score-table th.is-finale {
    color: var(--finale);
}

.live-score-table th.is-upcoming {
    color: var(--muted);
}

.live-th-name {
    display: block;
    font-family: 'Blogger', sans-serif;
    color: var(--soft);
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-mult {
    display: block;
    font-family: 'Blogger', sans-serif;
    font-size: var(--fs-meta);
    color: var(--blue);
}

.live-score-table td {
    height: 44px;
    padding: 0 var(--s3);
    border-bottom: 1px solid var(--line-soft);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
}

.live-score-table td:first-child {
    box-shadow: inset 4px 0 0 var(--team);
    padding-left: var(--s4);
}

.live-score-table td.live-td-lead {
    text-align: left;
}

.live-score-table td.live-td-lead .live-move {
    margin-left: var(--s2);
}

.live-score-table td.is-current {
    background: rgba(255, 234, 99, 0.06);
}

.live-score-table td.is-upcoming {
    color: var(--muted);
}

.live-score-table td.is-top {
    color: var(--team);
}

.live-score-table td.live-td-total {
    color: var(--yellow);
}

.live-score-table tbody tr:hover td {
    background: var(--row-hover);
}

.live-score-table td.live-empty {
    text-align: center;
    box-shadow: none;
}

@media (min-width: 901px) {
    .live-page .live-card > .live-table-wrap {
        max-height: none;
        overflow: visible;
    }

    .live-page .live-card > .live-table-wrap .live-score-table {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .live-page .live-card > .live-table-wrap .live-score-table th {
        position: static;
    }

    .live-page .live-card > .live-table-wrap .live-score-table th,
    .live-page .live-card > .live-table-wrap .live-score-table td {
        padding-left: var(--s2);
        padding-right: var(--s2);
    }

    .live-page .live-card > .live-table-wrap .live-score-table th:first-child,
    .live-page .live-card > .live-table-wrap .live-score-table td:first-child {
        padding-left: var(--s4);
    }

    .live-page .live-game-col .live-board-list {
        max-height: none;
        overflow: visible;
    }

    .live-page .live-card > .live-table-wrap .live-score-table td.live-td-lead {
        overflow: hidden;
    }

    .live-page .live-card > .live-table-wrap .live-score-table th.live-th-total {
        width: 88px;
    }
}

.live-cell-team {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    color: var(--team);
}

.live-player {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    max-width: 100%;
    color: var(--muted);
}

.live-player.is-online {
    color: var(--text);
}

.live-player-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4a5162;
    flex-shrink: 0;
}

.live-player.is-online .live-dot {
    background: var(--green);
}

.live-team-chip {
    display: inline-block;
    max-width: 100%;
    padding: 2px var(--s2);
    border-radius: var(--r);
    font-size: var(--fs-meta);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0b141d;
    background: var(--team);
}

.live-game-sections {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
}

.live-game.is-current {
    border-color: var(--yellow);
}

.live-game.is-finale {
    border: 2px solid var(--finale);
}

.live-game-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s2) var(--s3);
    margin: 0 0 var(--s4);
    padding-bottom: var(--s3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-head);
    font-weight: normal;
    letter-spacing: 1px;
    color: var(--yellow);
}

.live-game.is-finale .live-game-slot {
    color: var(--finale);
    text-transform: uppercase;
}

.live-game-title .live-mult {
    display: inline;
}

.live-game-state {
    padding: 2px var(--s2);
    border-radius: var(--r);
    font-size: var(--fs-meta);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
}

.live-game.is-current .live-game-state {
    color: #0b141d;
    background: var(--yellow);
    border-color: var(--yellow);
}

.live-game.is-skipped .live-game-state {
    color: var(--red);
    border-color: var(--red);
}

.live-game.is-done .live-game-state {
    color: #0b141d;
    background: var(--green);
    border-color: var(--green);
}

.live-game-placeholder {
    margin: 0;
    padding: var(--s5);
    border-radius: var(--r);
    border: 1px dashed var(--line);
    color: var(--muted);
    text-align: center;
}

.live-game-cols {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: var(--s5);
    align-items: start;
}

.live-game-col-title {
    margin: 0 0 var(--s3);
    font-family: 'Blogger', sans-serif;
    font-size: var(--fs-meta);
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.live-game-col .live-board-list {
    max-height: 440px;
    overflow-y: auto;
}

.live-ranked-row {
    --team: #4c84b6;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) minmax(0, 128px) 72px;
    align-items: center;
    gap: var(--s3);
    min-height: 40px;
    padding: 0 var(--s3) 0 var(--s1);
    border-radius: var(--r);
    background: var(--row);
    border-left: 4px solid var(--team);
    font-size: var(--fs-body);
}

.live-ranked-row.is-team {
    grid-template-columns: 56px minmax(0, 1fr) 72px;
}

.live-ranked-row .live-team-chip {
    justify-self: start;
}

.live-ranked-name {
    color: var(--team);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-ranked-pts {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.live-page.is-stale .live-main {
    filter: grayscale(0.85);
    opacity: 0.6;
}

@keyframes live-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes live-dot-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes live-bump {
    0% {
        box-shadow: inset 0 0 0 2px var(--yellow);
    }

    100% {
        box-shadow: inset 0 0 0 2px transparent;
    }
}

@keyframes live-feed-in {
    0% {
        opacity: 0;
        transform: translateX(-12px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes live-move-fade {
    0%,
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .live-game-cols {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .live-page {
        width: calc(100% - var(--s6));
        gap: var(--s3);
    }

    .live-head {
        padding: var(--s5) var(--s4);
    }

    .live-route {
        padding: var(--s3) var(--s1);
        font-size: var(--fs-meta);
    }

    .live-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--s3);
    }

    .live-sidebar {
        flex-direction: row;
        align-items: center;
        gap: var(--s1);
        padding: var(--s1);
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .live-side-label {
        margin: 0 var(--s2);
        white-space: nowrap;
    }

    .live-side-label:first-child {
        margin-top: 0;
    }

    .live-side-empty {
        white-space: nowrap;
    }

    .live-side-btn {
        width: auto;
        flex: 0 0 auto;
        padding: var(--s2) var(--s3);
        border-left: 0;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        text-align: center;
    }

    .live-side-btn.active {
        border-bottom-color: var(--yellow);
    }

    .live-main,
    .live-view {
        gap: var(--s3);
    }

    .live-card {
        padding: var(--s4);
    }

    .live-next,
    .live-gate {
        padding: var(--s5) var(--s4);
    }

    .live-countdown {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        max-width: 360px;
        gap: var(--s2);
    }

    .live-row {
        grid-template-columns: 40px minmax(0, 1fr) 80px 12px;
        gap: var(--s2);
        padding: var(--s2) var(--s3) var(--s2) var(--s1);
    }

    .live-team-name,
    .live-total {
        font-size: var(--fs-body);
    }

    .live-detail-body {
        margin: 0 var(--s2) var(--s3);
    }

    .live-chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .live-feed-item {
        grid-template-columns: 52px minmax(0, 1fr);
        font-size: 0.9rem;
    }

    .live-feed-time {
        grid-column: 2;
        text-align: left;
    }

    .live-ranked-row,
    .live-ranked-row.is-team {
        grid-template-columns: 44px minmax(0, 1fr) 64px;
    }

    .live-ranked-row .live-team-chip {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-bar-fill,
    .live-detail,
    .live-chevron {
        transition: none;
    }

    .live-row.is-bumped,
    .live-feed-item.is-new,
    .live-pill::before,
    .live-track-node.is-current .live-track-dot {
        animation: none;
    }
}