:root {
    --tp4-container: 1250px;
    --tp4-main-column: 910px;
    --tp4-sidebar-column: 320px;
    --tp4-column-gap: 20px;
    --tp4-header: #fafaf9;
    --tp4-header-deep: #222526;
    --tp4-accent: #e94719;
    --tp4-accent-dark: #c93a12;
    --tp4-info: #2f7fe5;
    --tp4-live-bg: #fbfbfa;
    --tp4-page: #f2f3f5;
    --tp4-surface: #fbfbfa;
    --tp4-text: #2d3033;
    --tp4-muted: #7a7f85;
    --tp4-line: #e1e3e6;
    --tp4-radius: 3px;
    --tp4-shadow: 0 6px 20px rgb(53 60 67 / 6%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--tp4-text);
    background: var(--tp4-page);
    font-family: "Microsoft Yahei", Arial, Tahoma, Helvetica, SimSun, "Hiragino Sans GB", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

body,
button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

img.is-missing-image {
    visibility: hidden;
}

.tp4-article-body img.is-missing-image {
    display: none;
}

button {
    color: inherit;
}

[hidden] {
    display: none !important;
}

.tp4-container {
    width: min(var(--tp4-container), calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.tp4-header {
    box-shadow: 0 2px 12px rgb(35 41 47 / 8%);
}

.tp4-brand-bar {
    color: #f5f5f2;
    background: var(--tp4-header-deep);
}

.tp4-brand-row,
.tp4-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tp4-brand-row {
    min-height: 84px;
}

.tp4-nav-bar {
    position: relative;
    background: var(--tp4-header);
}

.tp4-header-row {
    min-height: 58px;
    justify-content: center;
}

.tp4-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 240px;
    color: var(--tp4-accent);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.tp4-brand small {
    margin-left: 18px;
    color: #c8cacb;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
}

.tp4-brand img {
    max-width: 200px;
    max-height: 52px;
    object-fit: contain;
}

.tp4-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
}

.tp4-nav a {
    position: relative;
    padding: 17px 28px 16px;
    color: #333333;
    font-size: 16px;
    transition: color 160ms ease, background-color 160ms ease;
}

.tp4-nav a:hover,
.tp4-nav a:focus-visible {
    color: var(--tp4-accent);
    background: #f1f2f2;
}

.tp4-nav a.active,
.tp4-nav a[aria-current="page"] {
    color: var(--tp4-accent);
    background: #f2f3f3;
    box-shadow: inset 0 -2px var(--tp4-accent);
    font-weight: 600;
}

.tp4-nav-toggle {
    display: none;
    width: 44px;
    height: 38px;
    padding: 8px;
    border: 0;
    border-radius: var(--tp4-radius);
    background: #eeeeee;
}

.tp4-nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #555555;
}

.tp4-breadcrumb {
    min-height: 48px;
    padding: 0;
    color: #666c73;
    background: transparent;
    line-height: 48px;
}

.tp4-breadcrumb span,
.tp4-breadcrumb a,
.tp4-breadcrumb strong,
.tp4-breadcrumb em {
    display: inline;
    font-style: normal;
    font-weight: 400;
}

.tp4-breadcrumb a:hover {
    color: var(--tp4-accent-dark);
}

.tp4-breadcrumb em {
    margin: 0 8px;
}

.tp4-page-stack {
    display: grid;
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 36px;
}

.tp4-home-page .tp4-page-stack {
    gap: 20px;
}

.tp4-panel,
.tp4-match-ticker,
.tp4-side-block {
    border-radius: var(--tp4-radius);
    background: var(--tp4-surface);
    box-shadow: var(--tp4-shadow);
}

.tp4-panel {
    min-width: 0;
    padding: 22px;
}

.tp4-match-ticker {
    overflow: hidden;
    padding: 0;
}

.tp4-sr-only {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.tp4-ticker-shell {
    position: relative;
}

.tp4-ticker-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tp4-ticker-viewport::-webkit-scrollbar {
    display: none;
}

.tp4-ticker-viewport:focus-visible {
    outline: 2px solid var(--tp4-accent);
    outline-offset: -2px;
}

.tp4-match-ticker.can-scroll .tp4-ticker-viewport {
    cursor: grab;
}

.tp4-ticker-viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.tp4-ticker-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 4px) / 5);
    min-width: 100%;
    column-gap: 1px;
}

.tp4-ticker-viewport > .tp4-empty {
    padding: 24px;
}

.tp4-ticker-control {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 36px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 3px;
    background: rgb(31 35 38 / 78%);
    color: #f7f7f5;
    font-family: Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 160ms ease, opacity 160ms ease;
}

.tp4-ticker-control.is-prev {
    left: 8px;
}

.tp4-ticker-control.is-next {
    right: 8px;
}

.tp4-ticker-control:hover:not(:disabled),
.tp4-ticker-control:focus-visible {
    background: var(--tp4-accent-dark);
}

.tp4-ticker-control:disabled {
    opacity: 0.24;
    cursor: default;
}

.tp4-ticker-control[hidden] {
    display: none;
}

.tp4-ticker-item {
    display: grid;
    min-width: 0;
    min-height: 118px;
    padding: 12px 14px;
    gap: 5px;
    background: var(--tp4-surface);
    box-shadow: inset -1px 0 var(--tp4-line);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.tp4-ticker-item:hover {
    background: #f2f3f3;
}

.tp4-ticker-item > span,
.tp4-ticker-item > strong,
.tp4-ticker-item > small {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
}

.tp4-ticker-item > span {
    color: #555555;
}

.tp4-ticker-item > span b {
    color: var(--tp4-accent-dark);
    font-weight: 600;
}

.tp4-ticker-item > span em {
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-ticker-item strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-ticker-team {
    justify-content: flex-start !important;
    gap: 8px;
}

.tp4-ticker-team > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-ticker-item strong img,
.tp4-ticker-team > i {
    display: grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: #eef0f2;
    color: #777777;
    font-size: 11px;
    font-style: normal;
    object-fit: contain;
}

.tp4-ticker-item small {
    margin-top: 4px;
    color: var(--tp4-accent-dark);
    font-size: 12px;
}

.tp4-static-ticker {
    color: #777777;
    text-align: center;
}

.tp4-static-ticker p {
    margin: 0;
}

.tp4-home-feature {
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(0, 580px);
    min-height: 326px;
    gap: 20px;
}

.tp4-feature-media {
    position: relative;
    min-width: 0;
    height: 326px;
    overflow: hidden;
    background: #272727;
}

.tp4-home-carousel {
    isolation: isolate;
}

.tp4-carousel-viewport {
    display: grid;
    width: 100%;
    height: 100%;
}

.tp4-carousel-slide {
    position: relative;
    grid-area: 1 / 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 326px;
    overflow: hidden;
    background: #272727;
    opacity: 0;
    transition: opacity 240ms ease;
}

.tp4-carousel-slide.is-active {
    opacity: 1;
}

.tp4-carousel-slide.has-missing-image::before,
.tp4-media-cover.has-missing-image::before,
.tp4-topic-lead.has-missing-image::before,
.tp4-news-lead.has-missing-image::before {
    position: absolute;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    color: #d9dcdf;
    background:
        linear-gradient(135deg, rgb(233 71 25 / 22%), transparent 48%),
        linear-gradient(145deg, #303437, #202325);
    content: attr(data-missing-alt);
    font-size: 17px;
    text-align: center;
}

.tp4-carousel-slide.has-missing-image::before {
    content: "视频封面暂不可用";
}

.tp4-topic-lead,
.tp4-news-lead {
    position: relative;
}

.tp4-feature-media img,
.tp4-feature-placeholder {
    width: 100%;
    height: 100%;
    min-height: 326px;
    object-fit: cover;
}

.tp4-feature-placeholder {
    display: grid;
    place-items: center;
    color: #d7d7d7;
    background: linear-gradient(135deg, #313131, #222222);
    font-size: 20px;
}

.tp4-carousel-slide strong {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px 148px 17px 20px;
    overflow: hidden;
    color: #f0d900;
    background: rgb(17 17 17 / 78%);
    font-size: 17px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-carousel-slide strong::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #f0d900;
    content: "";
}

.tp4-carousel-dots {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 19px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tp4-carousel-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    background: #d3d5d7;
    cursor: pointer;
}

.tp4-carousel-dots button[aria-selected="true"] {
    background: #f0d900;
}

.tp4-carousel-dots button:focus-visible {
    outline: 2px solid #f8f8f6;
    outline-offset: 2px;
}

.tp4-feature-news {
    min-width: 0;
    min-height: 326px;
    padding: 14px 22px 10px;
    background: var(--tp4-surface);
}

.tp4-feature-news h1 {
    margin: 0;
    padding: 0 0 11px;
    overflow: hidden;
    color: var(--tp4-accent);
    border-bottom: 1px dashed #dbdddf;
    font-size: 27px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-feature-news h1 a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-feature-news-list {
    padding-top: 10px;
}

.tp4-feature-news-list a {
    display: grid;
    align-items: center;
    min-height: 34px;
    color: #3f3f3f;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
}

.tp4-feature-news-list a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-feature-news-list time {
    color: #9b9fa3;
    font-size: 13px;
}

.tp4-feature-news h1 a:hover,
.tp4-feature-news-list a:hover {
    color: var(--tp4-accent);
}

.tp4-hot-leagues {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 70px;
    padding: 0 24px;
    background: var(--tp4-surface);
    box-shadow: var(--tp4-shadow);
    gap: 20px;
}

.tp4-hot-leagues > strong {
    flex: 0 0 auto;
    color: #777c81;
    font-weight: 500;
}

.tp4-hot-leagues > div {
    display: flex;
    min-width: 0;
    align-items: center;
    overflow-x: auto;
    gap: 28px;
    scrollbar-width: none;
}

.tp4-hot-leagues > div::-webkit-scrollbar {
    display: none;
}

.tp4-hot-leagues a {
    flex: 0 0 auto;
    white-space: nowrap;
}

.tp4-hot-leagues a:hover,
.tp4-hot-leagues a:focus-visible {
    color: var(--tp4-accent);
}

.tp4-home-live-board {
    padding: 12px 12px 0;
    overflow: hidden;
}

.tp4-live-board-head {
    display: flex;
    min-height: 53px;
    align-items: stretch;
    box-shadow: inset 0 -1px #e3e5e7;
    gap: 24px;
}

.tp4-live-board-head h2 {
    display: flex;
    flex: 0 0 auto;
    margin: 0;
    align-items: center;
    padding: 0 0 8px;
    font-size: 25px;
    line-height: 1;
}

.tp4-home-live-board .tp4-live-tabs {
    align-self: stretch;
    margin: 0;
    box-shadow: none;
}

.tp4-home-live-board .tp4-live-tabs button {
    min-width: 0;
    padding: 4px 17px 8px;
    color: var(--tp4-text);
}

.tp4-home-live-board .tp4-live-tabs button.active {
    color: #18b990;
    box-shadow: inset 0 -2px #21cfa5;
}

.tp4-home-live-board .tp4-day-group > h3 {
    display: list-item;
    min-height: 47px;
    margin: 0;
    padding: 12px 28px 8px;
    color: #93979c;
    background: transparent;
    font-size: 15px;
    font-weight: 400;
    list-style-position: inside;
}

.tp4-home-live-board .tp4-day-group > h3::marker {
    color: var(--tp4-info);
}

.tp4-home-live-board .tp4-match-grid {
    gap: 0;
    background: transparent;
    box-shadow: inset 0 1px #e5e8eb;
}

.tp4-home-live-board .tp4-home-match-row {
    display: grid;
    min-height: 76px;
    padding: 0 18px;
    align-items: center;
    border-radius: 0;
    background: var(--tp4-surface);
    box-shadow: inset 0 -1px #e5e8eb;
    grid-template-columns: 120px 150px minmax(0, 1fr) 200px minmax(0, 1fr) 248px;
    gap: 0;
}

.tp4-home-live-board .tp4-home-match-row:hover,
.tp4-home-live-board .tp4-home-match-row:focus-visible {
    background: #f8f4f2;
    box-shadow: inset 3px 0 var(--tp4-accent), inset 0 -1px #e5e8eb;
}

.tp4-match-time {
    color: var(--tp4-text);
    font-size: 17px;
    text-align: center;
}

.tp4-match-league {
    min-width: 0;
    overflow: hidden;
    padding: 0 10px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-match-league:hover {
    color: var(--tp4-accent);
}

.tp4-match-team {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.tp4-match-team.is-home {
    justify-content: flex-end;
    text-align: right;
}

.tp4-match-team.is-away {
    justify-content: flex-start;
}

.tp4-match-team > span {
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-match-team img,
.tp4-match-team i {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #edf0f2;
    color: #81868b;
    font-size: 12px;
    font-style: normal;
    object-fit: contain;
}

.tp4-match-score {
    display: grid;
    align-items: center;
    padding: 0 16px;
    grid-template-columns: 36px minmax(64px, 1fr) 36px;
    text-align: center;
}

.tp4-match-score strong {
    display: contents;
}

.tp4-match-score strong span {
    color: #8d9297;
    font-size: 25px;
    font-weight: 400;
}

.tp4-match-score strong span:first-child {
    grid-column: 1;
}

.tp4-match-score strong span:last-child {
    grid-column: 3;
}

.tp4-match-score em {
    overflow: hidden;
    color: #92979c;
    font-size: 13px;
    font-style: normal;
    grid-column: 2;
    grid-row: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-match-action {
    min-width: 124px;
    justify-self: center;
    padding: 8px 18px;
    border-radius: 2px;
    color: #f8f8f6;
    background: #d73535;
    font-size: 15px;
    text-align: center;
}

.tp4-match-action:hover,
.tp4-match-action:focus-visible {
    color: #f8f8f6;
    background: #bd2929;
}

.tp4-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin-bottom: 15px;
    box-shadow: inset 0 -1px #e1e1e1;
}

.tp4-section-head h1,
.tp4-section-head h2 {
    margin: 0;
    padding: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.tp4-section-head small {
    color: #b8b8b8;
    font-size: 11px;
    font-weight: 400;
}

.tp4-section-head > a {
    color: #888888;
    font-size: 13px;
}

.tp4-section-head > a:hover {
    color: var(--tp4-accent-dark);
}

.tp4-green-head {
    box-shadow: inset 0 -1px #d9dfde;
}

.tp4-green-head h1,
.tp4-green-head h2 {
    color: var(--tp4-text);
    box-shadow: inset 0 -3px var(--tp4-accent);
}

.tp4-side-title {
    margin-bottom: 12px;
    box-shadow: inset 0 -1px #dedede;
}

.tp4-side-title h2 {
    display: inline-block;
    margin: 0;
    padding: 0 10px 9px 0;
    box-shadow: inset 0 -2px var(--tp4-accent);
    font-size: 17px;
    font-weight: 600;
}

.tp4-live-tabs {
    display: flex;
    margin: 2px 0 18px;
    gap: 0;
    box-shadow: inset 0 -1px #eeeeee;
}

.tp4-live-tabs button {
    position: relative;
    min-width: 112px;
    padding: 11px 22px 12px;
    border: 0;
    background: transparent;
    color: #777777;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.tp4-live-tabs button.active {
    color: var(--tp4-accent-dark);
    box-shadow: inset 0 -3px var(--tp4-accent);
}

.tp4-live-tabs button:hover {
    color: var(--tp4-accent-dark);
}

.tp4-live-tabs button:focus-visible {
    outline: 2px solid var(--tp4-accent);
    outline-offset: -2px;
}

.tp4-live-tab-panel {
    min-height: 180px;
}

.tp4-history-panel .tp4-match-card {
    background: #f3f3f3;
}

.tp4-history-panel .tp4-match-card-top b {
    color: #777777;
}

.tp4-day-group + .tp4-day-group {
    margin-top: 22px;
}

.tp4-day-group > h2,
.tp4-day-group > h3 {
    display: block;
    margin: 0 0 14px;
    padding: 14px 16px;
    color: var(--tp4-text);
    background: #f7f7f7;
    font-size: 14px;
    font-weight: 600;
}

.tp4-match-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    background: #eff0f1;
}

.tp4-match-card {
    display: grid;
    min-width: 0;
    min-height: 76px;
    padding: 10px 14px;
    border-radius: var(--tp4-radius);
    background: var(--tp4-live-bg);
    cursor: pointer;
    grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr) 190px;
    gap: 16px;
    transition: background-color 160ms ease, box-shadow 160ms ease;
}

.tp4-match-card:hover,
.tp4-match-card:focus-visible {
    outline: none;
    background: #f8f1ee;
    box-shadow: inset 3px 0 var(--tp4-accent);
}

.tp4-match-card-top,
.tp4-match-card p,
.tp4-match-card footer {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
}

.tp4-match-card-top {
    display: grid;
    margin: 0;
    justify-content: start;
    color: #777777;
}

.tp4-match-card-top b {
    color: #e12922;
    font-weight: 500;
}

.tp4-match-card p {
    margin: 0;
    gap: 7px;
}

.tp4-match-card p img {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.tp4-match-card p span {
    overflow: hidden;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-match-card p em {
    color: #a63b15;
    font-style: normal;
    font-weight: 600;
}

.tp4-match-card footer {
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    gap: 10px;
    box-shadow: none;
}

.tp4-match-card footer a:last-child {
    min-width: 90px;
    padding: 7px 12px;
    border-radius: var(--tp4-radius);
    color: #f8f8f8;
    background: var(--tp4-accent);
}

.tp4-load-more {
    display: block;
    width: 190px;
    margin: 20px auto 0;
    padding: 12px 16px;
    border: 0;
    border-radius: var(--tp4-radius);
    background: var(--tp4-live-bg);
    cursor: pointer;
}

.tp4-load-more:hover {
    color: #f8f8f8;
    background: var(--tp4-accent);
}

.tp4-league-pills {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding: 11px 12px;
    gap: 6px 13px;
    border-radius: var(--tp4-radius);
    box-shadow: inset 0 0 0 1px #dddddd;
}

.tp4-league-pills.is-collapsed {
    overflow: hidden;
    max-height: var(--tp4-league-collapsed-height);
}

.tp4-league-pills a {
    padding: 4px 8px;
    border-radius: var(--tp4-radius);
    color: #5f5f5f;
    line-height: 24px;
    white-space: nowrap;
}

.tp4-league-pills a:first-child::before {
    margin-right: 5px;
    color: var(--tp4-accent);
    content: "推荐";
    font-weight: 700;
}

.tp4-league-pills a:hover,
.tp4-league-pills a:focus-visible {
    color: var(--tp4-accent-dark);
    background: #e8f5f2;
}

.tp4-league-pills a.active,
.tp4-league-pills a[aria-current="page"] {
    color: #f8f8f8;
    background: var(--tp4-accent-dark);
    font-weight: 700;
}

.tp4-league-pills a.active::before,
.tp4-league-pills a[aria-current="page"]::before,
.tp4-league-pills a.active em,
.tp4-league-pills a[aria-current="page"] em {
    color: #d8f5e8;
}

.tp4-league-pills a em {
    margin-left: 3px;
    color: #999999;
    font-size: 11px;
    font-style: normal;
}

.tp4-league-pills-toggle {
    display: block;
    margin: 0 0 12px auto;
    padding: 5px 10px;
    border: 0;
    background: #ededed;
    cursor: pointer;
}

.tp4-live-layout,
.tp4-content-grid,
.tp4-live-detail {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, var(--tp4-main-column)) minmax(0, var(--tp4-sidebar-column));
    gap: var(--tp4-column-gap);
}

.tp4-content-main,
.tp4-live-main {
    min-width: 0;
}

.tp4-sidebar {
    display: grid;
    align-content: start;
    min-width: 0;
    gap: 20px;
}

.tp4-side-block {
    min-width: 0;
    padding: 20px;
}

.tp4-link-list {
    display: grid;
    gap: 2px;
}

.tp4-link-list a {
    position: relative;
    display: block;
    padding: 7px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-link-list a:hover {
    color: var(--tp4-accent);
}

.tp4-link-list time {
    margin-right: 8px;
    color: #999999;
    font-size: 12px;
}

.tp4-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tp4-tag-list a,
.tp4-article-tags a {
    padding: 5px 9px;
    border-radius: var(--tp4-radius);
    background: #eef0f2;
    box-shadow: none;
}

.tp4-tag-list a:hover,
.tp4-article-tags a:hover {
    color: #f7f7f7;
    background: var(--tp4-accent);
    box-shadow: none;
}

.tp4-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
}

.tp4-media-card {
    min-width: 0;
}

.tp4-media-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--tp4-radius);
    background: #2e2e2e;
}

.tp4-media-cover img,
.tp4-media-cover > span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.tp4-media-cover > span {
    display: grid;
    place-items: center;
    color: #d8d8d8;
    background: linear-gradient(135deg, #343434, #242424);
}

.tp4-media-cover i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgb(22 22 22 / 62%);
    transform: translate(-50%, -50%);
}

.tp4-media-cover i::after {
    position: absolute;
    top: 12px;
    left: 16px;
    border-width: 9px 0 9px 14px;
    border-style: solid;
    border-color: transparent transparent transparent #f4f4f4;
    content: "";
}

.tp4-media-card:hover .tp4-media-cover img {
    transform: scale(1.035);
}

.tp4-media-title {
    display: -webkit-box;
    min-height: 48px;
    margin-top: 10px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp4-media-card time {
    color: #88909b;
    font-size: 12px;
}

.tp4-media-card-meta,
.tp4-content-card-meta {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 7px 12px;
}

.tp4-media-card-meta {
    margin-top: 8px;
}

.tp4-media-card-meta > time,
.tp4-content-card-meta > time {
    flex: 0 0 auto;
    line-height: 24px;
}

.tp4-content-card-tags {
    display: flex;
    min-width: 0;
    flex: 1 1 150px;
    flex-wrap: wrap;
    gap: 6px;
}

.tp4-content-card-tags a {
    display: inline-flex;
    max-width: 150px;
    min-height: 24px;
    padding: 3px 8px;
    align-items: center;
    overflow: hidden;
    border-radius: 2px;
    color: #687078;
    background: #eef0f2;
    font-size: 12px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-content-card-tags a:hover,
.tp4-content-card-tags a:focus-visible {
    color: #f8f8f6;
    background: var(--tp4-accent);
}

.tp4-topic-grid,
.tp4-sitemap-grid,
.tp4-detail-updates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tp4-topic-block {
    min-width: 0;
}

.tp4-topic-lead,
.tp4-news-lead {
    display: grid;
    min-width: 0;
    margin-bottom: 12px;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 15px;
}

.tp4-topic-lead img,
.tp4-news-lead img {
    width: 150px;
    aspect-ratio: 16 / 10;
    border-radius: var(--tp4-radius);
    object-fit: cover;
}

.tp4-topic-lead span,
.tp4-news-lead strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp4-topic-lead time,
.tp4-news-lead time {
    display: block;
    color: #88909b;
    font-size: 12px;
}

.tp4-news-lead {
    grid-template-columns: 230px minmax(0, 1fr);
}

.tp4-news-lead img {
    width: 230px;
}

.tp4-news-lead span {
    display: grid;
    align-content: start;
    gap: 8px;
}

.tp4-news-lead em {
    display: -webkit-box;
    overflow: hidden;
    color: #777777;
    font-style: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tp4-news-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 26px;
}

.tp4-news-columns > div {
    min-width: 0;
}

.tp4-news-columns a {
    display: block;
    padding: 7px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-news-columns a::before {
    content: none;
}

.tp4-tag-article-list {
    display: grid;
    gap: 18px;
}

.tp4-tag-article-list article {
    display: grid;
    padding-bottom: 18px;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
    box-shadow: inset 0 -1px #eeeeee;
}

.tp4-tag-article-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #2d2d2d;
}

.tp4-tag-article-cover img,
.tp4-tag-article-cover span {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp4-tag-article-cover span {
    display: grid;
    place-items: center;
    color: #d9d9d9;
}

.tp4-tag-article-list h2 {
    margin: 0 0 8px;
    font-size: 19px;
}

.tp4-tag-article-list p {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: #777777;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp4-tag-article-list time {
    color: #999999;
    font-size: 12px;
}

.tp4-pagination {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 7px;
}

.tp4-pagination a,
.tp4-pagination span,
.tp4-pagination strong {
    min-width: 36px;
    padding: 7px 9px;
    border-radius: var(--tp4-radius);
    background: #eeeeee;
    text-align: center;
}

.tp4-pagination strong {
    color: #f7f7f7;
    background: var(--tp4-accent);
}

.tp4-match-meta {
    margin: -4px 0 15px;
    padding-bottom: 14px;
    color: #777777;
    box-shadow: inset 0 -1px #eeeeee;
    text-align: center;
}

.tp4-scoreboard {
    display: grid;
    align-items: center;
    min-height: 160px;
    grid-template-areas: "home score away";
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    border-radius: var(--tp4-radius);
    background: #f4f8fc;
    box-shadow: inset 0 0 0 1px #e0e9f2;
}

.tp4-score-team.is-home {
    grid-area: home;
}

.tp4-score-center {
    grid-area: score;
}

.tp4-score-team.is-away {
    grid-area: away;
}

.tp4-scoreboard > section {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tp4-scoreboard > section img,
.tp4-scoreboard > section > span {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: #eeeeee;
    object-fit: contain;
}

.tp4-scoreboard h2 {
    overflow: hidden;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-scoreboard > div {
    display: grid;
    place-items: center;
    gap: 5px;
}

.tp4-scoreboard > div strong {
    font-family: Consolas, Menlo, monospace;
    font-size: 38px;
    font-weight: 400;
}

.tp4-scoreboard > div em {
    padding: 3px 12px;
    background: #dedede;
    font-size: 12px;
    font-style: normal;
}

.tp4-live-sources {
    margin-top: 12px;
}

.tp4-live-sources > a {
    display: inline-block;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: var(--tp4-radius);
    color: #f9f9f9;
    background: var(--tp4-accent);
    text-align: center;
}

.tp4-live-sources > a:hover {
    background: var(--tp4-accent-dark);
}

.tp4-detail-updates {
    margin-top: 28px;
}

.tp4-live-updates {
    display: block;
}

.tp4-live-updates .tp4-news-columns a {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.tp4-live-updates .tp4-news-columns a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-live-updates .tp4-news-columns a time {
    color: #91969c;
    font-size: 12px;
}

.tp4-detail-updates > section {
    min-width: 0;
}

.tp4-article-layout {
    align-items: start;
}

.tp4-article > header {
    padding: 22px 20px 24px;
    text-align: left;
}

.tp4-article h1 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.45;
}

.tp4-article-meta {
    display: flex;
    justify-content: flex-start;
    color: #888888;
    gap: 45px;
}

.tp4-article.is-video-detail {
    overflow: hidden;
    padding: 0;
}

.tp4-article.is-video-detail > header {
    padding: 26px 30px 24px;
    text-align: left;
}

.tp4-article.is-video-detail h1 {
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.4;
}

.tp4-video-detail-meta {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    color: var(--tp4-accent-dark);
    font-size: 13px;
    font-weight: 600;
    gap: 18px;
}

.tp4-video-detail-meta span + span {
    position: relative;
    color: #777777;
    font-weight: 400;
}

.tp4-video-detail-meta span + span::before {
    position: absolute;
    top: 0;
    left: -10px;
    color: #b3b3b3;
    content: "/";
}

.tp4-article.is-video-detail .tp4-article-meta {
    justify-content: flex-start;
    gap: 24px;
}

.tp4-video-summary {
    max-width: 680px;
    margin: 14px 0 0;
    color: #777777;
    line-height: 1.7;
}

.tp4-article.is-video-detail .tp4-article-body {
    min-height: 0;
    padding: 0 0 24px;
}

.tp4-article.is-video-detail .tp4-article-tags,
.tp4-article.is-video-detail .tp4-prev-next {
    padding-right: 30px;
    padding-left: 30px;
}

.tp4-article.is-video-detail .tp4-detail-updates {
    padding: 0 30px 28px;
}

.tp4-article-body {
    min-height: 340px;
    padding: 20px 20px 30px;
    color: #555555;
    font-size: 17px;
    line-height: 2;
}

.tp4-article-body img {
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    cursor: zoom-in;
}

.tp4-article-body p {
    margin: 0 0 20px;
}

.tp4-article-body video,
.news-video-player {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 820px;
    margin: 20px auto;
    border-radius: var(--tp4-radius);
    background: #111317;
    box-shadow: 0 14px 34px rgb(17 19 23 / 20%);
}

.news-video-player video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(68vh, 620px);
    aspect-ratio: 16 / 9;
    background: #111317;
    object-fit: contain;
    outline: none;
}

.tp4-article.is-video-detail .news-video-player {
    max-width: none;
    margin: 0 0 24px;
    border-radius: 0;
    box-shadow: none;
}

.news-video-player.is-vertical video {
    width: auto;
    max-width: 100%;
    height: min(72vh, 680px);
    aspect-ratio: auto;
}

.news-video-player.is-vertical,
.news-video-player.is-square {
    max-width: 540px;
}

.tp4-article.is-video-detail .news-video-player.is-vertical,
.tp4-article.is-video-detail .news-video-player.is-square {
    max-width: none;
}

.news-video-player-meta {
    display: flex;
    align-self: stretch;
    min-height: 50px;
    margin: 0;
    padding: 11px 18px;
    align-items: center;
    justify-content: space-between;
    color: #aeb1b7;
    background: #202228;
    box-shadow: inset 0 1px rgb(248 248 248 / 8%);
    font-size: 13px;
    line-height: 1.5;
    gap: 18px;
    transition: box-shadow 160ms ease;
}

.news-video-player-meta strong {
    min-width: 0;
    overflow: hidden;
    color: #f1f1f1;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-video-player-meta span {
    flex: 0 0 auto;
    color: #ff6a45;
    font-weight: 600;
    white-space: nowrap;
}

.news-video-player.is-playing .news-video-player-meta {
    box-shadow: inset 4px 0 var(--tp4-accent), inset 0 1px rgb(248 248 248 / 8%);
}

.news-video-player.has-error .news-video-player-meta {
    box-shadow: inset 4px 0 #b42318, inset 0 1px rgb(248 248 248 / 8%);
}

.tp4-article-tags {
    display: flex;
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 10px;
    box-shadow: inset 0 1px #ededed;
}

.tp4-prev-next {
    display: grid;
    padding: 18px 20px;
    gap: 8px;
    box-shadow: inset 0 1px #ededed;
}

.tp4-image-lightbox {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: grid;
    padding: 50px;
    place-items: center;
    background: rgb(18 18 18 / 92%);
}

.tp4-image-lightbox img {
    max-width: min(1200px, 90vw);
    max-height: 86vh;
}

.tp4-image-lightbox button {
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 8px 13px;
    border: 0;
    color: #f5f5f5;
    background: #333333;
    cursor: pointer;
}

.tp4-standings-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 8px;
}

.tp4-standings-tabs a {
    padding: 7px 11px;
    border-radius: var(--tp4-radius);
    background: #eeeeee;
}

.tp4-standings-tabs a.active {
    color: #f7f7f7;
    background: var(--tp4-info);
}

.tp4-standing-round + .tp4-standing-round {
    margin-top: 24px;
}

.tp4-table-wrap {
    overflow-x: auto;
}

.tp4-standings-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-family: Consolas, "Microsoft Yahei", monospace;
    text-align: center;
}

.tp4-standings-table th {
    padding: 12px 10px;
    color: #f7f8fa;
    background: var(--tp4-info);
    font-weight: 600;
}

.tp4-standings-table td {
    padding: 11px 10px;
}

.tp4-standings-table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

.tp4-team-cell {
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.tp4-team-cell img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tp4-compact-match-list {
    display: grid;
    gap: 4px;
}

.tp4-compact-match-list a {
    display: grid;
    padding: 9px 0;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 12px;
    box-shadow: inset 0 -1px #eeeeee;
}

.tp4-sitemap-intro p {
    margin: 0;
    color: #777777;
}

.tp4-sitemap-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 20px;
}

.tp4-sitemap-links a {
    display: flex;
    min-width: 0;
    padding: 8px 0;
    justify-content: space-between;
}

.tp4-sitemap-links span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp4-sitemap-links time {
    color: #999999;
    font-size: 12px;
}

.tp4-empty {
    margin: 0;
    padding: 30px 16px;
    color: #888888;
    text-align: center;
}

.tp4-empty h1,
.tp4-empty h2 {
    margin: 0 0 8px;
    color: #444444;
}

.tp4-footer {
    margin-top: 20px;
    padding: 28px 0 32px;
    color: #a8acb0;
    background: #282b2d;
    box-shadow: none;
}

.tp4-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 12px;
    gap: 10px 20px;
}

.tp4-footer nav a:hover {
    color: var(--tp4-accent-dark);
}

.tp4-footer p {
    margin: 0;
    text-align: center;
}

.tp4-back-top {
    position: fixed;
    z-index: 20;
    right: 28px;
    bottom: 28px;
    padding: 10px 14px;
    border: 0;
    border-radius: var(--tp4-radius);
    color: #f7f7f7;
    background: var(--tp4-accent);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.tp4-back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .tp4-nav a {
        padding-right: 13px;
        padding-left: 13px;
        font-size: 15px;
    }

    .tp4-ticker-track {
        grid-auto-columns: calc((100% - 3px) / 4);
    }
}

@media (max-width: 900px) {
    .tp4-brand-row {
        position: relative;
        min-height: 72px;
    }

    .tp4-nav-bar .tp4-header-row {
        min-height: 0;
    }

    .tp4-brand {
        min-width: 0;
        font-size: 34px;
    }

    .tp4-nav-toggle {
        display: block;
    }

    .tp4-nav {
        position: absolute;
        z-index: 10;
        top: 0;
        right: 0;
        left: 0;
        display: none;
        padding: 8px;
        border-radius: var(--tp4-radius);
        background: #fafaf9;
        box-shadow: 0 12px 28px rgb(15 15 15 / 30%);
    }

    .tp4-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp4-nav a {
        padding: 12px 14px;
        text-align: center;
    }

    .tp4-nav a::after {
        display: none;
    }

    .tp4-ticker-track {
        grid-auto-columns: calc((100% - 2px) / 3);
    }

    .tp4-match-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp4-live-layout,
    .tp4-content-grid,
    .tp4-live-detail {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .tp4-article-layout .tp4-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .tp4-container {
        width: min(100% - 20px, var(--tp4-container));
    }

    .tp4-brand {
        font-size: 30px;
    }

    .tp4-brand small {
        display: none;
    }

    .tp4-breadcrumb {
        min-height: 46px;
        line-height: 46px;
    }

    .tp4-panel {
        padding: 14px;
    }

    .tp4-match-ticker {
        padding: 10px 0;
    }

    .tp4-ticker-track {
        grid-auto-columns: max(220px, calc((100% - 1px) / 2));
    }

    .tp4-ticker-item {
        min-height: 108px;
    }

    .tp4-ticker-control {
        width: 32px;
        height: 46px;
        font-size: 28px;
    }

    .tp4-ticker-control.is-prev {
        left: 4px;
    }

    .tp4-ticker-control.is-next {
        right: 4px;
    }

    .tp4-home-feature {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .tp4-feature-media {
        height: 220px;
    }

    .tp4-carousel-slide,
    .tp4-feature-media img,
    .tp4-feature-placeholder {
        min-height: 220px;
    }

    .tp4-carousel-slide strong {
        padding: 15px 114px 14px 14px;
        font-size: 15px;
    }

    .tp4-carousel-dots {
        right: 12px;
        bottom: 16px;
        gap: 5px;
    }

    .tp4-carousel-dots button {
        width: 11px;
        height: 11px;
    }

    .tp4-feature-news {
        min-height: 0;
        padding: 12px 14px 14px;
    }

    .tp4-feature-news h1 {
        font-size: 20px;
    }

    .tp4-feature-news-list a {
        min-height: 33px;
        gap: 10px;
    }

    .tp4-feature-news-list time {
        font-size: 12px;
    }

    .tp4-hot-leagues {
        min-height: 56px;
        padding: 0 14px;
        gap: 12px;
    }

    .tp4-hot-leagues > div {
        gap: 18px;
    }

    .tp4-home-live-board {
        padding: 10px 10px 0;
    }

    .tp4-live-board-head {
        min-height: 0;
        flex-wrap: wrap;
        gap: 0;
    }

    .tp4-live-board-head h2 {
        min-height: 42px;
        padding: 0;
        font-size: 22px;
    }

    .tp4-home-live-board .tp4-live-tabs {
        width: 100%;
        overflow-x: auto;
        box-shadow: inset 0 -1px #eceef0;
        scrollbar-width: none;
    }

    .tp4-home-live-board .tp4-live-tabs::-webkit-scrollbar {
        display: none;
    }

    .tp4-home-live-board .tp4-live-tabs button {
        flex: 0 0 auto;
        min-width: auto;
        padding: 10px 14px 11px;
    }

    .tp4-home-live-board .tp4-day-group > h3 {
        min-height: 48px;
        padding: 13px 10px 10px;
    }

    .tp4-home-live-board .tp4-home-match-row {
        min-height: 134px;
        padding: 10px 4px;
        align-items: center;
        grid-template-areas:
            "time league score"
            "home home action"
            "away away action";
        grid-template-columns: 64px minmax(0, 1fr) 88px;
        gap: 7px 8px;
    }

    .tp4-home-match-row .tp4-match-time {
        grid-area: time;
        font-size: 14px;
        text-align: left;
    }

    .tp4-home-match-row .tp4-match-league {
        padding: 0;
        grid-area: league;
    }

    .tp4-home-match-row .tp4-match-team.is-home {
        flex-direction: row-reverse;
        justify-content: flex-end;
        grid-area: home;
        text-align: left;
    }

    .tp4-home-match-row .tp4-match-team.is-away {
        grid-area: away;
    }

    .tp4-home-match-row .tp4-match-team > span {
        font-size: 15px;
    }

    .tp4-home-match-row .tp4-match-team img,
    .tp4-home-match-row .tp4-match-team i {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .tp4-home-match-row .tp4-match-score {
        width: 88px;
        padding: 0;
        grid-area: score;
        grid-template-columns: 22px minmax(42px, 1fr) 22px;
    }

    .tp4-home-match-row .tp4-match-score strong span {
        font-size: 17px;
    }

    .tp4-home-match-row .tp4-match-score em {
        font-size: 10px;
    }

    .tp4-home-match-row .tp4-match-action {
        min-width: 78px;
        padding: 8px 6px;
        align-self: center;
        grid-area: action;
    }

    .tp4-match-grid,
    .tp4-video-grid,
    .tp4-topic-grid,
    .tp4-sitemap-grid,
    .tp4-detail-updates,
    .tp4-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp4-match-card {
        min-height: 132px;
        padding: 12px;
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 7px 12px;
    }

    .tp4-match-card-top {
        align-content: center;
        grid-row: 1 / span 2;
    }

    .tp4-match-card p {
        grid-column: 2;
    }

    .tp4-match-card footer {
        padding-top: 8px;
        justify-content: space-between;
        grid-column: 1 / -1;
        box-shadow: inset 0 1px #ececee;
    }

    .tp4-live-tabs button {
        flex: 1 1 50%;
        min-width: 0;
        padding-right: 12px;
        padding-left: 12px;
    }

    .tp4-news-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp4-topic-lead,
    .tp4-news-lead {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .tp4-topic-lead img,
    .tp4-news-lead img {
        width: 120px;
    }

    .tp4-tag-article-list article {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp4-scoreboard {
        min-height: 154px;
        padding: 16px 8px;
        grid-template-areas: "home score away";
        grid-template-columns: minmax(0, 1fr) minmax(76px, 90px) minmax(0, 1fr);
    }

    .tp4-scoreboard > section {
        display: grid;
        align-content: center;
        justify-items: center;
        grid-template-rows: 48px minmax(40px, auto);
        gap: 8px;
        text-align: center;
    }

    .tp4-scoreboard > section img,
    .tp4-scoreboard > section > span {
        width: 48px;
        height: 48px;
    }

    .tp4-scoreboard h2 {
        display: -webkit-box;
        width: 100%;
        min-height: 40px;
        font-size: 16px;
        line-height: 20px;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .tp4-score-center {
        align-self: center;
        min-width: 0;
    }

    .tp4-score-center strong {
        font-size: 28px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .tp4-score-center em {
        max-width: 82px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tp4-article > header {
        padding: 12px 4px 18px;
    }

    .tp4-article.is-video-detail > header {
        padding: 20px 16px 18px;
    }

    .tp4-article h1 {
        font-size: 24px;
    }

    .tp4-article-meta {
        display: grid;
        gap: 3px;
    }

    .tp4-article.is-video-detail .tp4-article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 16px;
    }

    .tp4-video-detail-meta {
        flex-wrap: wrap;
        gap: 4px 18px;
    }

    .tp4-article-body {
        padding: 15px 4px 22px;
        font-size: 16px;
    }

    .tp4-article.is-video-detail .tp4-article-body {
        padding-bottom: 18px;
    }

    .tp4-article.is-video-detail .news-video-player {
        margin-bottom: 18px;
    }

    .news-video-player video {
        max-height: 56vh;
    }

    .news-video-player.is-vertical video {
        height: min(62vh, 520px);
    }

    .news-video-player-meta {
        min-height: 46px;
        padding: 9px 12px;
        gap: 10px;
    }

    .news-video-player-meta strong {
        font-size: 13px;
    }

    .tp4-article.is-video-detail .tp4-article-tags,
    .tp4-article.is-video-detail .tp4-prev-next {
        padding-right: 16px;
        padding-left: 16px;
    }

    .tp4-article.is-video-detail .tp4-detail-updates {
        padding: 0 16px 22px;
    }

    .tp4-image-lightbox {
        padding: 20px;
    }

    .tp4-footer-description {
        margin-bottom: 22px;
    }

    .tp4-back-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #c93a12;
    --live-cta-end: #982a0c;
    --live-cta-glow-rgb: 233 71 25;
    --live-cta-text: #fff;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 132px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgb(var(--live-cta-glow-rgb) / 42%);
    background: linear-gradient(135deg, var(--live-cta-start), var(--live-cta-end));
    color: var(--live-cta-text);
    font-size: 17px;
    font-weight: 800;
    font-family: inherit;
    line-height: 1.2;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 10px 24px rgb(var(--live-cta-glow-rgb) / 30%);
    animation: live-cta-breathe 1.8s ease-in-out infinite;
    will-change: scale, box-shadow;
}

[data-live-loading-link]:hover,
[data-live-loading-link]:focus-visible {
    color: var(--live-cta-text);
    filter: saturate(1.12) brightness(1.05);
}

[data-live-loading-link]:focus-visible {
    outline: 3px solid rgb(var(--live-cta-glow-rgb) / 55%);
    outline-offset: 3px;
}

@keyframes live-cta-breathe {
    0%, 100% {
        scale: 1;
        box-shadow: 0 10px 24px rgb(var(--live-cta-glow-rgb) / 30%), 0 0 0 0 rgb(var(--live-cta-glow-rgb) / 34%);
    }

    50% {
        scale: 1.045;
        box-shadow: 0 14px 32px rgb(var(--live-cta-glow-rgb) / 42%), 0 0 0 10px rgb(var(--live-cta-glow-rgb) / 0%);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-live-loading-link] {
        animation: none;
        scale: 1;
    }
}

/* Mobile category-card navigation CTA. */


[data-content-tag-more].tp4-content-tag-more {
    display: none;
}

.tp4-content-tag-more:focus-visible {
    outline: 2px solid var(--tp4-accent);
    outline-offset: -2px;
}

@media (max-width: 767px) {
    [data-content-tag-more].tp4-content-tag-more {
        float: none;
        clear: both;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        margin: 12px 0 0;
        padding: 0 16px;
        box-sizing: border-box;
        border: 1px solid #efd9d1;
        border-radius: 4px;
        background: #fff3ee;
        color: var(--tp4-accent);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }

    [data-content-tag-more].tp4-content-tag-more:hover,
    [data-content-tag-more].tp4-content-tag-more:focus-visible,
    [data-content-tag-more].tp4-content-tag-more:active {
        border-color: var(--tp4-accent);
        background: var(--tp4-accent);
        color: #fefefe;
    }
}
