:root {
    --tp11-accent: #12cdb0;
    --tp11-accent-dark: #087d6d;
    --tp11-accent-soft: #e4f8f4;
    --tp11-ink: #2c3338;
    --tp11-ink-soft: #465159;
    --tp11-muted: #717b82;
    --tp11-page: #f4f5f5;
    --tp11-surface: #fefefe;
    --tp11-surface-soft: #f8f9f9;
    --tp11-line: #e1e6e5;
    --tp11-radius: 6px;
    --tp11-container: 1280px;
    --tp11-shadow: 0 8px 24px rgba(36, 65, 61, .07);
    --tp11-font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

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

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

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

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

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

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

a:hover {
    color: var(--tp11-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(8, 125, 109, .34);
    outline-offset: 3px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp11-nav-toggle {
    position: relative;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    overflow: hidden;
    flex: 0 0 44px;
    border: 0;
    border-radius: var(--tp11-radius);
    background: var(--tp11-surface-soft);
    cursor: pointer;
}

.tp11-nav-toggle span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 2px;
    background: var(--tp11-ink);
    transform-origin: center;
    transition: transform .18s ease, opacity .18s ease;
}

.tp11-nav-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
}

.tp11-nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
}

.tp11-nav-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
}

.tp11-nav-toggle.active span:nth-child(1),
.tp11-nav-toggle.is-active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

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

.tp11-nav-toggle.active span:nth-child(3),
.tp11-nav-toggle.is-active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tp11-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-width: none;
    scroll-snap-type: inline mandatory;
}

.tp11-match-rail::-webkit-scrollbar {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.start-min {
    color: var(--tp11-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(--tp11-ink-soft);
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp11-grid-cards li::before,
.tp11-row-link::before {
    position: absolute;
    top: 12px;
    left: 1px;
    width: 2px;
    height: 10px;
    border-radius: 1px;
    background: #a9afb8;
    content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp11-play-match-info,
.tp11-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(--tp11-radius);
    background: linear-gradient(rgba(251, 251, 252, .88), rgba(251, 251, 252, .94)), url("../img/match-bg.webp") center / cover;
}

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

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

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

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

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

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

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

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

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

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

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

.tp11-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(--tp11-radius);
    color: var(--tp11-accent-dark);
    background: var(--tp11-accent-soft);
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

.tp11-relate-news li::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 2px;
    height: 10px;
    border-radius: 1px;
    background: #a8aeb8;
    content: "";
}

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

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

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

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

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

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

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

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

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

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

.tp11-standings-table td {
    height: 64px;
    padding: 0 12px;
    color: var(--tp11-ink-soft);
}

.tp11-standings-table th:first-child,
.tp11-standings-table td:first-child {
    position: sticky;
    left: 0;
    box-shadow: 1px 0 0 var(--tp11-line);
}

.tp11-standings-table th:first-child {
    z-index: 3;
}

.tp11-standings-table td:first-child {
    z-index: 2;
    background: var(--tp11-surface);
}

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

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

.tp11-standings-table .team-col {
    text-align: left;
    white-space: nowrap;
}

.tp11-standing-team {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp11-back-top {
    position: fixed;
    z-index: 24;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: var(--tp11-radius);
    color: #fff8f4;
    background: var(--tp11-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, box-shadow .18s ease;
}

.tp11-back-top-icon {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-1px);
}

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

.tp11-back-top.is-visible:hover {
    box-shadow: 0 13px 30px rgba(54, 61, 75, .22);
    transform: translateY(-2px);
}

.tp11-back-top.is-visible:active {
    box-shadow: 0 7px 18px rgba(54, 61, 75, .18);
    transform: translateY(0) scale(.96);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .tp11-logo {
        height: 38px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Reference-led TP11 portal refinements. */
.tp11-header {
    position: static;
    height: 85px;
    border-bottom: 5px solid #b7c8c5;
    background: var(--tp11-accent);
    box-shadow: none;
    backdrop-filter: none;
}

.tp11-nav {
    width: min(var(--tp11-container), calc(100% - 32px));
    height: 80px;
    gap: 36px;
}

.tp11-brand {
    min-width: 190px;
    max-width: 230px;
    color: #fefefe;
}

.tp11-brand:hover {
    color: #fff;
}

.tp11-logo {
    max-width: 190px;
    height: 50px;
}

.tp11-logo-text {
    overflow: hidden;
    color: inherit;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp11-nav-items {
    align-self: stretch;
    gap: 4px;
}

.tp11-nav-item {
    align-self: stretch;
    min-width: 92px;
    padding: 0 18px;
    color: #073e38;
    font-size: 16px;
    font-weight: 650;
}

.tp11-nav-item::after {
    right: 20px;
    bottom: 7px;
    left: 20px;
    height: 3px;
    border-radius: 3px;
    background: transparent;
}

.tp11-nav-item:hover,
.tp11-nav-item.nav-selected {
    color: #fefefe;
    background: var(--tp11-accent-dark);
}

.tp11-nav-item:hover::after,
.tp11-nav-item.nav-selected::after {
    background: #fefefe;
    transform: scaleX(.28);
}

.tp11-home-shell {
    padding: 20px 0 34px;
}

.tp11-focus-board {
    position: relative;
    width: min(var(--tp11-container), calc(100% - 32px));
    margin: 18px auto 0;
    padding: 18px 20px 20px;
    overflow: hidden;
    border: 1px solid #dce9e6;
    border-radius: var(--tp11-radius);
    background:
        radial-gradient(circle at 7% -40%, rgb(18 205 176 / 19%), transparent 34%),
        linear-gradient(135deg, #fbfefd 0%, #f3faf8 100%);
    box-shadow: 0 12px 32px rgb(28 80 71 / 8%);
}

.tp11-focus-board::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tp11-accent), #0a8f7c 42%, transparent 88%);
    content: "";
}

.tp11-focus-shell {
    position: relative;
}

.tp11-focus-head {
    display: flex;
    min-height: 48px;
    margin-bottom: 14px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tp11-focus-heading {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
}

.tp11-focus-heading h2 {
    color: #163c36;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.tp11-focus-heading p {
    margin-top: 2px;
    color: #768b87;
    font-size: 12px;
}

.tp11-focus-live {
    display: inline-flex;
    min-width: 68px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 18px;
    color: #fefefe;
    background: #087d6d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.tp11-focus-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #74ffe7;
    box-shadow: 0 0 0 4px rgb(116 255 231 / 18%);
    animation: tp11-focus-pulse 1.8s ease-in-out infinite;
}

@keyframes tp11-focus-pulse {
    50% {
        box-shadow: 0 0 0 7px rgb(116 255 231 / 4%);
        opacity: .72;
    }
}

.tp11-focus-board .tp11-rail-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.tp11-focus-board .tp11-rail-controls button {
    display: grid;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0 0 3px;
    place-items: center;
    border: 1px solid #cfe1dd;
    border-radius: 50%;
    color: #31635b;
    background: rgb(254 254 254 / 78%);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.tp11-focus-board .tp11-rail-controls button:hover {
    border-color: var(--tp11-accent);
    color: #073e38;
    background: var(--tp11-accent);
    transform: translateY(-1px);
}

.tp11-focus-board .tp11-rail-controls button:active {
    transform: scale(.96);
}

.tp11-focus-board .tp11-match-rail {
    display: grid;
    overflow-x: auto;
    padding: 1px 1px 5px;
    grid-auto-columns: 238px;
    grid-auto-flow: column;
    gap: 12px;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgb(18 205 176 / 52%) transparent;
    scrollbar-width: thin;
}

.tp11-focus-board .tp11-match-rail::-webkit-scrollbar {
    height: 4px;
}

.tp11-focus-board .tp11-match-rail::-webkit-scrollbar-track {
    background: transparent;
}

.tp11-focus-board .tp11-match-rail::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgb(18 205 176 / 52%);
}

.tp11-focus-board .tp11-match-rail.is-empty {
    overflow-x: hidden;
    grid-auto-columns: minmax(0, 1fr);
}

.tp11-focus-board .tp11-rail-card {
    position: relative;
    display: flex;
    min-height: 166px;
    padding: 12px 12px 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #d8e6e3;
    border-radius: var(--tp11-radius);
    background: rgb(254 254 254 / 92%);
    box-shadow: 0 5px 14px rgb(28 80 71 / 5%);
    scroll-snap-align: start;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tp11-focus-board .tp11-rail-card:hover {
    border-color: rgb(18 205 176 / 68%);
    box-shadow: 0 9px 20px rgb(28 80 71 / 10%);
    transform: translateY(-2px);
}

.tp11-focus-board .tp11-rail-card.status-live,
.tp11-focus-board .tp11-rail-card.status-playing {
    border-color: rgb(223 43 63 / 32%);
}

.tp11-focus-board .tp11-rail-card.status-live::before,
.tp11-focus-board .tp11-rail-card.status-playing::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: #df2b3f;
    content: "";
}

.tp11-focus-board .tp11-rail-meta {
    display: grid;
    min-height: 26px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
    color: #6d817d;
    font-size: 11px;
}

.tp11-focus-board .tp11-rail-meta a {
    overflow: hidden;
    color: #30524c;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp11-focus-status {
    padding: 1px 5px;
    border-radius: 9px;
    color: #087d6d;
    background: #e4f8f4;
    font-size: 10px;
    line-height: 18px;
    white-space: nowrap;
}

.status-live .tp11-focus-status,
.status-playing .tp11-focus-status {
    color: #c72639;
    background: #fff0f2;
}

.tp11-focus-board .tp11-rail-teams {
    display: grid;
    min-height: 88px;
    flex: 1;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    align-items: center;
    gap: 5px;
    text-align: center;
}

.tp11-focus-team {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 5px;
}

.tp11-focus-team > strong {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    min-height: 30px;
    color: #273c38;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp11-focus-crest {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
}

.tp11-focus-crest img,
.tp11-focus-crest-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tp11-focus-crest img {
    padding: 3px;
    object-fit: contain;
    background: #fefefe;
    box-shadow: 0 0 0 1px #deebe8;
}

.tp11-focus-crest-fallback {
    display: grid;
    place-items: center;
    color: #087d6d;
    background: linear-gradient(135deg, #e4f8f4, #cdeee8);
    font-size: 13px;
    font-weight: 800;
}

.tp11-focus-score {
    display: grid;
    justify-items: center;
    gap: 1px;
}

.tp11-focus-score strong {
    color: #143f38;
    font-size: 15px;
    line-height: 1.2;
}

.tp11-focus-score span {
    color: #96a7a3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
}

.tp11-focus-board .tp11-rail-action {
    display: flex;
    min-width: 0;
    min-height: 32px;
    margin: 0 -12px;
    padding: 0 12px;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    color: #073e38;
    background: #12cdb0;
    font-size: 12px;
    font-weight: 750;
    transition: color .18s ease, background .18s ease;
}

.tp11-focus-board .tp11-rail-action:hover {
    color: #fefefe;
    background: #087d6d;
}

.tp11-focus-empty {
    display: flex;
    width: 100%;
    min-height: 144px;
    padding: 20px;
    align-items: center;
    gap: 14px;
    border: 1px dashed #cbded9;
    border-radius: var(--tp11-radius);
    color: #6f817d;
    background: rgb(254 254 254 / 72%);
    scroll-snap-align: start;
}

.tp11-focus-empty > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #087d6d;
    background: #e4f8f4;
    font-weight: 800;
}

.tp11-focus-empty strong {
    display: block;
    color: #31534d;
    font-size: 14px;
}

.tp11-focus-empty p {
    margin-top: 2px;
    font-size: 12px;
}

.tp11-home-feature {
    display: grid;
    margin-top: 20px;
    padding: 0;
    grid-template-columns: minmax(0, 956px) 308px;
    gap: 16px;
}

.tp11-home-feature .tp11-feature-media {
    display: grid;
    min-width: 0;
    min-height: 294px;
    padding: 20px 24px;
    grid-template-columns: 506px minmax(0, 1fr);
    gap: 16px;
    border-radius: 0;
    background: var(--tp11-surface);
    box-shadow: none;
}

.tp11-lead-story,
.tp11-lead-card,
.tp11-lead-cover {
    display: block;
    min-width: 0;
}

.tp11-lead-card {
    position: relative;
    overflow: hidden;
    height: 250px;
    color: #fefefe;
    background: #20292c;
}

.tp11-lead-cover,
.tp11-lead-cover img {
    width: 100%;
    height: 100%;
}

.tp11-lead-cover img {
    object-fit: cover;
    transition: transform .3s ease;
}

.tp11-lead-card:hover .tp11-lead-cover img {
    transform: scale(1.025);
}

.tp11-lead-card > strong {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    height: 42px;
    padding: 0 14px;
    color: #fefefe;
    background: linear-gradient(90deg, rgb(0 0 0 / 74%), rgb(0 0 0 / 42%));
    font-size: 15px;
    font-weight: 650;
    line-height: 42px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp11-home-feature .tp11-feature-news-list {
    display: grid;
    overflow: hidden;
    min-width: 0;
    align-content: start;
    gap: 4px;
}

.tp11-home-feature .tp11-feature-news-list a {
    display: grid;
    min-width: 0;
    height: 24px;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    color: var(--tp11-ink);
    font-size: 14px;
}

.tp11-home-feature .tp11-feature-news-list i {
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 2px;
    color: #fefefe;
    background: #ff5366;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.tp11-home-feature .tp11-feature-news-list span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp11-home-feature .tp11-feature-news {
    min-width: 0;
    min-height: 294px;
    padding: 0 0 16px;
    border-radius: 0;
    background: var(--tp11-surface);
    box-shadow: none;
}

.tp11-section-head {
    min-height: 44px;
    padding: 0 16px;
    border-bottom: 1px solid #dbe1e0;
}

.tp11-section-head h1,
.tp11-section-head h2 {
    padding-left: 10px;
    border-left: 4px solid var(--tp11-accent);
    font-size: 18px;
}

.tp11-section-head > a {
    color: #557895;
}

.tp11-color-tags {
    padding: 10px 16px 0;
}

.tp11-color-tags a {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 4px;
    color: #2c343a;
    background: #ffc06f;
}

.tp11-color-tags a:nth-child(5n + 2) {
    background: #8fc6f7;
}

.tp11-color-tags a:nth-child(5n + 3) {
    background: #ffb1b0;
}

.tp11-color-tags a:nth-child(5n + 4) {
    background: #83dbc8;
}

.tp11-color-tags a:nth-child(5n + 5) {
    background: #ff9492;
}

.tp11-video-showcase {
    margin-top: 20px;
    padding: 0 0 16px;
    background: transparent;
}

.tp11-video-showcase .tp11-section-head {
    padding: 0;
}

.tp11-home-video-grid {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.tp11-feature-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    aspect-ratio: 1.5 / 1;
    border-radius: 0;
    color: #fefefe;
    background: #253034;
}

.tp11-feature-cover,
.tp11-feature-cover img {
    width: 100%;
    height: 100%;
}

.tp11-feature-cover {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
}

.tp11-feature-cover img {
    object-fit: cover;
}

.tp11-feature-card > strong {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    height: 34px;
    padding: 0 24px 0 9px;
    color: #fefefe;
    background: linear-gradient(90deg, rgb(0 0 0 / 76%), rgb(0 0 0 / 38%));
    font-size: 12px;
    font-weight: 550;
    line-height: 34px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp11-video-play-icon {
    position: absolute;
    right: 9px;
    bottom: 11px;
    z-index: 3;
    top: auto;
    left: auto;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: url("../img/play-icon.png") center / contain no-repeat;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 45%));
}

.tp11-play-icon {
    border: 0;
    background: url("../img/play-icon.png") center / contain no-repeat;
}

.tp11-video-play-icon::after,
.tp11-play-icon::after {
    display: none;
}

.tp11-home-layout {
    display: grid;
    margin-top: 20px;
    grid-template-columns: minmax(0, 900px) 360px;
    align-items: start;
    gap: 20px;
}

.tp11-home-main,
.tp11-home-side,
.tp11-live-board,
.tp11-side-block {
    min-width: 0;
}

.tp11-live-board,
.tp11-home-side .tp11-side-block,
.tp11-main-col,
.tp11-standings-content,
.tp11-live-left,
.tp11-live-side-block {
    border-radius: 0;
    background: var(--tp11-surface);
    box-shadow: none;
}

.tp11-live-tabs {
    min-height: 68px;
    padding: 0 20px;
}

.tp11-live-tabs > div {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
}

.tp11-live-tabs > div::-webkit-scrollbar {
    display: none;
}

.tp11-live-tabs button,
.tp11-hot-tabs button,
.tp11-schedule-tabs button {
    min-height: 38px;
    border: 0;
    border-radius: 3px;
    color: #fefefe;
    background: #4b5155;
    font-weight: 650;
    cursor: pointer;
    white-space: nowrap;
}

.tp11-live-tabs button {
    min-width: 122px;
}

.tp11-live-tabs button.active,
.tp11-hot-tabs button.active,
.tp11-schedule-tabs button.active {
    color: #fefefe;
    background: var(--tp11-accent);
}

.tp11-date {
    min-height: 50px;
    padding: 0 16px;
    border-bottom: 1px solid var(--tp11-line);
    border-radius: 0;
    background: #f9fafa;
}

.tp11-match-list {
    border-radius: 0;
}

.tp11-home-page .tp11-match-row {
    min-height: 80px;
    padding: 0 14px;
    grid-template-columns: 42px 64px 90px 66px minmax(0, 1fr) 90px;
    border-bottom: 1px solid var(--tp11-line);
    background: var(--tp11-surface);
}

.tp11-section-page .tp11-match-row,
.tp11-detail-page .tp11-match-row {
    min-height: 80px;
    padding: 0 12px;
    grid-template-columns: 70px 126px 72px minmax(0, 1fr) 90px;
}

.tp11-match-row:nth-child(even) {
    background: #fbfcfc;
}

.tp11-match-row:hover,
.tp11-match-row:focus-visible {
    background: #eef9f7;
}

.tp11-sport-link {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
}

.sport-icon {
    width: 24px;
    height: 24px;
}

.tp11-match-row .tv-list a,
.tp11-live-signal,
.tp11-load-more {
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 3px;
    color: #fefefe;
    background: var(--tp11-accent-dark);
    white-space: nowrap;
}

.tp11-match-row .tv-list a {
    color: #f1f1f1;
    background: #12cdb0;
}

.tp11-match-row .tv-list a:hover,
.tp11-live-signal:hover,
.tp11-load-more:hover {
    color: #fefefe;
    background: #056657;
}

.tp11-home-side {
    display: grid;
    gap: 16px;
}

.tp11-hot-tags-mobile {
    display: none;
}

.tp11-hot-tabs {
    display: grid;
    padding: 14px 16px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.tp11-ranked-list {
    padding: 10px 16px 16px;
}

.tp11-ranked-list a {
    min-height: 38px;
    padding: 8px 0;
}

.tp11-hot-panel .tp11-ranked-list > a {
    min-height: 42px;
    padding: 8px 0 8px 38px;
}

.tp11-hot-panel .tp11-ranked-list > a::before {
    top: 8px;
    left: 0;
}

.tp11-two-col,
.tp11-news-layout,
.tp11-news-detail-layout,
.tp11-live-detail {
    grid-template-columns: minmax(0, 920px) 340px;
    gap: 20px;
}

.tp11-main-col {
    padding: 20px;
}

.tp11-league-pills {
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 0;
    box-shadow: none;
}

.tp11-league-pills a {
    border-radius: 30px;
}

.tp11-league-pills a.active,
.tp11-league-pills a:hover {
    color: #fefefe;
    background: var(--tp11-accent-dark);
}

.tp11-schedule-tabs {
    display: flex;
    margin: 2px 0 16px;
    gap: 18px;
}

.tp11-schedule-tabs button {
    position: relative;
    min-width: 142px;
}

.tp11-schedule-tabs button i {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    transform: translateX(-50%);
}

.tp11-schedule-tabs button.active i {
    border-top-color: var(--tp11-accent);
}

.tp11-schedule-panel {
    min-width: 0;
}

.tp11-gradient-title {
    min-height: 42px;
    margin: 0;
    padding-left: 14px;
}

.tp11-gradient-title::before,
.tp11-recent-match-tit::before {
    background: var(--tp11-accent);
}

.tp11-side-block,
.tp11-live-side-block {
    margin-bottom: 16px;
}

.tp11-side-list,
.tp11-tag-cloud,
.tp11-live-tag-list,
.tp11-side-relate-news {
    padding: 12px 16px 16px;
}

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

.tp11-cover {
    border-radius: 0;
}

.tp11-cover-title {
    font-size: 14px;
}

.tp11-news-card,
.tp11-tag-related-card,
.tp11-detail-update-block {
    border-radius: 0;
}

.tp11-news-card-cover {
    border-radius: 0;
}

.tp11-article {
    padding: 10px 20px 6px;
}

.tp11-article > header {
    text-align: center;
}

.tp11-article h1 {
    max-width: 820px;
    margin-inline: auto;
    font-size: clamp(24px, 2.3vw, 32px);
    letter-spacing: -.02em;
}

.tp11-article .tp11-meta {
    justify-content: center;
}

.tp11-article-summary {
    text-align: left;
}

.tp11-article-content {
    max-width: 820px;
    font-size: 16px;
    line-height: 1.9;
}

.tp11-article.is-video-detail {
    overflow: hidden;
    padding-bottom: 18px;
}

.tp11-article.is-video-detail .tp11-article-content {
    max-width: none;
}

.tp11-article.is-video-detail .news-video-player {
    width: calc(100% + 80px);
    margin: 24px -40px 24px;
}

.news-video-player {
    display: flex;
    overflow: hidden;
    min-height: 360px;
    margin: 24px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: #070b0d;
}

.news-video-player video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(68vh, 640px);
    aspect-ratio: 16 / 9;
    border-radius: 0;
    background: #070b0d;
    object-fit: contain;
    outline: none;
}

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

.news-video-player-meta {
    display: flex;
    align-self: stretch;
    min-height: 48px;
    margin: 0 !important;
    padding: 10px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgb(255 255 255 / 9%);
    color: #adb7bc;
    background: #111719;
    font-size: 13px;
}

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

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

.tp11-play-match-info,
.tp11-scoreboard {
    min-height: 250px;
    padding: 30px 40px 56px;
    border-radius: 0;
    background: linear-gradient(rgb(255 255 255 / 90%), rgb(255 255 255 / 94%)), url("../img/match-bg.webp") center / cover;
}

.tp11-scoreboard::after {
    color: #d4f7f1;
    background: var(--tp11-accent-dark);
}

.tp11-team-info dt,
.tp11-team-info dt img,
.tp11-team-info dt span {
    width: 82px;
    height: 82px;
}

.tp11-match-info-detail .score-vs {
    color: #20282c;
    font-size: 48px;
}

.tp11-tab-toggle {
    border-radius: 0;
}

.tp11-live-signal-box {
    min-height: 86px;
}

.tp11-live-tag-list a,
.tp11-mini-tags a {
    border-radius: 3px;
}

.tp11-standings-shell {
    padding: 0 0 30px;
}

.tp11-standings-tabs {
    border-radius: 0;
    box-shadow: none;
}

.tp11-standings-tabs a.active,
.tp11-standings-tabs a:hover {
    color: #fefefe;
    background: var(--tp11-accent-dark);
}

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

.tp11-standings-table th {
    color: #073e38;
    background: #7be0cf;
}

.tp11-standings-table tbody tr:hover td {
    background: #e9f8f5;
}

.tp11-footer {
    margin-top: 0;
    padding: 30px 0;
    color: #c5cece;
    background: #303737;
}

.tp11-footer-top strong {
    color: #f2f6f6;
}

.tp11-footer-tags a {
    color: #d7dddd;
}

.tp11-footer-tags a:hover {
    color: #8ce6d6;
}

.tp11-footer-meta,
.tp11-footer-top p {
    color: #aeb9b8;
}

.tp11-back-top {
    color: #fefefe;
    background: var(--tp11-accent-dark);
}

@media (max-width: 1100px) {
    .tp11-nav {
        gap: 18px;
    }

    .tp11-nav-item {
        min-width: auto;
        padding-inline: 12px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .tp11-header {
        height: 66px;
        border-bottom-width: 3px;
    }

    .tp11-nav {
        height: 63px;
    }

    .tp11-logo,
    .tp11-logo-text {
        max-width: 180px;
    }

    .tp11-logo {
        height: 44px;
    }

    .tp11-logo-text {
        font-size: 25px;
    }

    .tp11-nav-toggle {
        display: block;
        margin-left: auto;
        border: 1px solid rgb(7 62 56 / 35%);
        background: rgb(255 255 255 / 22%);
    }

    .tp11-nav-toggle span {
        background: #073e38;
    }

    .tp11-nav-items {
        position: absolute;
        z-index: 40;
        top: 66px;
        right: 16px;
        left: 16px;
        display: none;
        overflow: hidden;
        padding: 8px;
        flex-direction: column;
        border-radius: 4px;
        background: #087d6d;
        box-shadow: 0 14px 34px rgb(22 52 48 / 22%);
    }

    .tp11-nav-items.is-open {
        display: flex;
    }

    .tp11-nav-item {
        width: 100%;
        min-height: 44px;
        color: #f2fffd;
    }

    .tp11-nav-item:hover,
    .tp11-nav-item.nav-selected {
        background: #056657;
    }

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

    .tp11-home-feature .tp11-feature-media {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    }

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

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

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

    .tp11-home-shell {
        padding-top: 12px;
    }

    .tp11-focus-board {
        width: min(100% - 24px, var(--tp11-container));
        margin-top: 12px;
        padding: 13px 13px 14px;
    }

    .tp11-focus-head {
        min-height: 42px;
        margin-bottom: 10px;
    }

    .tp11-focus-heading {
        gap: 10px;
    }

    .tp11-focus-heading h2 {
        font-size: 18px;
    }

    .tp11-focus-heading p {
        display: none;
    }

    .tp11-focus-live {
        min-width: 58px;
        min-height: 28px;
        font-size: 10px;
    }

    .tp11-focus-board .tp11-match-rail {
        grid-auto-columns: min(82vw, 252px);
        overflow-x: auto;
        gap: 10px;
    }

    .tp11-focus-board .tp11-rail-card {
        min-height: 164px;
    }

    .tp11-focus-board .tp11-rail-controls {
        display: none;
    }

    .tp11-focus-empty {
        width: 100%;
        min-height: 136px;
        padding: 16px;
    }

    .tp11-home-feature {
        margin-top: 12px;
        gap: 12px;
    }

    .tp11-home-feature .tp11-feature-media {
        min-height: auto;
        padding: 12px;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .tp11-lead-card {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .tp11-home-feature .tp11-feature-news-list a:nth-child(n + 7) {
        display: none;
    }

    .tp11-home-feature .tp11-feature-news {
        min-height: auto;
    }

    .tp11-hot-tags-desktop {
        display: none;
    }

    .tp11-hot-tags-mobile {
        display: block;
    }

    .tp11-video-showcase,
    .tp11-home-layout {
        margin-top: 12px;
    }

    .tp11-home-video-grid {
        display: grid;
        grid-auto-columns: minmax(240px, 82%);
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-template-rows: 170px;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding-bottom: 8px;
        scrollbar-color: rgb(18 205 176 / 55%) rgb(207 222 219 / 72%);
        scrollbar-width: thin;
        scroll-padding-inline: 1px;
        scroll-snap-type: inline mandatory;
    }

    .tp11-feature-card,
    .tp11-feature-card:first-child {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: auto;
        scroll-snap-align: start;
    }

    .tp11-home-video-grid::-webkit-scrollbar {
        height: 4px;
    }

    .tp11-home-video-grid::-webkit-scrollbar-track {
        background: rgb(207 222 219 / 72%);
    }

    .tp11-home-video-grid::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background: rgb(18 205 176 / 55%);
    }

    .tp11-live-tabs {
        display: flex;
        min-height: 60px;
        padding: 10px 0;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .tp11-live-tabs > h2 {
        flex: 0 0 auto;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .tp11-live-tabs > div {
        overflow-x: auto;
        min-width: 0;
        padding-bottom: 0;
        flex: 1 1 auto;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .tp11-live-tabs button {
        min-width: 96px;
        flex: 0 0 auto;
    }

    .tp11-home-page .tp11-match-row,
    .tp11-section-page .tp11-match-row,
    .tp11-detail-page .tp11-match-row {
        min-height: 118px;
        padding: 10px 12px;
        grid-template-columns: 34px 58px minmax(0, 1fr) 64px;
        grid-template-areas:
            "sport time league status"
            "teams teams teams teams"
            "action action action action";
        gap: 6px 8px;
    }

    .tp11-sport-link,
    .sport-icon-link {
        grid-area: sport;
    }

    .tp11-match-row > .round {
        display: contents;
    }

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

    .tp11-match-row .match-league-name {
        grid-area: league;
    }

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

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

    .tp11-home-page .tp11-match-row .tv-list,
    .tp11-section-page .tp11-match-row .tv-list,
    .tp11-detail-page .tp11-match-row .tv-list {
        width: 100%;
        grid-area: action;
        display: flex;
        justify-content: center;
        justify-self: center;
    }

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

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

    .tp11-main-col,
    .tp11-live-left,
    .tp11-standings-content {
        padding: 14px;
    }

    .tp11-league-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .tp11-league-pills::-webkit-scrollbar {
        display: none;
    }

    .tp11-league-pills a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .tp11-schedule-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .tp11-schedule-tabs button {
        min-width: 0;
    }

    .tp11-video-grid,
    .tp11-cover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .tp11-article {
        padding: 4px 2px 10px;
    }

    .tp11-article > header {
        text-align: left;
    }

    .tp11-article h1 {
        font-size: 23px;
    }

    .tp11-article .tp11-meta {
        justify-content: flex-start;
    }

    .tp11-article-content {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.85;
    }

    .tp11-article.is-video-detail .news-video-player {
        width: calc(100% + 28px);
        margin-right: -14px;
        margin-left: -14px;
    }

    .news-video-player {
        min-height: 220px;
    }

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

    .news-video-player.is-portrait-video video {
        height: min(68vh, 560px);
    }

    .news-video-player-meta {
        padding: 10px 12px;
        align-items: flex-start;
        gap: 8px;
    }

    .tp11-play-match-info,
    .tp11-scoreboard {
        min-height: 218px;
        padding: 24px 10px 54px;
        grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
    }

    .tp11-team-info dt,
    .tp11-team-info dt img,
    .tp11-team-info dt span {
        width: 58px;
        height: 58px;
    }

    .tp11-match-info-detail .score-vs {
        font-size: 31px;
    }

    .tp11-standings-page .tp11-standings-shell {
        padding-bottom: 18px;
    }

    .tp11-standings-page .tp11-standings-tabs {
        margin-bottom: 8px;
        padding: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        scroll-padding-inline: 8px;
        scrollbar-width: none;
    }

    .tp11-standings-page .tp11-standings-tabs::-webkit-scrollbar {
        display: none;
    }

    .tp11-standings-page .tp11-standings-tabs a {
        min-height: 30px;
        padding: 0 10px;
        flex: 0 0 auto;
        font-size: 12px;
        scroll-snap-align: start;
    }

    .tp11-standings-page .tp11-standings-content {
        padding: 10px;
    }

    .tp11-standings-page .tp11-section-head {
        min-height: 36px;
        margin-bottom: 8px;
        padding: 0 10px;
    }

    .tp11-standings-page .tp11-section-head h1,
    .tp11-standings-page .tp11-section-head h2 {
        font-size: 16px;
    }

    .tp11-standings-page .tp11-standings-round + .tp11-standings-round {
        margin-top: 16px;
    }

    .tp11-standings-page .tp11-table-group-title {
        margin: 10px 0 6px;
        font-size: 14px;
    }

    .tp11-standings-page .tp11-standings-table-wrap {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-color: rgb(18 205 176 / 55%) rgb(207 222 219 / 72%);
        scrollbar-width: thin;
    }

    .tp11-standings-page .tp11-standings-table {
        min-width: 650px;
        font-size: 12px;
    }

    .tp11-standings-page .tp11-standings-table th {
        height: 36px;
        padding: 0 6px;
        font-size: 11px;
    }

    .tp11-standings-page .tp11-standings-table td {
        height: 46px;
        padding: 0 6px;
    }

    .tp11-standings-page .tp11-standing-team {
        gap: 6px;
    }

    .tp11-standings-page .tp11-standing-team img {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tp11-standings-page .rank-num {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .tp11-standings-page .points-num {
        font-size: 14px;
    }

    .tp11-footer {
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp11-focus-live i {
        animation: none;
    }

    .tp11-focus-board .tp11-rail-card,
    .tp11-focus-board .tp11-rail-controls button {
        transition: none;
    }

    .tp11-lead-cover img,
    .tp11-feature-cover img {
        transition: none;
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #087d6d;
    --live-cta-end: #055b4f;
    --live-cta-glow-rgb: 18 205 176;
    --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 */
.tp11-match-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

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

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

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

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

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

/* Mobile category-card navigation CTA. */


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

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

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