:root {
    --tp9-accent: #ef3f2f;
    --tp9-accent-dark: #d92d20;
    --tp9-accent-soft: #fff1ef;
    --tp9-ink: #252b36;
    --tp9-ink-soft: #3e4654;
    --tp9-muted: #6d7480;
    --tp9-page: #f2f3f6;
    --tp9-surface: #fbfbfc;
    --tp9-surface-soft: #f7f8fa;
    --tp9-line: #e4e7ec;
    --tp9-radius: 8px;
    --tp9-container: 1200px;
    --tp9-shadow: 0 12px 34px rgba(54, 61, 75, .08);
    --tp9-font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

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

html {
    color-scheme: light;
    background: var(--tp9-page);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--tp9-ink);
    background: var(--tp9-page);
    font-family: var(--tp9-font);
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--tp9-font);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

a:hover {
    color: var(--tp9-accent);
}

button {
    color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid rgba(238, 77, 45, .35);
    outline-offset: 3px;
}

.tp9-container,
.tp9-home-shell,
.tp9-page-title,
.tp9-two-col,
.tp9-standings-shell,
.tp9-page-shell {
    width: min(var(--tp9-container), calc(100% - 32px));
    margin-inline: auto;
}

.tp9-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 70px;
    background: rgba(251, 251, 252, .96);
    box-shadow: 0 7px 22px rgba(48, 55, 68, .12);
    backdrop-filter: blur(12px);
}

.tp9-nav {
    display: flex;
    align-items: center;
    width: min(var(--tp9-container), calc(100% - 32px));
    height: 70px;
    margin-inline: auto;
    gap: 28px;
}

.tp9-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 180px;
    max-width: 260px;
    gap: 10px;
    color: var(--tp9-accent);
}

.tp9-brand:hover {
    color: var(--tp9-accent-dark);
}

.tp9-logo {
    width: auto;
    max-width: 220px;
    height: 42px;
    object-fit: contain;
}

.tp9-logo-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: var(--tp9-accent);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.tp9-logo-text {
    overflow: hidden;
    color: var(--tp9-accent);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-nav-items {
    display: flex;
    min-width: 0;
    align-self: stretch;
    align-items: center;
    gap: 2px;
}

.tp9-nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 70px;
    padding: 0 17px;
    color: #4c5360;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.tp9-nav-item::after {
    position: absolute;
    right: 17px;
    bottom: 0;
    left: 17px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--tp9-accent);
    content: "";
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .18s ease, transform .18s ease;
}

.tp9-nav-item:hover,
.tp9-nav-item.nav-selected {
    color: var(--tp9-accent);
}

.tp9-nav-item:hover::after,
.tp9-nav-item.nav-selected::after {
    opacity: 1;
    transform: scaleX(1);
}

.tp9-header-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 38px;
    margin-left: auto;
    padding: 0 14px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-surface-soft);
    font-weight: 600;
    white-space: nowrap;
}

.tp9-header-link:hover {
    color: var(--tp9-accent);
    background: var(--tp9-accent-soft);
}

.tp9-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface-soft);
    cursor: pointer;
}

.tp9-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--tp9-ink);
    transition: transform .18s ease, opacity .18s ease;
}

.tp9-nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.tp9-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tp9-nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.tp9-bread {
    display: flex;
    align-items: center;
    min-height: 52px;
    gap: 8px;
    color: var(--tp9-muted);
    font-size: 13px;
}

.tp9-bread b {
    color: var(--tp9-ink-soft);
    font-weight: 650;
}

.tp9-bread em {
    color: #a8adb6;
    font-style: normal;
}

.tp9-page-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    min-height: 102px;
    margin-bottom: 18px;
    padding: 20px 24px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-page-title h1 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -.03em;
}

.tp9-page-title p {
    max-width: 620px;
    color: var(--tp9-muted);
    text-align: right;
}

.tp9-hero {
    margin-top: 28px;
    padding: 20px 22px 22px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-home-page .tp9-hero {
    display: none;
}

.tp9-hero-head,
.tp9-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tp9-hero-head {
    margin-bottom: 16px;
}

.tp9-hero-head > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.tp9-hero-head span {
    color: var(--tp9-accent);
    font-weight: 750;
}

.tp9-hero-head h1 {
    font-size: 22px;
    line-height: 1.25;
}

.tp9-rail-controls {
    display: flex;
    gap: 8px;
}

.tp9-rail-controls button {
    min-width: 72px;
    min-height: 36px;
    border: 0;
    border-radius: var(--tp9-radius);
    color: var(--tp9-ink-soft);
    background: var(--tp9-page);
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
}

.tp9-rail-controls button:hover {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-match-rail {
    display: grid;
    grid-auto-columns: 230px;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 4px;
    scrollbar-color: rgba(238, 77, 45, .35) transparent;
    scrollbar-width: thin;
    scroll-snap-type: inline mandatory;
}

.tp9-rail-card {
    display: flex;
    min-height: 184px;
    padding: 14px;
    flex-direction: column;
    border-radius: var(--tp9-radius);
    background: var(--tp9-page);
    scroll-snap-align: start;
}

.tp9-rail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tp9-muted);
    font-size: 12px;
}

.tp9-rail-meta a {
    color: var(--tp9-ink-soft);
    font-weight: 700;
}

.tp9-rail-teams {
    display: grid;
    min-height: 94px;
    flex: 1;
    grid-template-columns: 1fr 34px 1fr;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.tp9-rail-teams span {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 7px;
}

.tp9-rail-teams img,
.tp9-rail-teams b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: contain;
}

.tp9-rail-teams b {
    display: grid;
    place-items: center;
    color: var(--tp9-accent);
    background: var(--tp9-accent-soft);
}

.tp9-rail-teams em {
    display: block;
    overflow: hidden;
    max-width: 78px;
    font-size: 12px;
    font-style: normal;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-rail-teams strong {
    color: #8e949e;
    font-size: 13px;
}

.tp9-rail-action {
    display: inline-flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(238, 77, 45, .28);
    border-radius: var(--tp9-radius);
    color: var(--tp9-accent-dark);
    background: var(--tp9-surface);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.tp9-rail-action:hover {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-feature-grid {
    display: grid;
    margin-top: 18px;
    grid-template-columns: minmax(0, 2fr) 390px;
    gap: 15px;
}

.tp9-feature-media,
.tp9-feature-news,
.tp9-live-board,
.tp9-side-block,
.tp9-main-col,
.tp9-standings-content,
.tp9-sitemap-group {
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-feature-media,
.tp9-feature-news {
    padding: 20px;
}

.tp9-section-head {
    position: relative;
    min-height: 42px;
    margin-bottom: 14px;
    padding-left: 14px;
}

.tp9-section-head::before,
.tp9-gradient-title::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 22px;
    border-radius: 2px;
    background: var(--tp9-accent);
    content: "";
    transform: translateY(-50%);
}

.tp9-section-head h2,
.tp9-gradient-title .tit-text {
    font-size: 20px;
    font-weight: 780;
    letter-spacing: -.02em;
}

.tp9-section-head > a,
.tp9-gradient-title .tp9-more,
.tp9-more {
    color: var(--tp9-accent);
    font-size: 13px;
    font-weight: 700;
}

.tp9-home-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 132px);
    gap: 10px;
}

.tp9-feature-card {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: #343b47;
}

.tp9-feature-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.tp9-feature-cover,
.tp9-feature-cover img {
    display: block;
    width: 100%;
    height: 100%;
}

.tp9-feature-cover img {
    object-fit: cover;
    transition: transform .25s ease;
}

.tp9-feature-card::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(27, 32, 40, .88));
    content: "";
    pointer-events: none;
}

.tp9-feature-card strong {
    position: absolute;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 2;
    display: -webkit-box;
    overflow: hidden;
    color: #fff8f4;
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp9-feature-card:first-child strong {
    font-size: 18px;
}

.tp9-feature-card:hover {
    color: #fff8f4;
}

.tp9-feature-card:hover img {
    transform: scale(1.035);
}

.tp9-video-play-icon,
.tp9-play-icon {
    position: absolute;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(238, 77, 45, .92);
    box-shadow: 0 6px 18px rgba(48, 55, 68, .18);
}

.tp9-video-play-icon {
    top: 12px;
    left: 12px;
}

.tp9-video-play-icon::after,
.tp9-play-icon::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff8f4;
    content: "";
    transform: translate(-50%, -50%);
}

.tp9-feature-news-list,
.tp9-side-list,
.tp9-live-side-list,
.tp9-ranked-list {
    display: grid;
}

.tp9-feature-news-list a,
.tp9-side-list > a,
.tp9-live-side-list > a,
.tp9-ranked-list > a {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 42px;
    padding: 10px 4px 10px 16px;
    border-bottom: 1px solid var(--tp9-line);
    color: var(--tp9-ink-soft);
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-feature-news-list a:last-child,
.tp9-side-list > a:last-child,
.tp9-live-side-list > a:last-child,
.tp9-ranked-list > a:last-child {
    border-bottom: 0;
}

.tp9-feature-news-list a::before,
.tp9-side-list > a::before {
    position: absolute;
    top: 19px;
    left: 2px;
    width: 5px;
    height: 5px;
    border: 1px solid #adb2bb;
    border-radius: 1px;
    content: "";
    transform: rotate(45deg);
}

.tp9-feature-news-list a:hover,
.tp9-side-list > a:hover,
.tp9-live-side-list > a:hover,
.tp9-ranked-list > a:hover {
    color: var(--tp9-accent);
}

.tp9-home-layout {
    display: grid;
    width: 100%;
    margin-top: 18px;
    grid-template-columns: minmax(0, 955px) 280px;
    align-items: start;
    gap: 15px;
}

.tp9-home-main,
.tp9-home-side {
    display: grid;
    min-width: 0;
    gap: 15px;
}

.tp9-live-board {
    min-width: 0;
    padding: 20px;
}

.tp9-live-tabs {
    flex-wrap: wrap;
}

.tp9-live-tabs > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tp9-live-tabs button,
.tp9-hot-tabs button {
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-page);
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.tp9-live-tabs button.active,
.tp9-live-tabs button:hover,
.tp9-hot-tabs button.active,
.tp9-hot-tabs button:hover {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-date {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-top: 8px;
    padding: 0 14px;
    gap: 10px;
    color: var(--tp9-ink-soft);
    background: var(--tp9-page);
}

.tp9-date strong,
.tp9-date time,
.start-min,
.tp9-standings-table td,
.tp9-standings-table th,
.points-num {
    font-variant-numeric: tabular-nums;
}

.tp9-date em {
    margin-left: auto;
    color: var(--tp9-muted);
    font-style: normal;
    font-size: 12px;
}

.tp9-match-list {
    overflow: hidden;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
}

.tp9-match-row {
    display: grid;
    min-height: 66px;
    padding: 0 14px;
    grid-template-columns: 72px 130px 72px minmax(0, 1fr) 96px;
    align-items: center;
    border-bottom: 1px solid var(--tp9-line);
    background: var(--tp9-surface);
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.tp9-match-row:nth-child(even) {
    background: var(--tp9-surface-soft);
}

.tp9-match-row:last-child {
    border-bottom: 0;
}

.tp9-match-row:hover,
.tp9-match-row:focus-visible {
    background: var(--tp9-accent-soft);
}

.tp9-match-row:active {
    transform: translateY(1px);
}

.start-min {
    color: var(--tp9-ink);
    font-size: 15px;
    font-weight: 760;
}

.round {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.sport-icon-link {
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    place-items: center;
}

.sport-icon {
    display: block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sport-icon.sport-zuqiu {
    background-image: url("../img/football.webp");
}

.sport-icon.sport-lanqiu {
    background-image: url("../img/basketball.webp");
}

.match-league-name {
    display: block;
    overflow: hidden;
    min-width: 0;
    color: var(--tp9-ink-soft);
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-status {
    color: var(--tp9-muted);
    font-size: 12px;
}

.status-live .tp9-status,
.status-playing .tp9-status {
    color: var(--tp9-accent);
    font-weight: 750;
}

.match-info {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.team-a,
.team-b {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

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

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

.team-a img,
.team-b img {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.teama-name,
.teamb-name {
    display: block;
    overflow: hidden;
    min-width: 0;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vs-score-wrap {
    min-width: 0;
    text-align: center;
}

.feature {
    overflow: hidden;
    color: var(--tp9-ink-soft);
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tv-list {
    margin: 0;
    text-align: right;
}

.tv-list a,
.tp9-live-signal,
.tp9-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(238, 77, 45, .35);
    border-radius: var(--tp9-radius);
    color: var(--tp9-accent-dark);
    background: var(--tp9-surface);
    font-weight: 720;
    white-space: nowrap;
}

.tv-list a:hover,
.tp9-live-signal:hover,
.tp9-load-more:hover {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tv-list.is-placeholder {
    color: var(--tp9-muted);
    font-size: 12px;
}

.tp9-load-more {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    cursor: pointer;
}

.tp9-load-more:disabled {
    cursor: wait;
    opacity: .65;
}

.tp9-side-block {
    overflow: hidden;
    padding: 18px;
}

.tp9-side-block + .tp9-side-block,
.tp9-live-side-block + .tp9-live-side-block,
.tp9-other-news + .tp9-other-news {
    margin-top: 15px;
}

.tp9-tag-cloud,
.tp9-live-tag-list,
.tp9-list-tags,
.tp9-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tp9-tag-cloud a,
.tp9-live-tag-list a,
.tp9-list-tags a,
.tp9-mini-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-ink-soft);
    background: var(--tp9-page);
    font-size: 12px;
    font-weight: 650;
}

.tp9-tag-cloud a:hover,
.tp9-tag-cloud a.is-recommended,
.tp9-live-tag-list a:hover,
.tp9-list-tags a:hover,
.tp9-mini-tags a:hover {
    color: var(--tp9-accent-dark);
    background: var(--tp9-accent-soft);
}

.tp9-hot-tabs {
    display: grid;
    margin: -18px -18px 14px;
    padding: 12px 14px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--tp9-surface-soft);
}

.tp9-ranked-list {
    counter-reset: tp9-rank;
}

.tp9-ranked-list > a {
    min-height: 50px;
    padding-left: 34px;
    white-space: normal;
}

.tp9-ranked-list > a::before {
    position: absolute;
    top: 12px;
    left: 0;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-page);
    content: counter(tp9-rank);
    counter-increment: tp9-rank;
    font-size: 12px;
    font-weight: 800;
}

.tp9-ranked-list > a:nth-child(-n + 3)::before {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-two-col {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: minmax(0, 930px) 300px;
    align-items: start;
    gap: 20px;
}

.tp9-news-layout,
.tp9-news-detail-layout {
    grid-template-columns: minmax(0, 930px) 300px;
}

.tp9-main-col {
    min-width: 0;
    padding: 22px;
}

.tp9-main-col > section + section,
.tp9-standings-round + .tp9-standings-round {
    margin-top: 24px;
}

.tp9-side-col {
    min-width: 0;
}

.tp9-gradient-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin-bottom: 14px;
    padding-left: 14px;
    border-bottom: 1px solid var(--tp9-line);
}

.tp9-gradient-title em {
    color: var(--tp9-muted);
    font-style: normal;
    font-size: 12px;
}

.tp9-league-pills {
    display: flex;
    overflow: hidden;
    max-height: none;
    margin-bottom: 15px;
    padding: 14px;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-league-pills.is-collapsed {
    max-height: 112px;
}

.tp9-league-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-ink-soft);
    background: var(--tp9-page);
    font-size: 12px;
    font-weight: 650;
}

.tp9-league-pills a.active,
.tp9-league-pills a:hover {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-league-pills em {
    margin-left: 4px;
    font-style: normal;
    opacity: .75;
}

.tp9-league-pills-toggle {
    display: block;
    min-height: 36px;
    margin: -6px auto 15px;
    padding: 0 15px;
    border: 0;
    border-radius: var(--tp9-radius);
    color: var(--tp9-accent-dark);
    background: var(--tp9-accent-soft);
    cursor: pointer;
}

.tp9-video-grid,
.tp9-cover-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 14px;
}

.tp9-cover-card {
    min-width: 0;
}

.tp9-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--tp9-radius);
    color: var(--tp9-surface);
    background: #3b424f;
}

.tp9-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.tp9-cover > span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.tp9-cover:hover img {
    transform: scale(1.035);
}

.tp9-play-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tp9-cover-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 45px;
    margin-top: 9px;
    font-weight: 700;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp9-video-card-meta,
.tp9-meta {
    display: flex;
    align-items: center;
    color: var(--tp9-muted);
    font-size: 12px;
    gap: 10px;
}

.tp9-video-card-meta {
    justify-content: space-between;
    margin-top: 5px;
}

.tp9-video-tags {
    margin-top: 8px;
}

.tp9-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tp9-grid-cards > section {
    position: relative;
    min-width: 0;
    padding: 16px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface-soft);
}

.tp9-grid-cards h3 {
    margin-bottom: 9px;
    color: var(--tp9-ink);
    font-size: 17px;
}

.tp9-grid-cards li,
.tp9-row-link {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 7px 0 7px 13px;
    color: var(--tp9-ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-grid-cards li::before,
.tp9-row-link::before {
    position: absolute;
    top: 15px;
    left: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #a9afb8;
    content: "";
}

.tp9-tagged-list-row {
    overflow: visible;
    white-space: normal;
}

.tp9-tagged-list-title {
    display: block;
    overflow: hidden;
    min-width: 0;
    color: var(--tp9-ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-row-tags {
    margin-top: 6px;
    gap: 6px;
}

.tp9-row-tags a {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
}

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

.tp9-news-title-link {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 39px;
    padding: 8px 54px 8px 15px;
    border-bottom: 1px solid var(--tp9-line);
    color: var(--tp9-ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-news-title-link::before {
    position: absolute;
    top: 17px;
    left: 1px;
    width: 5px;
    height: 5px;
    border: 1px solid #a5abb4;
    border-radius: 1px;
    content: "";
    transform: rotate(45deg);
}

.tp9-card-list {
    display: grid;
    gap: 14px;
}

.tp9-news-card {
    display: grid;
    min-width: 0;
    padding: 14px;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface-soft);
}

.tp9-news-card-cover {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--tp9-radius);
    background: #3c4350;
}

.tp9-news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp9-news-card-cover > span {
    display: grid;
    height: 100%;
    place-items: center;
    color: #fff8f4;
}

.tp9-news-card-body {
    min-width: 0;
}

.tp9-news-card h2 {
    margin: 8px 0;
    font-size: 19px;
    line-height: 1.4;
}

.tp9-news-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--tp9-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp9-pagination {
    display: flex;
    margin-top: 22px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tp9-pagination a,
.tp9-pagination span {
    display: inline-grid;
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
    place-items: center;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-page);
}

.tp9-pagination a:hover,
.tp9-pagination .is-current {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-article {
    max-width: 100%;
}

.tp9-article > header {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--tp9-line);
}

.tp9-article h1 {
    max-width: 860px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.35;
    letter-spacing: -.035em;
}

.tp9-article .tp9-meta {
    margin-top: 15px;
}

.tp9-article .tp9-meta span {
    color: var(--tp9-accent-dark);
    font-weight: 700;
}

.tp9-article-summary {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-ink-soft);
    background: var(--tp9-page);
}

.tp9-mini-tags {
    margin-top: 13px;
}

.tp9-article-content {
    max-width: 760px;
    margin: 24px auto 0;
    color: #323946;
    font-size: 17px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.tp9-article-content p,
.tp9-article-content figure,
.tp9-article-content blockquote,
.tp9-article-content .news-video-player {
    margin: 0 0 20px;
}

.tp9-article-content img,
.tp9-article-content video,
.tp9-article-content iframe {
    max-width: 100%;
    border-radius: var(--tp9-radius);
}

.tp9-article-content img {
    height: auto;
    margin-inline: auto;
    cursor: zoom-in;
}

.tp9-article-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.news-video-player {
    display: grid;
    overflow: hidden;
    min-height: 260px;
    place-items: center;
    border-radius: var(--tp9-radius);
    background: #252b36;
}

.news-video-player video {
    display: block;
    width: 100%;
    max-height: 74vh;
}

.news-video-player.is-portrait-video video {
    width: auto;
    max-width: 100%;
}

.tp9-article-end {
    margin: 30px 0;
    color: var(--tp9-muted);
    text-align: center;
}

.tp9-article-prev-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tp9-article-prev-next a,
.tp9-article-prev-next span {
    display: block;
    overflow: hidden;
    padding: 12px 14px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-page);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-detail-updates {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tp9-detail-update-block {
    min-width: 0;
    padding: 16px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface-soft);
}

.tp9-image-lightbox {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    padding: 5vw;
    place-items: center;
    background: rgba(28, 33, 42, .92);
}

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

.tp9-image-lightbox button {
    position: absolute;
    top: 22px;
    right: 22px;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: var(--tp9-accent);
    cursor: pointer;
}

.tp9-lightbox-open {
    overflow: hidden;
}

.tp9-live-detail {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 20px;
}

.tp9-live-left,
.tp9-live-right {
    min-width: 0;
}

.tp9-live-left {
    padding: 22px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-play-match-info,
.tp9-scoreboard {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 230px;
    padding: 28px 40px 56px;
    grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
    align-items: center;
    border-radius: var(--tp9-radius);
    background:
        radial-gradient(circle at 16% 18%, rgba(239, 63, 47, .12), transparent 34%),
        linear-gradient(145deg, #fbfbfa, #f1f2f3);
}

.tp9-scoreboard::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 42px;
    padding: 10px 18px;
    color: #fff8f4;
    background: var(--tp9-accent);
    content: "直播信息以页面实际信号为准";
    font-size: 12px;
    text-align: center;
}

.tp9-team-info {
    min-width: 0;
    color: var(--tp9-ink);
    text-align: center;
}

.tp9-team-info:hover {
    color: var(--tp9-accent);
}

.tp9-team-info dl {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.tp9-team-info dt,
.tp9-team-info dt img,
.tp9-team-info dt span {
    width: 74px;
    height: 74px;
}

.tp9-team-info dt img {
    object-fit: contain;
}

.tp9-team-info dt span {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--tp9-accent);
    background: var(--tp9-accent-soft);
    font-size: 24px;
    font-weight: 800;
}

.tp9-team-info dd {
    overflow: hidden;
    max-width: 210px;
    font-size: 16px;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-match-info-detail {
    text-align: center;
}

.tp9-match-info-detail .time {
    color: var(--tp9-muted);
    font-size: 12px;
}

.tp9-match-info-detail .score-vs {
    margin: 6px 0;
    color: var(--tp9-ink);
    font-size: 46px;
    font-weight: 840;
    line-height: 1.2;
}

.tp9-match-info-detail .status {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    min-height: 30px;
    padding: 0 12px;
    align-items: center;
    border-radius: var(--tp9-radius);
    color: var(--tp9-accent-dark);
    background: var(--tp9-accent-soft);
    font-weight: 700;
}

.tp9-tab-toggle {
    margin-top: 18px;
}

.tp9-tab-toggle p {
    min-height: 48px;
    padding: 0 16px;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: var(--tp9-accent);
    font-size: 18px;
    font-weight: 760;
    line-height: 48px;
}

.tp9-tab-content {
    padding: 18px 0;
}

.tp9-live-signal-box {
    display: flex;
    min-height: 80px;
    align-items: center;
}

.tp9-live-signal {
    min-height: 46px;
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-live-right {
    display: grid;
    gap: 15px;
}

.tp9-live-side-block {
    padding: 18px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-recent-match-tit,
.tp9-tag-related-head {
    min-height: 42px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tp9-line);
    font-size: 17px;
    font-weight: 760;
}

.tp9-relate-news li {
    position: relative;
    padding-left: 14px;
}

.tp9-relate-news li::before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #a8aeb8;
    content: "";
}

.tp9-relate-news a,
.tp9-relate-news p {
    display: block;
    overflow: hidden;
    padding: 6px 0;
    color: var(--tp9-ink-soft);
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-other-news {
    margin-top: 18px;
}

.tp9-standings-heading {
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.tp9-standings-heading p {
    margin-top: 4px;
    text-align: left;
}

.tp9-heading-mark {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: var(--tp9-accent);
    font-size: 20px;
    font-weight: 850;
}

.tp9-standings-shell {
    margin-bottom: 30px;
}

.tp9-standings-tabs {
    display: flex;
    margin-bottom: 14px;
    padding: 14px;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-standings-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-ink-soft);
    background: var(--tp9-page);
    font-weight: 650;
}

.tp9-standings-tabs a.active,
.tp9-standings-tabs a:hover {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.tp9-standings-content {
    padding: 22px;
}

.tp9-standings-table-wrap {
    overflow-x: auto;
    border-radius: var(--tp9-radius);
}

.tp9-standings-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    text-align: center;
}

.tp9-standings-table th {
    height: 48px;
    padding: 0 12px;
    color: #fff8f4;
    background: var(--tp9-ink-soft);
    font-size: 13px;
    font-weight: 720;
}

.tp9-standings-table td {
    height: 64px;
    padding: 0 12px;
    border-bottom: 1px solid var(--tp9-line);
    color: var(--tp9-ink-soft);
}

.tp9-standings-table tbody tr:nth-child(even) td {
    background: var(--tp9-surface-soft);
}

.tp9-standings-table tbody tr:last-child td {
    border-bottom: 0;
}

.tp9-standings-table .team-col {
    min-width: 190px;
    text-align: left;
}

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

.tp9-standing-team img {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.rank-num {
    display: inline-grid;
    min-width: 30px;
    height: 30px;
    place-items: center;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-page);
    font-weight: 800;
}

.tp9-standings-table tbody tr:nth-child(-n + 3) .rank-num {
    color: #fff8f4;
    background: var(--tp9-accent);
}

.points-num {
    color: var(--tp9-accent-dark);
    font-size: 16px;
}

.tp9-table-group-title {
    margin: 16px 0 10px;
    font-size: 16px;
}

.tp9-sitemap-shell {
    margin-top: 24px;
    margin-bottom: 30px;
}

.tp9-sitemap-hero {
    display: flex;
    align-items: center;
    min-height: 118px;
    padding: 24px;
    gap: 18px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-surface);
    box-shadow: var(--tp9-shadow);
}

.tp9-sitemap-hero h1 {
    font-size: 28px;
}

.tp9-sitemap-hero p {
    color: var(--tp9-muted);
}

.tp9-sitemap-hero a {
    display: inline-flex;
    min-height: 40px;
    margin-left: auto;
    padding: 0 15px;
    align-items: center;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: var(--tp9-accent);
    font-weight: 700;
    white-space: nowrap;
}

.tp9-sitemap-grid {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tp9-sitemap-group {
    min-width: 0;
    padding: 18px;
}

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

.tp9-sitemap-links a {
    display: flex;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    align-items: center;
    gap: 8px;
    border-radius: var(--tp9-radius);
    background: var(--tp9-page);
}

.tp9-sitemap-links span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-sitemap-links time {
    margin-left: auto;
    color: var(--tp9-muted);
    font-size: 11px;
    white-space: nowrap;
}

.tp9-empty {
    padding: 24px;
    border-radius: var(--tp9-radius);
    color: var(--tp9-muted);
    background: var(--tp9-page);
    text-align: center;
}

.tp9-empty h1,
.tp9-empty h2 {
    margin-bottom: 8px;
    color: var(--tp9-ink);
    font-size: 20px;
}

.tp9-back-top {
    position: fixed;
    z-index: 24;
    right: 24px;
    bottom: 24px;
    min-width: 46px;
    min-height: 46px;
    padding: 0 12px;
    border: 0;
    border-radius: var(--tp9-radius);
    color: #fff8f4;
    background: var(--tp9-accent);
    box-shadow: 0 10px 25px rgba(54, 61, 75, .16);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

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

.tp9-footer {
    margin-top: 34px;
    color: #d6d9df;
    background: #303744;
}

.tp9-footer-inner {
    width: min(var(--tp9-container), calc(100% - 32px));
    margin-inline: auto;
    padding: 30px 0;
}

.tp9-footer-top {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.tp9-footer-top strong {
    color: #fff8f4;
    font-size: 21px;
}

.tp9-footer-top p {
    max-width: 760px;
    color: #bfc4cd;
}

.tp9-footer-tags {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.tp9-footer-tags a {
    color: #dfe2e7;
}

.tp9-footer-tags a:hover {
    color: #fff8f4;
}

.tp9-footer-meta {
    margin-top: 20px;
    color: #9fa5af;
    font-size: 12px;
}

@media (max-width: 1280px) {
    .tp9-nav {
        gap: 14px;
    }

    .tp9-brand {
        min-width: 160px;
    }

    .tp9-nav-item {
        padding-inline: 12px;
        font-size: 15px;
    }

    .tp9-nav-item::after {
        right: 12px;
        left: 12px;
    }
}

@media (max-width: 1100px) {
    .tp9-header-link {
        display: none;
    }

    .tp9-feature-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .tp9-home-layout,
    .tp9-two-col,
    .tp9-live-detail {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .tp9-match-row {
        grid-template-columns: 64px 108px 62px minmax(0, 1fr) 88px;
        padding-inline: 10px;
    }
}

@media (max-width: 900px) {
    .tp9-header {
        height: 64px;
    }

    .tp9-nav {
        position: relative;
        height: 64px;
    }

    .tp9-brand {
        min-width: 0;
        max-width: calc(100% - 62px);
    }

    .tp9-logo {
        height: 38px;
    }

    .tp9-logo-text {
        font-size: 22px;
    }

    .tp9-nav-toggle {
        display: block;
        margin-left: auto;
    }

    .tp9-nav-items {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        z-index: 32;
        display: none;
        height: auto;
        max-height: calc(100dvh - 80px);
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        overflow-y: auto;
        border-radius: var(--tp9-radius);
        background: var(--tp9-surface);
        box-shadow: var(--tp9-shadow);
    }

    .tp9-nav-items.open {
        display: flex;
    }

    .tp9-nav-item {
        height: 44px;
        justify-content: flex-start;
        border-radius: var(--tp9-radius);
    }

    .tp9-nav-item::after {
        display: none;
    }

    .tp9-nav-item.nav-selected {
        background: var(--tp9-accent-soft);
    }

    .tp9-feature-grid,
    .tp9-home-layout,
    .tp9-two-col,
    .tp9-live-detail {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-feature-news {
        order: 2;
    }

    .tp9-home-side,
    .tp9-side-col,
    .tp9-live-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .tp9-side-block + .tp9-side-block,
    .tp9-live-side-block + .tp9-live-side-block {
        margin-top: 0;
    }

    .tp9-video-grid,
    .tp9-cover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .tp9-page-title {
        align-items: start;
        flex-direction: column;
        justify-content: center;
    }

    .tp9-page-title p {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .tp9-container,
    .tp9-home-shell,
    .tp9-page-title,
    .tp9-two-col,
    .tp9-standings-shell,
    .tp9-page-shell,
    .tp9-nav,
    .tp9-footer-inner {
        width: min(100% - 24px, var(--tp9-container));
    }

    .tp9-bread {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tp9-hero,
    .tp9-feature-media,
    .tp9-feature-news,
    .tp9-live-board,
    .tp9-side-block,
    .tp9-main-col,
    .tp9-live-left,
    .tp9-standings-content,
    .tp9-sitemap-group {
        padding: 16px;
    }

    .tp9-hero-head > div:first-child {
        display: block;
    }

    .tp9-hero-head h1 {
        margin-top: 2px;
        font-size: 19px;
    }

    .tp9-rail-controls button {
        min-width: 54px;
        padding-inline: 8px;
        font-size: 11px;
    }

    .tp9-home-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 190px repeat(2, 126px);
    }

    .tp9-feature-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .tp9-match-row {
        position: relative;
        min-height: 100px;
        padding: 12px 0;
        grid-template-columns: 56px 90px minmax(0, 1fr);
        grid-template-areas:
            "time league status"
            "teams teams action";
        row-gap: 10px;
    }

    .tp9-match-row .start-min {
        grid-area: time;
    }

    .tp9-match-row .round {
        grid-area: league;
    }

    .tp9-match-row .tp9-status {
        grid-area: status;
        text-align: right;
    }

    .tp9-match-row .match-info {
        grid-area: teams;
    }

    .tp9-match-row .tv-list {
        grid-area: action;
    }

    .tp9-match-row .tv-list a {
        min-height: 34px;
        padding-inline: 10px;
    }

    .tp9-match-row .match-info {
        grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    }

    .tp9-match-row .team-a img,
    .tp9-match-row .team-b img {
        flex-basis: 26px;
        width: 26px;
        height: 26px;
    }

    .tp9-grid-cards,
    .tp9-news-title-grid,
    .tp9-detail-updates,
    .tp9-sitemap-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-news-card {
        grid-template-columns: 148px minmax(0, 1fr);
        gap: 12px;
    }

    .tp9-news-card h2 {
        font-size: 16px;
    }

    .tp9-article h1 {
        font-size: 27px;
    }

    .tp9-article-content {
        font-size: 16px;
        line-height: 1.85;
    }

    .tp9-article-prev-next {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-play-match-info,
    .tp9-scoreboard {
        min-height: 220px;
        padding: 24px 12px 54px;
        grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
    }

    .tp9-team-info dt,
    .tp9-team-info dt img,
    .tp9-team-info dt span {
        width: 56px;
        height: 56px;
    }

    .tp9-team-info dd {
        max-width: 100px;
        font-size: 13px;
    }

    .tp9-match-info-detail .score-vs {
        font-size: 32px;
    }

    .tp9-home-side,
    .tp9-side-col,
    .tp9-live-right {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .tp9-sitemap-hero {
        align-items: start;
        flex-direction: column;
    }

    .tp9-sitemap-hero a {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .tp9-logo-mark {
        display: none;
    }

    .tp9-match-rail {
        grid-auto-columns: 82%;
    }

    .tp9-home-video-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: repeat(5, 180px);
    }

    .tp9-feature-card:first-child {
        grid-column: auto;
    }

    .tp9-video-grid,
    .tp9-cover-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .tp9-news-card-cover {
        max-height: 220px;
    }

    .tp9-standings-heading {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .tp9-heading-mark {
        width: 46px;
        height: 46px;
    }

    .tp9-back-top {
        right: 12px;
        bottom: 12px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* TP9 reference treatment: calibrated from the 1920×1080 page captures. */
.tp9-utility {
    height: 34px;
    color: #aeb0b5;
    background: #202124;
    font-size: 12px;
}

.tp9-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
}

.tp9-utility a {
    color: #d5d6d8;
}

.tp9-utility a:hover {
    color: #ff7b68;
}

.tp9-header {
    position: relative;
    top: auto;
    height: 64px;
    background: rgba(251, 251, 250, .98);
    box-shadow: 0 4px 18px rgba(43, 45, 51, .09);
    backdrop-filter: none;
}

.tp9-nav {
    width: min(var(--tp9-container), calc(100% - 32px));
    height: 64px;
    gap: 20px;
}

.tp9-brand {
    min-width: 190px;
}

.tp9-logo-mark {
    color: #fff8f5;
    background: linear-gradient(145deg, #f3563d, #df2c20);
    font-size: 21px;
}

.tp9-logo-text {
    font-size: 29px;
    letter-spacing: -.055em;
}

.tp9-nav-item {
    height: 64px;
    padding-inline: 14px;
    color: #36383e;
    font-size: 15px;
}

.tp9-nav-item::after {
    right: 14px;
    left: 14px;
}

.tp9-header-link {
    min-height: 34px;
    background: #f2f2f1;
}

.tp9-ticker {
    padding: 26px 0 10px;
    background: var(--tp9-page);
}

.tp9-ticker-window {
    overflow: hidden;
}

.tp9-ticker-track {
    display: grid;
    grid-auto-columns: minmax(190px, 1fr);
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scrollbar-width: thin;
}

.tp9-ticker-card {
    display: grid;
    min-height: 78px;
    padding: 12px 14px;
    border-top: 2px solid #5c6068;
    color: #484b52;
    background: var(--tp9-surface);
    box-shadow: 0 4px 14px rgba(43, 45, 51, .045);
    grid-template-columns: minmax(0, 1fr);
}

.tp9-ticker-card span {
    color: var(--tp9-muted);
    font-size: 12px;
}

.tp9-ticker-meta {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

.tp9-ticker-meta .tp9-ticker-sport-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.tp9-ticker-copy {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-ticker-empty {
    display: grid;
    min-height: 78px;
    padding: 12px 14px;
    align-items: center;
    border-top: 2px solid var(--tp9-accent);
    color: var(--tp9-muted);
    background: var(--tp9-surface);
    box-shadow: 0 4px 14px rgba(43, 45, 51, .045);
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px;
}

.tp9-ticker-empty strong {
    color: var(--tp9-ink-soft);
    font-size: 15px;
}

.tp9-ticker-empty em {
    color: var(--tp9-accent);
    font-size: 12px;
    font-style: normal;
}

.tp9-ticker-card strong {
    overflow: hidden;
    align-self: end;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-ticker-card em {
    align-self: end;
    color: var(--tp9-accent);
    font-size: 12px;
    font-style: normal;
}

.tp9-ticker-card.is-home,
.tp9-ticker-card:hover {
    border-top-color: var(--tp9-accent);
}

.tp9-home-shell,
.tp9-two-col,
.tp9-standings-shell,
.tp9-page-shell {
    margin-top: 22px;
}

.tp9-hero {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.tp9-hero-head {
    margin-bottom: 12px;
}

.tp9-hero-head > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.tp9-hero-head span {
    color: var(--tp9-accent);
    font-weight: 700;
}

.tp9-hero-head h1 {
    font-size: 20px;
    letter-spacing: 0;
}

.tp9-match-rail {
    grid-auto-columns: 222px;
    gap: 12px;
}

.tp9-rail-card {
    min-height: 136px;
    border-top: 2px solid #4d5159;
    box-shadow: 0 5px 16px rgba(43, 45, 51, .055);
}

.tp9-feature-grid,
.tp9-home-layout,
.tp9-two-col,
.tp9-live-con {
    display: grid;
    grid-template-columns: minmax(0, 870px) 300px;
    gap: 30px;
}

.tp9-feature-grid {
    align-items: start;
}

.tp9-feature-media,
.tp9-feature-news,
.tp9-live-board,
.tp9-side-block,
.tp9-article,
.tp9-standings-content {
    border-radius: var(--tp9-radius);
}

.tp9-home-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 275px;
    grid-template-rows: none;
    gap: 16px;
}

.tp9-feature-card.tp9-feature-lead {
    height: 290px;
    min-height: 290px;
    grid-column: auto;
    grid-row: auto;
}

.tp9-feature-lead .tp9-feature-cover {
    min-height: 0;
}

.tp9-feature-lead strong {
    font-size: 16px;
}

.tp9-feature-compact-list {
    display: grid;
    align-content: start;
    gap: 9px;
}

.tp9-feature-compact-list > a {
    display: grid;
    min-width: 0;
    align-items: center;
    gap: 10px;
    grid-template-columns: 92px minmax(0, 1fr);
}

.tp9-feature-thumb {
    display: block;
    overflow: hidden;
    height: 52px;
    border-radius: calc(var(--tp9-radius) - 2px);
    background: #e6e7e9;
}

.tp9-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp9-feature-thumb i {
    display: grid;
    height: 100%;
    place-items: center;
    color: var(--tp9-muted);
    font-size: 12px;
    font-style: normal;
}

.tp9-feature-compact-list strong {
    display: -webkit-box;
    overflow: hidden;
    color: #3d4047;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp9-section-head,
.tp9-gradient-title,
.tp9-recent-match-tit {
    border-bottom-color: #2e3035;
}

.tp9-section-head h2,
.tp9-gradient-title .tit-text,
.tp9-recent-match-tit {
    position: relative;
}

.tp9-section-head h2::before,
.tp9-gradient-title .tit-text::before,
.tp9-recent-match-tit::before {
    display: inline-block;
    width: 3px;
    height: 18px;
    margin-right: 8px;
    vertical-align: -3px;
    background: var(--tp9-accent);
    content: "";
}

.tp9-section-head h2::before,
.tp9-gradient-title .tit-text::before {
    display: none;
}

.tp9-match-row {
    min-height: 56px;
    grid-template-columns: 64px 116px 68px minmax(0, 1fr) 88px;
}

.tp9-match-row:nth-child(even) {
    background: #f7f7f6;
}

.tp9-match-row:hover,
.tp9-match-row:focus-visible {
    background: var(--tp9-accent-soft);
}

.tp9-match-row .match-info {
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
}

.tp9-match-row .tv-list a,
.tp9-live-signal {
    border-color: #ef6a5d;
    color: #d92d20;
}

.tp9-live-signal {
    color: #fff8f5;
    background: var(--tp9-accent-dark);
}

.tp9-match-row .tv-list a:hover,
.tp9-live-signal:hover {
    color: #fff8f5;
    background: var(--tp9-accent);
}

.tp9-live-signal:hover {
    background: #b92319;
}

.tp9-news-list {
    display: grid;
}

.tp9-news-row {
    display: grid;
    min-height: 62px;
    align-items: center;
    gap: 24px;
    padding: 0 10px;
    border-bottom: 1px solid var(--tp9-line);
    grid-template-columns: minmax(0, 1fr) auto;
}

.tp9-news-row:last-child {
    border-bottom: 0;
}

.tp9-news-row-main {
    display: grid;
    min-width: 0;
    padding: 9px 0;
    gap: 5px;
}

.tp9-news-row-title {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp9-news-row time {
    color: var(--tp9-muted);
    font-variant-numeric: tabular-nums;
}

.tp9-article {
    padding: 34px 40px 38px;
}

.tp9-article-content {
    max-width: 760px;
    margin-inline: auto;
    color: #3f4249;
    font-size: 17px;
    line-height: 1.95;
}

.tp9-standings-tabs {
    position: sticky;
    top: 8px;
    z-index: 4;
}

.tp9-standings-table th,
.tp9-standings-table td {
    height: 56px;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
    .tp9-feature-grid,
    .tp9-home-layout,
    .tp9-two-col,
    .tp9-live-con {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-home-video-grid {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
    }

    .tp9-header-link {
        display: none;
    }
}

@media (max-width: 720px) {
    .tp9-utility {
        display: none;
    }

    .tp9-header,
    .tp9-nav {
        height: 60px;
    }

    .tp9-ticker {
        padding-top: 16px;
    }

    .tp9-ticker-track {
        grid-auto-columns: 190px;
    }

    .tp9-home-video-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-feature-lead {
        height: 238px;
        min-height: 238px;
    }

    .tp9-feature-compact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp9-match-row {
        grid-template-columns: 54px minmax(0, 1fr) 72px;
    }

    .tp9-news-row {
        min-height: 52px;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr);
    }

    .tp9-news-row time {
        font-size: 12px;
    }

    .tp9-article {
        padding: 24px 18px 30px;
    }
}

@media (max-width: 520px) {
    .tp9-feature-compact-list {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #d92d20;
    --live-cta-end: #a92218;
    --live-cta-glow-rgb: 239 63 47;
    --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;
    }
}

/* Live detail match-card hierarchy */
.tp9-match-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.tp9-match-card-head {
    min-width: 0;
    padding: 13px 18px;
    background: var(--tp9-accent-soft);
}

.tp9-match-card-head h1 {
    margin: 0;
    color: var(--tp9-ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tp9-match-card .tp9-play-match-info {
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@media (max-width: 720px) {
    .tp9-match-card-head {
        padding: 11px 13px;
    }

    .tp9-match-card-head h1 {
        font-size: 18px;
    }
}

/* Mobile category-card navigation CTA. */


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

@media (max-width: 767px) {
    [data-content-tag-more].tp9-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 var(--tp9-line);
        border-radius: var(--tp9-radius);
        background: var(--tp9-accent-soft);
        color: var(--tp9-accent);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }

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