:root {
    --tp2-accent: #d7071f;
    --tp2-accent-dark: #b8061a;
    --tp2-accent-soft: #fff0f2;
    --tp2-blue: #3067d6;
    --tp2-plum: #302d3e;
    --tp2-ink: #1c1c22;
    --tp2-ink-soft: #3f4149;
    --tp2-muted: #6d7079;
    --tp2-page: #f4f5f7;
    --tp2-surface: #fefefe;
    --tp2-surface-soft: #f7f7f8;
    --tp2-line: #e8e9ed;
    --tp2-radius: 4px;
    --tp2-container: 1200px;
    --tp2-shadow: 0 12px 34px rgba(54, 61, 75, .08);
    --tp2-font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

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

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

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

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

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

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

a:hover {
    color: var(--tp2-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;
}

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

.tp2-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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(--tp2-radius);
    color: var(--tp2-accent-dark);
    background: var(--tp2-surface);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-video-play-icon,
.tp2-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);
}

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

.tp2-video-play-icon::after,
.tp2-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%);
}

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

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

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

.tp2-feature-news-list a::before,
.tp2-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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(--tp2-line);
    background: var(--tp2-surface);
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

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

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

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

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

.start-min {
    color: var(--tp2-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 {
    border-radius: 50%;
    background: #eef4ff;
}

.sport-icon.sport-lanqiu {
    border-radius: 50%;
    background: #fff1f2;
}

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

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

.status-live .tp2-status,
.status-playing .tp2-status {
    color: var(--tp2-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(--tp2-ink-soft);
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.tv-list a,
.tp2-live-signal,
.tp2-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(--tp2-radius);
    color: var(--tp2-accent-dark);
    background: var(--tp2-surface);
    font-weight: 720;
    white-space: nowrap;
}

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

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

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

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

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

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

.tp2-tag-cloud,
.tp2-live-tag-list,
.tp2-list-tags,
.tp2-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top:10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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(--tp2-line);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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(--tp2-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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-play-match-info,
.tp2-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(--tp2-radius);
    background:
        radial-gradient(circle at 16% 18%, rgba(239, 63, 47, .12), transparent 34%),
        linear-gradient(145deg, #fbfbfa, #f1f2f3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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(--tp2-radius);
    color: var(--tp2-muted);
    background: var(--tp2-page);
    font-weight: 800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp2-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(--tp2-radius);
    color: #fff8f4;
    background: var(--tp2-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .tp2-logo {
        height: 38px;
    }

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

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

    .tp2-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(--tp2-radius);
        background: var(--tp2-surface);
        box-shadow: var(--tp2-shadow);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* nbazhibo8-inspired TP2 visual system, refined for a centered 1920x1080 viewport. */
body {
    background: var(--tp2-page);
    font-size: 14px;
}

.tp2-container,
.tp2-home-shell,
.tp2-page-title,
.tp2-two-col,
.tp2-standings-shell,
.tp2-page-shell {
    width: min(1200px, calc(100% - 32px));
}

.tp2-utility {
    height: 52px;
    color: #b9b7c1;
    background: var(--tp2-plum);
}

.tp2-utility-inner {
    height: 52px;
}

.tp2-brand {
    display: inline-flex;
    min-width: 0;
    max-width: 420px;
    align-items: baseline;
    gap: 14px;
}

.tp2-brand small {
    color: #85818f;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.tp2-logo {
    max-width: 250px;
    height: 38px;
}

.tp2-logo-text {
    color: #ef3c1d;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.045em;
}

.tp2-utility-links {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.tp2-utility-links a,
.tp2-utility a {
    color: #aaa7b2;
}

.tp2-utility-links a:hover,
.tp2-utility a:hover {
    color: #f2f1f5;
}

.tp2-header {
    position: relative;
    z-index: 20;
    height: 58px;
    background: #17171c;
    box-shadow: none;
}

.tp2-nav {
    height: 58px;
    justify-content: center;
    gap: 0;
}

.tp2-nav-items {
    margin-inline: auto;
    justify-content: center;
    gap: 2px;
}

.tp2-nav-item {
    isolation: isolate;
    height: 58px;
    padding-inline: 25px;
    color: #f4f3f6;
    font-size: 17px;
    font-weight: 750;
}

.tp2-nav-item::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--tp2-accent);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    content: "";
    opacity: 0;
    transition: opacity .16s ease;
}

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

.tp2-nav-item:hover,
.tp2-nav-item.nav-selected {
    color: #fffafa;
}

.tp2-nav-item:hover::before,
.tp2-nav-item.nav-selected::before {
    opacity: 1;
}

.tp2-header-link {
    min-height: 34px;
    color: #b8b7bd;
    background: #24242a;
}

.tp2-header-link:hover {
    color: #fffafa;
    background: #313138;
}

.tp2-mobile-nav-label {
    display: none;
}

.tp2-ticker {
    padding: 24px 0 10px;
    background: #fefefe;
}

.tp2-ticker-shell {
    display: grid;
    align-items: stretch;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
}

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

.tp2-ticker-track {
    display: grid;
    grid-auto-columns: 210px;
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.tp2-ticker-track::-webkit-scrollbar {
    display: none;
}

.tp2-ticker-card {
    display: grid;
    min-height: 126px;
    padding: 13px 16px 12px;
    scroll-snap-align: start;
    border: 1px solid #ececef;
    border-top: 5px solid var(--tp2-blue);
    border-radius: 0;
    color: #303138;
    background: #fefefe;
    box-shadow: 0 7px 18px rgba(40, 39, 48, .035);
    grid-template-rows: auto auto auto 1fr;
}

.tp2-ticker-card:hover,
.tp2-ticker-card.is-channel:hover {
    border-top-color: var(--tp2-accent);
    color: var(--tp2-ink);
    transform: translateY(-1px);
}

.tp2-ticker-card span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tp2-muted);
    font-size: 12px;
}

.tp2-ticker-card span b {
    overflow: hidden;
    max-width: 105px;
    color: #303138;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp2-ticker-card strong {
    align-self: center;
    overflow: hidden;
    color: #383940;
    font-size: 14px;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp2-ticker-card em {
    align-self: end;
    justify-self: end;
    color: #ef983a;
    font-size: 12px;
    font-style: normal;
}

.tp2-ticker-arrow {
    position: relative;
    min-width: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #fefefe;
    background: #d6d7da;
    cursor: pointer;
}

.tp2-ticker-arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
    content: "";
}

.tp2-ticker-arrow.is-prev::before {
    transform: translate(-30%, -50%) rotate(-45deg);
}

.tp2-ticker-arrow.is-next::before {
    transform: translate(-70%, -50%) rotate(135deg);
}

.tp2-ticker-arrow:hover {
    background: var(--tp2-blue);
}

.tp2-bread {
    min-height: 58px;
    padding-block: 17px;
    color: #686a72;
    background: transparent;
}

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

.tp2-hero {
    display: none;
}

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

img.is-image-missing {
    display: none !important;
}

.tp2-feature-lead.has-missing-image,
.tp2-video-card.has-missing-image,
.tp2-news-row.has-missing-image {
    background: linear-gradient(135deg, var(--tp2-plum), #4c4960);
}

.tp2-feature-grid {
    margin-top: 0;
}

.tp2-feature-media,
.tp2-feature-news,
.tp2-live-board,
.tp2-side-block,
.tp2-main-col,
.tp2-article,
.tp2-standings-content,
.tp2-live-left,
.tp2-live-side-block {
    border-radius: var(--tp2-radius);
    background: var(--tp2-surface);
    box-shadow: 0 8px 24px rgba(48, 45, 62, .045);
}

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

.tp2-section-head,
.tp2-gradient-title,
.tp2-recent-match-tit,
.tp2-tag-related-head,
.tp2-block-title {
    min-height: 40px;
    margin-bottom: 14px;
    padding: 0;
    border: 0;
}

.tp2-section-head::before,
.tp2-gradient-title::before,
.tp2-recent-match-tit::before,
.tp2-block-title::before {
    display: none;
}

.tp2-section-head h2,
.tp2-gradient-title .tit-text,
.tp2-recent-match-tit,
.tp2-tag-related-head > *,
.tp2-block-title h2 {
    position: relative;
    display: inline-flex;
    min-height: 40px;
    margin: 0;
    padding: 0 15px;
    align-items: center;
    color: #f7f6f9;
    background: #19191e;
    font-size: 17px;
    font-weight: 720;
    line-height: 1;
}

.tp2-section-head h2::after,
.tp2-gradient-title .tit-text::after,
.tp2-recent-match-tit::after,
.tp2-block-title h2::after {
    position: absolute;
    top: 0;
    right: -18px;
    width: 24px;
    height: 20px;
    background: repeating-linear-gradient(135deg, var(--tp2-accent) 0 4px, transparent 4px 8px);
    clip-path: polygon(0 0, 100% 0, 35% 100%, 0 100%);
    content: "";
}

.tp2-section-head > a,
.tp2-more {
    margin-left: auto;
    color: var(--tp2-muted);
}

.tp2-section-head > a:hover,
.tp2-more:hover {
    color: var(--tp2-accent);
}

.tp2-home-video-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
}

.tp2-feature-card,
.tp2-feature-thumb,
.tp2-cover {
    border-radius: var(--tp2-radius);
}

.tp2-feature-card.tp2-feature-lead {
    height: 312px;
    min-height: 312px;
}

.tp2-feature-card::after {
    background: linear-gradient(to bottom, transparent 42%, rgba(20, 20, 24, .88));
}

.tp2-video-play-icon,
.tp2-play-icon {
    color: #fefefe;
    background: rgba(215, 7, 31, .92);
}

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

.tp2-feature-news-list a + a,
.tp2-side-list > a + a,
.tp2-live-side-list > a + a,
.tp2-ranked-list > a + a {
    margin-top: 2px;
}

.tp2-live-heading {
    display: grid;
    min-height: 86px;
    margin-top: 32px;
    align-items: center;
    grid-template-columns: 42px auto auto minmax(80px, 1fr);
    gap: 10px;
}

.tp2-live-heading img {
    width: 36px;
    height: 36px;
    image-rendering: auto;
}

.tp2-live-heading h2 {
    color: #585b63;
    font-size: 32px;
    font-weight: 760;
    letter-spacing: -.03em;
}

.tp2-live-heading span {
    align-self: center;
    color: #6c6e75;
    font-size: 16px;
}

.tp2-live-heading i {
    height: 4px;
    margin-left: 12px;
    background: linear-gradient(90deg, #75b82d, #4a951c);
}

.tp2-home-layout {
    margin-top: 0;
}

.tp2-live-board,
.tp2-main-col {
    padding: 20px;
}

.tp2-page-intro {
    display: grid;
    min-height: 96px;
    margin-bottom: 20px;
    padding: 18px 20px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
    gap: 28px;
    border-left: 5px solid var(--tp2-accent);
    background: #f7f7f8;
}

.tp2-page-intro span {
    color: var(--tp2-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.tp2-page-intro h1 {
    margin-top: 2px;
    color: var(--tp2-ink);
    font-size: 27px;
    line-height: 1.25;
}

.tp2-page-intro p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--tp2-muted);
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tp2-filter-block {
    margin-bottom: 22px;
}

.tp2-league-pills {
    margin-bottom: 8px;
    padding: 0;
    gap: 9px 10px;
    background: transparent;
    box-shadow: none;
}

.tp2-league-pills.is-collapsed {
    max-height: 92px;
}

.tp2-league-pills a,
.tp2-standings-tabs a,
.tp2-tag-cloud a {
    min-height: 36px;
    border-radius: var(--tp2-radius);
    color: #666971;
    background: #ececef;
}

.tp2-league-pills a.active,
.tp2-league-pills a:hover,
.tp2-standings-tabs a.active,
.tp2-standings-tabs a:hover {
    color: #fffafa;
    background: var(--tp2-accent);
}

.tp2-league-pills-toggle {
    border-radius: var(--tp2-radius);
}

.tp2-live-switch {
    display: flex;
    min-height: 54px;
    align-items: flex-end;
    padding: 0 12px;
    gap: 4px;
    background: #082f4b;
}

.tp2-live-switch button {
    min-width: 132px;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--tp2-radius) var(--tp2-radius) 0 0;
    color: #eef4f8;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.tp2-live-switch button.active {
    color: #24252a;
    background: #fefefe;
}

.tp2-live-switch button:active {
    transform: translateY(1px);
}

.tp2-live-panel {
    background: #fefefe;
}

.tp2-date {
    min-height: 56px;
    padding: 0 16px;
    border: 0;
    background: #fbfbfc;
}

.tp2-date::before {
    width: 8px;
    height: 8px;
    background: var(--tp2-accent);
}

.tp2-match-row {
    min-height: 64px;
    border-bottom-color: #eeeff2;
    grid-template-columns: 64px 116px 70px minmax(0, 1fr) 92px;
}

.tp2-match-row:nth-child(even) {
    background: #fafafa;
}

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

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

.tp2-match-row .tv-list a,
.tp2-live-signal {
    border-color: var(--tp2-accent);
    border-radius: var(--tp2-radius);
    color: var(--tp2-accent-dark);
    white-space: nowrap;
}

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

.tp2-side-block {
    padding: 18px;
}

.tp2-tag-cloud {
    gap: 8px;
}

.tp2-tag-cloud a {
    padding-inline: 10px;
}

.tp2-news-row {
    min-height: 48px;
    border-bottom: 0;
}

.tp2-news-row:nth-child(even) {
    background: #fafafa;
}

.tp2-video-grid,
.tp2-cover-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 16px;
}

.tp2-cover-title {
    min-height: 48px;
    font-weight: 620;
}

.tp2-standings-tabs {
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.tp2-standings-content {
    padding: 20px;
}

.tp2-standings-table th {
    height: 50px;
    color: #303138;
    background: #e5e5e7;
}

.tp2-standings-table td {
    height: 58px;
}

.tp2-standings-table tbody tr:nth-child(-n + 3) .rank-num {
    color: #fffafa;
    background: #f08a93;
}

.tp2-detail-heading {
    margin-bottom: 16px;
    text-align: center;
}

.tp2-detail-heading span {
    color: var(--tp2-accent);
    font-weight: 700;
}

.tp2-detail-heading h1 {
    margin-top: 4px;
    font-size: 25px;
    line-height: 1.35;
}

.tp2-play-match-info,
.tp2-scoreboard {
    min-height: 218px;
    border: 1px solid #ececef;
    background: #fafafa;
}

.tp2-scoreboard::after {
    background: #17171c;
}

.tp2-tab-toggle p {
    border-radius: var(--tp2-radius);
    background: #082f4b;
}

.tp2-article {
    padding: 34px 40px 40px;
}

.tp2-article h1 {
    overflow-wrap: anywhere;
    font-size: 29px;
    line-height: 1.45;
}

.tp2-article-content {
    max-width: 760px;
    color: #33343a;
    font-size: 17px;
    line-height: 1.95;
}

.tp2-article-content img,
.tp2-article-content video,
.tp2-article-content iframe {
    max-width: 100%;
}

.tp2-footer {
    margin-top: 36px;
    color: #c7c6cd;
    background: var(--tp2-plum);
}

.tp2-footer-links {
    padding: 18px 0;
    background: #17171c;
}

.tp2-footer-links .tp2-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.tp2-footer-links a {
    color: #f0eff3;
    font-weight: 650;
}

.tp2-footer-inner {
    display: flex;
    padding: 28px 0 34px;
    align-items: start;
    justify-content: space-between;
    gap: 36px;
}

.tp2-footer-inner strong {
    color: #ef3c1d;
    font-size: 23px;
}

.tp2-footer-inner p {
    margin-top: 6px;
    color: #a7a4af;
}

.tp2-footer-meta {
    max-width: 400px;
    text-align: right;
}

.tp2-footer-meta a {
    color: #d6d4dc;
}

@media (max-width: 980px) {
    .tp2-nav-item {
        padding-inline: 16px;
        font-size: 15px;
    }

    .tp2-feature-grid,
    .tp2-home-layout,
    .tp2-two-col,
    .tp2-live-con {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

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

@media (max-width: 760px) {
    .tp2-utility {
        display: block;
        height: 54px;
    }

    .tp2-utility-inner {
        height: 54px;
    }

    .tp2-brand small,
    .tp2-utility-links {
        display: none;
    }

    .tp2-logo-text {
        font-size: 24px;
    }

    .tp2-header,
    .tp2-nav {
        height: 54px;
    }

    .tp2-nav {
        justify-content: flex-start;
    }

    .tp2-nav-toggle {
        display: inline-block;
        color: #f4f3f6;
        background: #24242a;
    }

    .tp2-nav-toggle span {
        background: #f4f3f6;
    }

    .tp2-mobile-nav-label {
        display: block;
        margin-left: 10px;
        color: #f4f3f6;
        font-weight: 700;
    }

    .tp2-nav-items {
        position: absolute;
        top: 54px;
        right: 16px;
        left: 16px;
        display: none;
        height: auto;
        padding: 8px;
        align-items: stretch;
        background: #1d1d23;
        box-shadow: 0 18px 38px rgba(28, 27, 34, .22);
    }

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

    .tp2-nav-item {
        height: 46px;
        justify-content: center;
        clip-path: none;
    }

    .tp2-nav-item::before {
        clip-path: none;
    }

    .tp2-header-link {
        display: inline-flex;
        margin-left: auto;
    }

    .tp2-ticker {
        padding-top: 14px;
    }

    .tp2-ticker-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp2-ticker-arrow {
        display: none;
    }

    .tp2-ticker-track {
        grid-auto-columns: min(78vw, 260px);
    }

    .tp2-feature-grid {
        margin-top: 0;
    }

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

    .tp2-feature-card.tp2-feature-lead {
        height: 240px;
        min-height: 240px;
    }

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

    .tp2-live-heading {
        min-height: 76px;
        grid-template-columns: 36px auto 1fr;
        gap: 8px;
    }

    .tp2-live-heading h2 {
        font-size: 25px;
    }

    .tp2-live-heading span {
        justify-self: end;
        font-size: 12px;
    }

    .tp2-live-heading i {
        display: none;
    }

    .tp2-page-intro {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .tp2-live-switch {
        padding-inline: 8px;
    }

    .tp2-live-switch button {
        min-width: 0;
        flex: 1 1 50%;
        padding-inline: 10px;
    }

    .tp2-match-row {
        min-height: 92px;
        padding: 10px 8px;
        grid-template-areas:
            "time league status"
            "teams teams action";
        grid-template-columns: 54px minmax(0, 1fr) 78px;
        grid-template-rows: auto auto;
    }

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

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

    .tp2-match-row .tp2-status {
        grid-area: status;
        justify-self: end;
    }

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

    .tp2-match-row .tv-list {
        grid-area: action;
        justify-self: end;
    }

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

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

    .tp2-play-match-info,
    .tp2-scoreboard {
        min-height: 240px;
        padding: 22px 12px 54px;
        grid-template-columns: minmax(0, 1fr) 118px minmax(0, 1fr);
    }

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

    .tp2-match-info-detail .score-vs {
        font-size: 34px;
    }

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

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

    .tp2-footer-inner {
        display: grid;
        gap: 18px;
    }

    .tp2-footer-meta {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .tp2-container,
    .tp2-home-shell,
    .tp2-page-title,
    .tp2-two-col,
    .tp2-standings-shell,
    .tp2-page-shell {
        width: min(100% - 24px, 1200px);
    }

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

    .tp2-feature-compact-list,
    .tp2-video-grid,
    .tp2-cover-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .tp2-match-row .match-info img {
        display: none;
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #d7071f;
    --live-cta-end: #a60417;
    --live-cta-glow-rgb: 215 7 31;
    --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;
    }
}

/* Generated and compressed match-card stadium background */
.tp2-scoreboard {
    border-color: rgba(112, 125, 164, .42);
    background:
        linear-gradient(90deg, rgba(3, 12, 34, .42), rgba(16, 11, 30, .74) 45%, rgba(31, 7, 23, .46)),
        url("../img/live-detail-scoreboard-bg.webp") center 58% / cover no-repeat;
    box-shadow: 0 18px 38px rgba(9, 12, 28, .22);
}

.tp2-scoreboard .tp2-team-info {
    color: #f7f7fb;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .54);
}

.tp2-scoreboard .tp2-team-info:hover {
    color: #fff4f5;
}

.tp2-scoreboard .tp2-team-info dt img,
.tp2-scoreboard .tp2-team-info dt span {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.tp2-scoreboard .tp2-team-info dt span {
    color: var(--tp2-accent);
    text-shadow: none;
}

.tp2-scoreboard .tp2-match-info-detail .time {
    color: rgba(246, 246, 250, .76);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .54);
}

.tp2-scoreboard .tp2-match-info-detail .score-vs {
    color: #fffafa;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .58);
}

.tp2-scoreboard .tp2-match-info-detail .status {
    color: #fff8f8;
    background: rgba(215, 7, 31, .88);
    box-shadow: 0 8px 18px rgba(215, 7, 31, .24);
}

.tp2-scoreboard::after {
    background: rgba(8, 10, 20, .84);
    backdrop-filter: blur(4px);
}

/* Shared top match ticker with real team crests */
.tp2-ticker-track {
    grid-auto-columns: 212px;
    gap: 12px;
    padding-bottom: 12px;
}

.tp2-ticker-card {
    min-height: 148px;
    padding: 12px 14px 11px;
    border: 1px solid #e3e4e9;
    border-top: 4px solid var(--tp2-accent);
    border-radius: var(--tp2-radius);
    background: #fefefe;
    box-shadow: 0 9px 24px rgba(42, 43, 52, .075);
    grid-template-rows: auto minmax(30px, 1fr) minmax(30px, 1fr) auto;
    gap: 4px;
}

.tp2-ticker-card:hover,
.tp2-ticker-card.is-channel:hover {
    border-top-color: var(--tp2-accent-dark);
    box-shadow: 0 12px 28px rgba(42, 43, 52, .11);
}

.tp2-ticker-card .tp2-ticker-meta {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--tp2-muted);
    font-size: 12px;
}

.tp2-ticker-card .tp2-ticker-meta b {
    overflow: hidden;
    max-width: 112px;
    color: var(--tp2-ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp2-ticker-team {
    display: grid;
    min-width: 0;
    align-items: center;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
}

.tp2-ticker-card .tp2-ticker-crest {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e5e6ea;
    border-radius: 50%;
    background: #f7f7f8;
}

.tp2-ticker-crest img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.tp2-ticker-crest i {
    color: var(--tp2-accent-dark);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.tp2-ticker-name {
    overflow: hidden;
    min-width: 0;
    color: #34353c;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp2-ticker-card em {
    min-height: 22px;
    align-self: end;
    justify-self: end;
    padding: 1px 8px;
    border-radius: var(--tp2-radius);
    color: var(--tp2-accent-dark);
    background: var(--tp2-accent-soft);
    font-weight: 700;
    line-height: 20px;
}

/* Local football and basketball type artwork */
.sport-icon.sport-zuqiu,
.sport-icon.sport-lanqiu {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
}

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

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

@media (max-width: 760px) {
    .tp2-ticker-track {
        grid-auto-columns: min(76vw, 248px);
    }

    .tp2-match-row {
        grid-template-areas:
            "time league status"
            "teams teams teams"
            "action action action";
    }

    .tp2-match-row .match-info {
        width: 100%;
        min-width: 0;
    }

    .tp2-match-row .tv-list {
        width: 100%;
        grid-area: action;
        display: flex;
        justify-content: center;
        justify-self: center;
    }
}

/* Mobile category-card navigation CTA. */


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

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

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