:root {
    --tp8-shell: 1200px;
    --tp8-accent: #d41010;
    --tp8-accent-strong: #b90b0b;
    --tp8-ticker: #20d5af;
    --tp8-ticker-soft: #50dfc3;
    --tp8-ink: #262626;
    --tp8-muted: #8a8a8a;
    --tp8-line: #ececec;
    --tp8-soft: #f7f7f7;
    --tp8-surface: #fdfdfd;
    --tp8-dark: #2d2d2d;
    --tp8-blue: #4187c7;
    --tp8-radius: 2px;
    --tp8-shadow: 0 8px 26px rgb(38 38 38 / 8%);
}

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

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

body {
    min-width: 320px;
    margin: 0;
    background: var(--tp8-surface);
    color: var(--tp8-ink);
    font-family: "PingFang SC", "Microsoft YaHei", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

button {
    border: 0;
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 2px solid var(--tp8-blue);
    outline-offset: 2px;
}

.tp8-live-shell {
    width: min(var(--tp8-shell), calc(100% - 32px));
    margin-inline: auto;
}

.tp8-live-main-column {
    min-width: 0;
}

.tp8-live-two-column {
    display: grid;
    grid-template-columns: minmax(0, 820px) 300px;
    gap: 40px;
    align-items: start;
}

.tp8-live-utility {
    height: 36px;
    background: var(--tp8-dark);
    color: #e8e8e8;
    font-size: 13px;
}

.tp8-live-utility-inner {
    display: flex;
    height: 36px;
    align-items: center;
    justify-content: space-between;
}

.tp8-live-utility a:hover {
    color: #f6d46e;
}

.tp8-live-brand-row {
    background: #fdfdfd;
}

.tp8-live-brand-inner {
    display: flex;
    height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.tp8-live-brand {
    display: flex;
    min-width: 430px;
    align-items: center;
    gap: 12px;
    color: #202020;
    white-space: nowrap;
}

.tp8-live-brand img {
    width: auto;
    max-width: 230px;
    height: 56px;
    object-fit: contain;
}

.tp8-live-brand strong {
    max-width: 230px;
    overflow: hidden;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1px;
    text-overflow: ellipsis;
}

.tp8-live-brand em {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.tp8-live-brand-mark {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    background: #ffd627;
    box-shadow: inset 0 0 0 9px #ffdf4e;
}

.tp8-live-brand-mark::before,
.tp8-live-brand-mark::after,
.tp8-live-brand-mark i {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.tp8-live-brand-mark::before {
    inset: 14px;
    background: #fdfdfd;
}

.tp8-live-brand-mark::after {
    inset: 21px;
    background: #232323;
}

.tp8-live-brand-mark i {
    top: 18px;
    right: 18px;
    width: 5px;
    height: 5px;
    background: #fdfdfd;
    z-index: 1;
}

.tp8-live-banner {
    width: 650px;
    height: 70px;
    flex: 0 1 650px;
    border-radius: var(--tp8-radius);
    object-fit: cover;
}

.tp8-live-main-nav {
    background: #fdfdfd;
}

.tp8-live-nav-items {
    display: flex;
    height: 46px;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.tp8-live-nav-items a {
    position: relative;
    display: inline-flex;
    height: 46px;
    align-items: center;
    padding: 0 27px;
    color: #292929;
    font-size: 16px;
    white-space: nowrap;
}

.tp8-live-nav-items a:first-child {
    padding-left: 18px;
}

.tp8-live-nav-items a:not(:last-child)::after {
    position: absolute;
    top: 15px;
    right: 0;
    width: 1px;
    height: 16px;
    background: #c9c9c9;
    content: "";
}

.tp8-live-nav-items a:hover,
.tp8-live-nav-items a.is-active {
    color: var(--tp8-accent);
}

.tp8-live-nav-toggle {
    display: none;
}

.tp8-live-ticker {
    min-height: 92px;
    background: var(--tp8-ticker);
    color: #f3fffc;
}

.tp8-live-ticker-track {
    display: grid;
    min-height: 92px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.tp8-live-ticker-empty {
    grid-column: 1 / -1;
    margin: 0;
    color: rgb(255 255 255 / 86%);
    font-size: 14px;
    text-align: center;
}

.tp8-live-ticker-match {
    display: grid;
    min-width: 0;
    height: 68px;
    grid-template-rows: 23px minmax(0, 1fr);
    align-items: center;
    padding: 8px 12px;
    border-radius: 7px;
    background: rgb(255 255 255 / 18%);
    color: #f8fffd;
    transition: background-color 160ms ease, transform 160ms ease;
}

.tp8-live-ticker-match:hover,
.tp8-live-ticker-match:focus-visible {
    background: rgb(255 255 255 / 30%);
    color: #fdfdfd;
    transform: translateY(-1px);
}

.tp8-live-ticker-match:focus-visible {
    outline: 2px solid rgb(255 255 255 / 92%);
    outline-offset: 2px;
}

.tp8-live-ticker-meta,
.tp8-live-ticker-scoreline,
.tp8-live-ticker-team,
.tp8-live-ticker-league {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-ticker-meta {
    display: grid;
    min-width: 0;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    color: rgb(255 255 255 / 82%);
    font-size: 12px;
    line-height: 1;
}

.tp8-live-ticker-status {
    display: inline-grid;
    min-width: 43px;
    height: 19px;
    place-items: center;
    border-radius: 3px;
    padding: 0 5px;
    background: rgb(3 116 95 / 45%);
    color: #f6fffd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
}

.tp8-live-ticker-match.status-live .tp8-live-ticker-status {
    background: var(--tp8-accent);
}

.tp8-live-ticker-match.status-scheduled .tp8-live-ticker-status {
    background: rgb(255 255 255 / 26%);
}

.tp8-live-ticker-match.status-finished .tp8-live-ticker-status {
    background: rgb(3 116 95 / 58%);
}

.tp8-live-ticker-league {
    min-width: 0;
}

.tp8-live-ticker-scoreline {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.tp8-live-ticker-team {
    min-width: 0;
}

.tp8-live-ticker-team.is-home {
    text-align: right;
}

.tp8-live-ticker-team.is-away {
    text-align: left;
}

.tp8-live-ticker-scoreline b {
    color: #fff;
    font-family: "Microsoft Sans Serif", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
}

.tp8-live-breadcrumb {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 6px;
    color: #454545;
    font-size: 13px;
}

.tp8-live-breadcrumb strong {
    font-weight: 500;
}

.tp8-live-home-main {
    padding-top: 30px;
}

.tp8-live-home-lead {
    --tp8-home-lead-height: 390px;
    display: grid;
    height: var(--tp8-home-lead-height);
    min-height: var(--tp8-home-lead-height);
    grid-template-columns:440px minmax(0, 1fr) 295px;
    gap: 30px;
    align-items: stretch;
}

.tp8-live-home-lead > * {
    min-height: 0;
}

.tp8-live-feature-media,
.tp8-live-feature-carousel {
    min-width: 0;
    height: 95%;
}

.tp8-live-feature-carousel {
    display: block;
}

.tp8-live-feature-stage {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #e8e8e8;
}

.tp8-live-feature-card {
    position: relative;
    display: block;
}

.tp8-live-feature-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 240ms ease, transform 240ms ease;
}

.tp8-live-feature-slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.tp8-live-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.tp8-live-feature-card:hover img,
.tp8-live-video-card:hover img,
.tp8-live-category-feature:hover img {
    transform: scale(1.025);
}

.tp8-live-feature-card::after,
.tp8-live-side-video-grid a::after,
.tp8-live-category-feature::after {
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(to bottom, transparent, rgb(26 26 26 / 84%));
    content: "";
}

.tp8-live-feature-card strong,
.tp8-live-category-feature strong {
    position: absolute;
    right: 14px;
    bottom: 10px;
    left: 14px;
    z-index: 1;
    overflow: hidden;
    color: #f7f7f7;
    font-size: 15px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-feature-card > span,
.tp8-live-side-media > span,
.tp8-live-category-feature > span,
.tp8-live-detail-media-row > span,
.tp8-live-article-list-item > span,
.tp8-live-list-video-cover > span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: #ededed;
    color: #999;
}

.tp8-live-feature-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 32px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: var(--tp8-radius);
    background: rgb(28 28 28 / 58%);
    color: #f7f7f7;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background-color 180ms ease;
}

.tp8-live-feature-arrow:hover,
.tp8-live-feature-arrow:focus-visible {
    background: rgb(212 16 16 / 88%);
}

.tp8-live-feature-arrow.is-prev {
    left: 10px;
}

.tp8-live-feature-arrow.is-next {
    right: 10px;
}

.tp8-live-feature-status {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    min-width: 46px;
    padding: 3px 7px;
    border-radius: var(--tp8-radius);
    background: rgb(28 28 28 / 68%);
    color: #f7f7f7;
    font-size: 12px;
    text-align: center;
}

.tp8-live-lead-news h2 {
    margin: -3px 0 8px;
    color: var(--tp8-accent);
    font-size: 17px;
}

.tp8-live-lead-news > a {
    display: block;
    overflow: hidden;
    padding: 5px 0;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-lead-news > a.is-lead {
    font-size: 18px;
    font-weight: 700;
}

.tp8-live-lead-hot {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
}

.tp8-live-hot-preview-stage {
    position: relative;
    height: 145px;
    flex: 0 0 145px;
    overflow: hidden;
    background: #ededed;
}

.tp8-live-hot-preview-item {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.tp8-live-hot-preview-item.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.tp8-live-hot-preview-item img,
.tp8-live-hot-preview-item > span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    object-fit: cover;
}

.tp8-live-hot-preview-item > span {
    color: #999;
}

.tp8-live-hot-preview-links {
    display: grid;
    padding-top: 4px;
}

.tp8-live-hot-preview-link {
    overflow: hidden;
    border-left: 3px solid transparent;
    padding: 5px 4px 5px 9px;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.tp8-live-hot-preview-link:hover,
.tp8-live-hot-preview-link:focus-visible,
.tp8-live-hot-preview-link.is-active {
    border-left-color: var(--tp8-accent);
    background: #faf2f2;
    color: var(--tp8-accent);
}

.tp8-live-lead-hot > .tp8-live-compact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 4px;
    border-top: 1px solid #ededed;
    padding-top: 2px;
}

.tp8-live-lead-hot > .tp8-live-compact-links a {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 12px;
}

.tp8-live-side-heading {
    --tp8-side-icon-y: 0;
    position: relative;
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 10px;
}

.tp8-live-side-heading::before {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    background-image: url("../img/title_icon_side.webp");
    background-position: 0 var(--tp8-side-icon-y, 0);
    background-repeat: no-repeat;
    background-size: 28px 840px;
    content: "";
}

.tp8-live-side-heading.is-video {
    --tp8-side-icon-y: 0;
}

.tp8-live-side-heading.is-news {
    --tp8-side-icon-y: -56px;
}

.tp8-live-side-heading.is-live {
    --tp8-side-icon-y: -112px;
}

.tp8-live-side-heading.is-league {
    --tp8-side-icon-y: -168px;
}

.tp8-live-side-heading.is-topic {
    --tp8-side-icon-y: -280px;
}

.tp8-live-side-heading.is-navigation {
    --tp8-side-icon-y: -336px;
}

.tp8-live-side-heading h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
}

.tp8-live-side-media-list {
    padding-top: 4px;
}

.tp8-live-side-media {
    display: grid;
    min-width: 0;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 7px 0;
}

.tp8-live-side-media img,
.tp8-live-side-media > span {
    width: 92px;
    height: 66px;
    object-fit: cover;
}

.tp8-live-side-media strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp8-live-compact-links,
.tp8-live-side-list {
    display: grid;
    gap: 0;
}

.tp8-live-compact-links a,
.tp8-live-side-list a {
    position: relative;
    overflow: hidden;
    padding: 5px 0 5px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-compact-links a::before,
.tp8-live-side-list a::before {
    position: absolute;
    top: 50%;
    left: 1px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #bdbdbd;
    content: "";
}

.tp8-live-section-heading {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgb(212 16 16 / 65%);
}

.tp8-live-section-heading::before {
    position: absolute;
    top: -4px;
    left: 32px;
    width: 128px;
    height: 5px;
    background: var(--tp8-accent);
    content: "";
}

.tp8-live-section-heading h1,
.tp8-live-section-heading h2 {
    margin: 0;
    color: #1f1f1f;
    font-size: 27px;
    line-height: 1.25;
}

.tp8-live-section-heading.is-small {
    min-height: 52px;
    justify-content: space-between;
}

.tp8-live-section-heading.is-small::before {
    left: 28px;
    width: 105px;
}

.tp8-live-section-heading.is-small h2 {
    font-size: 21px;
}

.tp8-live-section-heading.is-small > a {
    color: var(--tp8-muted);
    font-size: 13px;
}

.tp8-live-home-schedule-heading {
    margin-top: 4px;
}

.tp8-live-live-tabs,
.tp8-live-schedule-tabs,
.tp8-live-inline-categories {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tp8-live-live-tabs button,
.tp8-live-schedule-tabs button {
    padding: 8px 0;
    background: transparent;
    color: #555;
    white-space: nowrap;
}

.tp8-live-live-tabs button:hover,
.tp8-live-live-tabs button.is-active,
.tp8-live-schedule-tabs button:hover,
.tp8-live-schedule-tabs button.is-active {
    color: var(--tp8-accent);
    font-weight: 700;
}

.tp8-live-home-schedule {
    padding-bottom: 48px;
}

.tp8-live-match-day + .tp8-live-match-day {
    margin-top: 18px;
}

.tp8-live-match-day > h2 {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    margin: 0;
    padding-left: 22px;
    background: #fdfdfd;
    font-size: 16px;
    font-weight: 500;
}

.tp8-live-match-day > h2::before {
    position: absolute;
    left: 5px;
    width: 5px;
    height: 20px;
    background: #f03535;
    content: "";
}

.tp8-live-match-day > h2 time {
    margin-right: 7px;
}

.tp8-live-match-row {
    display: grid;
    min-height: 62px;
    grid-template-columns: 36px 56px 72px 62px minmax(0, 1fr) 78px;
    gap: 9px;
    align-items: center;
    border-bottom: 1px solid var(--tp8-line);
    cursor: pointer;
}

.tp8-live-match-row:hover {
    background: #fafafa;
}

.tp8-live-sport-icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f7f7f7;
}

.tp8-live-sport-icon img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.tp8-live-sport-icon.sport-other > span {
    overflow: hidden;
    color: #777;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-match-row > time,
.tp8-live-match-league,
.tp8-live-match-status {
    overflow: hidden;
    color: #555;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-match-status {
    color: #aaa;
}

.tp8-live-match-row p {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    margin: 0;
    text-align: center;
}

.tp8-live-match-team {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    overflow: hidden;
    font-weight: 600;
}

.tp8-live-match-team.is-home {
    justify-content: flex-end;
}

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

.tp8-live-team-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-match-team.is-home .tp8-live-team-name {
    text-align: right;
}

.tp8-live-match-team.is-away .tp8-live-team-name {
    text-align: left;
}

.tp8-live-team-logo,
.tp8-live-team-logo-fallback {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.tp8-live-team-logo {
    display: block;
    object-fit: contain;
}

.tp8-live-team-logo-fallback {
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #777;
    font-size: 11px;
    font-weight: 600;
}

.tp8-live-match-row p b {
    color: var(--tp8-blue);
    font-family: "Microsoft Sans Serif", serif;
    font-size: 20px;
    font-weight: 400;
}

.tp8-live-watch,
.tp8-live-signal-button {
    display: inline-grid;
    min-height: 36px;
    place-items: center;
    border-radius: var(--tp8-radius);
    background: #f14436;
    color: #fdfdfd;
    text-align: center;
    white-space: nowrap;
}

.tp8-live-watch:hover,
.tp8-live-signal-button:hover {
    background: var(--tp8-accent-strong);
    color: #fdfdfd;
}

.tp8-live-watch:active,
.tp8-live-signal-button:active,
.tp8-live-live-tabs button:active,
.tp8-live-schedule-tabs button:active {
    transform: translateY(1px);
}

.tp8-live-load-more {
    display: block;
    min-width: 150px;
    margin: 18px auto 0;
    padding: 9px 18px;
    border-radius: var(--tp8-radius);
    background: #f3f3f3;
    color: #555;
}

.tp8-live-load-more:hover {
    background: #e9e9e9;
}

.tp8-live-load-more:disabled {
    cursor: progress;
    opacity: .68;
}

.tp8-live-sidebar {
    min-width: 0;
}

.tp8-live-side-block + .tp8-live-side-block {
    margin-top: 26px;
}

.tp8-live-side-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 8px;
}

.tp8-live-side-video-grid a {
    position: relative;
    height: 92px;
    overflow: hidden;
    background: #ececec;
}

.tp8-live-side-video-grid img,
.tp8-live-side-video-grid a > span {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp8-live-side-video-grid strong {
    position: absolute;
    right: 8px;
    bottom: 6px;
    left: 8px;
    z-index: 1;
    overflow: hidden;
    color: #f7f7f7;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 8px;
}

.tp8-live-tag-cloud a {
    padding: 7px 12px;
    border: 1px solid rgb(212 16 16 / 45%);
    border-radius: var(--tp8-radius);
    line-height: 1;
}

.tp8-live-section-page main.tp8-live-shell {
    padding-bottom: 54px;
}

.tp8-live-league-selector {
    --tp8-league-row-height: 20px;
    --tp8-league-row-gap: 9px;
    --tp8-league-collapsed-height: calc(var(--tp8-league-row-height) * 3 + var(--tp8-league-row-gap) * 2);
    margin-bottom: 30px;
    padding: 15px 18px;
    background: #fafafa;
    box-shadow: inset 0 0 0 1px var(--tp8-line);
}

.tp8-live-league-selector-list {
    display: flex;
    max-height: var(--tp8-league-collapsed-height);
    flex-wrap: wrap;
    gap: var(--tp8-league-row-gap) 18px;
    overflow: hidden;
}

.tp8-live-league-selector.is-expanded .tp8-live-league-selector-list {
    max-height: none;
}

.tp8-live-league-selector a {
    line-height: var(--tp8-league-row-height);
    font-weight: 600;
}

.tp8-live-league-selector a.is-active {
    color: var(--tp8-accent);
}

.tp8-live-league-toggle {
    margin-top: 10px;
    border: 0;
    border-radius: var(--tp8-radius);
    padding: 5px 9px;
    background: #f1eeee;
    color: var(--tp8-accent);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.tp8-live-league-toggle:hover,
.tp8-live-league-toggle:focus-visible {
    background: #f8e4e4;
}

.tp8-live-schedule-title {
    margin-bottom: 16px;
}

.tp8-live-content-section {
    margin-bottom: 34px;
}

.tp8-live-inline-categories {
    gap: 20px;
    color: #8d8d8d;
}

.tp8-live-inline-categories a:hover {
    color: var(--tp8-accent);
}

.tp8-live-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
    padding-top: 16px;
}

.tp8-live-video-card {
    min-width: 0;
}

.tp8-live-video-cover {
    position: relative;
    display: block;
    height: 116px;
    overflow: hidden;
    background: #e7e7e7;
}

.tp8-live-video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.tp8-live-video-cover > b {
    display: grid;
    height: 100%;
    place-items: center;
    color: #999;
}

.tp8-live-video-cover i,
.tp8-live-list-video-cover i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgb(212 16 16 / 84%);
    color: #fdfdfd;
    font-size: 13px;
    font-style: normal;
    transform: translate(-50%, -50%);
}

.tp8-live-video-card > strong {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    font-weight: 500;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp8-live-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 26px;
    padding-bottom: 50px;
}

.tp8-live-category-card {
    min-width: 0;
}

.tp8-live-category-feature {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
    background: #e7e7e7;
}

.tp8-live-category-feature img,
.tp8-live-category-feature > span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.tp8-live-live-side-list {
    display: grid;
    padding-top: 6px;
}

.tp8-live-live-side-list a {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 8px;
    padding: 7px 0;
}

.tp8-live-live-side-list time {
    color: var(--tp8-accent);
}

.tp8-live-live-side-list span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-news-lead {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 28px;
    padding-top: 18px;
}

.tp8-live-news-lead-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
}

.tp8-live-news-lead-images a {
    min-width: 0;
}

.tp8-live-news-lead-images img,
.tp8-live-news-lead-images a > span {
    width: 100%;
    height: 108px;
    object-fit: cover;
}

.tp8-live-news-lead-images strong {
    display: block;
    margin-top: 6px;
    overflow: hidden;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-news-lead-links {
    display: grid;
    align-content: start;
}

.tp8-live-news-lead-links a {
    overflow: hidden;
    padding: 5px 0;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-news-lead-links a:first-child {
    font-size: 18px;
    font-weight: 700;
}

.tp8-live-news-category-grid {
    padding-top: 10px;
}

.tp8-live-standings-layout {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    min-height: 780px;
    margin-bottom: 54px;
    box-shadow: 0 0 0 1px var(--tp8-line);
}

.tp8-live-standings-selector {
    background: #f8f8f8;
}

.tp8-live-standings-selector h1,
.tp8-live-standings-selector a {
    display: grid;
    min-height: 50px;
    place-items: center;
    margin: 0;
}

.tp8-live-standings-selector h1 {
    font-size: 16px;
}

.tp8-live-standings-selector a {
    color: #777;
}

.tp8-live-standings-selector a.is-active {
    background: var(--tp8-accent);
    color: #fdfdfd;
}

.tp8-live-standings-main {
    min-width: 0;
    padding: 28px 40px 42px;
}

.tp8-live-standings-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tp8-live-standings-header h2,
.tp8-live-standings-header p,
.tp8-live-standings-round h2,
.tp8-live-standings-round h3 {
    margin: 0;
}

.tp8-live-standings-header h2 {
    font-size: 23px;
}

.tp8-live-standings-header p,
.tp8-live-standings-round h3 {
    color: var(--tp8-muted);
    font-size: 13px;
    font-weight: 400;
}

.tp8-live-standings-round > h2 {
    margin: 14px 0 8px;
    font-size: 18px;
}

.tp8-live-standings-round > h3 {
    margin-bottom: 8px;
}

.tp8-live-table-scroll {
    max-width: 100%;
    overflow-x: auto;
}

.tp8-live-standings-table {
    width: 100%;
    min-width: 820px;
    border-collapse: separate;
    border-spacing: 0 6px;
    text-align: center;
}

.tp8-live-standings-table th {
    height: 42px;
    color: #aaa;
    font-weight: 400;
}

.tp8-live-standings-table td {
    height: 42px;
    background: #f8f8f8;
}

.tp8-live-standings-table tbody tr:nth-child(even) td {
    background: #f3f3f3;
}

.tp8-live-rank {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: var(--tp8-radius);
    background: #bbb;
    color: #fdfdfd;
    font-size: 12px;
}

.tp8-live-standings-table tr:nth-child(-n + 3) .tp8-live-rank {
    background: var(--tp8-accent);
}

.tp8-live-team-cell {
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    text-align: left;
}

.tp8-live-team-cell img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.tp8-live-detail-layout,
.tp8-live-article-layout,
.tp8-live-list-page main.tp8-live-shell {
    padding-bottom: 54px;
}

.tp8-live-scoreboard {
    display: grid;
    height: 232px;
    grid-template-columns: 1fr 240px 1fr;
    align-items: center;
    background:
        linear-gradient(rgb(45 45 45 / 91%), rgb(45 45 45 / 91%)),
        url("../img/sports-banner.webp") center / cover;
    color: #f3f3f3;
}

.tp8-live-score-team {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.tp8-live-score-team strong {
    max-width: 210px;
    overflow: hidden;
    color: var(--tp8-blue);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-score-team img,
.tp8-live-score-team > span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    object-fit: contain;
}

.tp8-live-score-team > span {
    border-radius: 50%;
    background: rgb(255 255 255 / 8%);
    color: #9a9a9a;
    font-size: 28px;
}

.tp8-live-score-team em {
    color: #999;
    font-style: normal;
}

.tp8-live-score-center {
    display: grid;
    justify-items: center;
    gap: 7px;
}

.tp8-live-score-center h1 {
    max-width: 360px;
    margin: 0;
    overflow: hidden;
    color: var(--tp8-ink);
    font-size: 18px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-score-center a {
    color: var(--tp8-blue);
    font-size: 16px;
}

.tp8-live-score-center b {
    color: #f4f4f4;
    font-family: Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.tp8-live-score-center time,
.tp8-live-score-center span {
    color: #999;
}

.tp8-live-signal-panel {
    padding: 20px 0 30px;
}

.tp8-live-signal-panel .tp8-live-section-heading {
    justify-content: center;
}

.tp8-live-signal-panel .tp8-live-section-heading::before {
    display: none;
}

.tp8-live-signal-panel .tp8-live-section-heading h1,
.tp8-live-signal-panel .tp8-live-section-heading h2 {
    padding: 0 22px;
    background: var(--tp8-surface);
    font-size: 30px;
}

.tp8-live-signal-button {
    min-width: 112px;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
}

.tp8-live-signal-button.is-disabled {
    background: #b9b9b9;
    cursor: not-allowed;
}

.tp8-live-detail-list + .tp8-live-detail-list,
.tp8-live-related-matches,
.tp8-live-related-content {
    margin-top: 28px;
}

.tp8-live-detail-media-row {
    display: grid;
    min-height: 126px;
    grid-template-columns: 176px minmax(0, 1fr) 90px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--tp8-line);
}

.tp8-live-detail-media-row img,
.tp8-live-detail-media-row > span {
    width: 176px;
    height: 104px;
    object-fit: cover;
}

.tp8-live-detail-media-row strong {
    font-size: 17px;
    font-weight: 500;
}

.tp8-live-detail-media-row time {
    color: #aaa;
}

.tp8-live-article-detail > header {
    padding: 4px 12px 22px;
    text-align: center;
}

.tp8-live-article-detail > header h1 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.45;
}

.tp8-live-article-detail > header p {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 0;
    color: var(--tp8-muted);
}

.tp8-live-article-summary {
    margin-bottom: 22px;
    padding: 16px 20px;
    background: #f7f7f7;
    color: #666;
}

.tp8-live-article-body {
    overflow-wrap: anywhere;
    font-size: 17px;
    line-height: 2;
}

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

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

.tp8-live-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 24px;
    padding: 14px 0;
    color: #555;
}

.tp8-live-article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--tp8-line);
}

.tp8-live-article-pager a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-article-pager span {
    margin-right: 8px;
    color: var(--tp8-accent);
}

.tp8-live-article-detail.is-video-detail .tp8-live-article-summary {
    display: none;
}

.news-video-player {
    overflow: hidden;
    margin: 0 auto 26px;
    border-radius: var(--tp8-radius);
    background: #171717;
    box-shadow: var(--tp8-shadow);
}

.news-video-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #171717;
    object-fit: contain;
}

.news-video-player.is-portrait-video video {
    max-height: 720px;
    aspect-ratio: auto;
    margin-inline: auto;
}

.news-video-player-meta {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 16px;
    color: #e8e8e8;
}

.news-video-player-meta strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-video-player-meta span {
    flex: 0 0 auto;
    color: #aaa;
    font-size: 13px;
}

.tp8-live-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 60px;
    background: rgb(22 22 22 / 92%);
}

.tp8-live-image-lightbox img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
}

.tp8-live-image-lightbox button {
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 9px 16px;
    border-radius: var(--tp8-radius);
    background: #fdfdfd;
    color: #333;
}

.tp8-live-list-panel {
    min-width: 0;
}

.tp8-live-article-list-item {
    display: grid;
    min-height: 150px;
    grid-template-columns: 188px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--tp8-line);
}

.tp8-live-article-list-item > a,
.tp8-live-article-list-item > span {
    position: relative;
    display: block;
    width: 188px;
    height: 118px;
    overflow: hidden;
}

.tp8-live-article-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp8-live-article-list-item h2 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
}

.tp8-live-article-list-item p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 8px;
    color: #777;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp8-live-article-list-item time {
    color: #aaa;
}

.tp8-live-list-item-meta,
.tp8-live-list-item-tags {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
}

.tp8-live-list-item-meta {
    gap: 7px 10px;
}

.tp8-live-list-item-tags {
    gap: 5px;
}

.tp8-live-list-item-tags a {
    display: inline-flex;
    max-width: 132px;
    height: 21px;
    min-width: 0;
    align-items: center;
    padding: 0 7px;
    overflow: hidden;
    border-radius: 3px;
    background: #fff0f0;
    color: #bd3b3b;
    font-size: 12px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp8-live-list-item-tags a:hover,
.tp8-live-list-item-tags a:focus-visible {
    background: var(--tp8-accent);
    color: #fff;
}

.tp8-live-list-video-cover i {
    width: 34px;
    height: 34px;
}

.tp8-live-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 28px 0;
}

.tp8-live-pagination a,
.tp8-live-pagination span,
.tp8-live-pagination strong {
    display: grid;
    min-width: 34px;
    height: 34px;
    place-items: center;
    padding: 0 9px;
    border-radius: var(--tp8-radius);
    background: #f2f2f2;
}

.tp8-live-pagination strong {
    background: var(--tp8-accent);
    color: #fdfdfd;
}

.tp8-live-empty,
.tp8-live-media-empty {
    color: var(--tp8-muted);
}

.tp8-live-empty-panel {
    display: grid;
    min-height: 190px;
    place-content: center;
    padding: 28px;
    background: #f8f8f8;
    color: #777;
    text-align: center;
}

.tp8-live-empty-panel h1,
.tp8-live-empty-panel h2,
.tp8-live-empty-panel p {
    margin: 0;
}

.tp8-live-empty-panel p {
    margin-top: 8px;
}

.tp8-live-sitemap-main {
    padding-bottom: 54px;
}

.tp8-live-sitemap-intro {
    display: flex;
    min-height: 160px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 28px 34px;
    background: var(--tp8-dark);
    color: #f0f0f0;
}

.tp8-live-sitemap-intro h1,
.tp8-live-sitemap-intro p {
    margin: 0;
}

.tp8-live-sitemap-intro h1 {
    font-size: 28px;
}

.tp8-live-sitemap-intro p {
    margin-top: 8px;
    color: #bcbcbc;
}

.tp8-live-sitemap-intro > a {
    padding: 10px 16px;
    border-radius: var(--tp8-radius);
    background: var(--tp8-accent);
    color: #fdfdfd;
}

.tp8-live-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.tp8-live-sitemap-links {
    display: grid;
}

.tp8-live-sitemap-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--tp8-line);
}

.tp8-live-sitemap-links time {
    color: #aaa;
}

.tp8-live-footer {
    margin-top: 20px;
    color: #777;
}

.tp8-live-footer-top {
    min-height: 42px;
    background: var(--tp8-dark);
    color: #e8e8e8;
}

.tp8-live-footer-top nav {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    white-space: nowrap;
}

.tp8-live-footer-body {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tp8-live-back-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 20;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--tp8-radius);
    background: var(--tp8-dark);
    color: #fdfdfd;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

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

.is-image-missing {
    background: #ededed;
}

@media (max-width: 1240px) {
    .tp8-live-brand {
        min-width: 360px;
    }

    .tp8-live-brand strong {
        font-size: 25px;
    }

    .tp8-live-brand em {
        font-size: 20px;
    }

    .tp8-live-nav-items a {
        padding-inline: 20px;
    }
}

@media (max-width: 960px) {
    .tp8-live-banner {
        width: 480px;
        flex-basis: 480px;
    }

    .tp8-live-brand {
        min-width: 320px;
    }

    .tp8-live-brand em {
        display: none;
    }

    .tp8-live-home-lead {
        height: auto;
        min-height: 0;
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .tp8-live-home-lead > * {
        height: var(--tp8-home-lead-height);
    }

    .tp8-live-lead-news {
        grid-row: 2;
    }

    .tp8-live-two-column {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 24px;
    }

    .tp8-live-match-row {
        grid-template-columns: 26px 50px 60px minmax(0, 1fr) 70px;
    }

    .tp8-live-match-status {
        display: none;
    }
}

@media (max-width: 760px) {
    .tp8-live-shell {
        width: min(100% - 24px, var(--tp8-shell));
    }

    .tp8-live-utility {
        height: 32px;
    }

    .tp8-live-utility-inner {
        height: 32px;
    }

    .tp8-live-brand-inner {
        position: relative;
        height: 72px;
    }

    .tp8-live-brand {
        min-width: 0;
        max-width: calc(100% - 54px);
    }

    .tp8-live-brand img {
        max-width: 200px;
        height: 48px;
    }

    .tp8-live-brand strong {
        max-width: 220px;
        font-size: 22px;
    }

    .tp8-live-brand-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .tp8-live-brand-mark::before {
        inset: 11px;
    }

    .tp8-live-brand-mark::after {
        inset: 17px;
    }

    .tp8-live-brand-mark i {
        top: 15px;
        right: 14px;
    }

    .tp8-live-banner {
        display: none;
    }

    .tp8-live-nav-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 5px;
        border-radius: var(--tp8-radius);
        background: #f2f2f2;
    }

    .tp8-live-nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #333;
    }

    .tp8-live-main-nav {
        position: relative;
    }

    .tp8-live-nav-items {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 15;
        display: none;
        height: auto;
        max-height: 65vh;
        align-items: stretch;
        flex-direction: column;
        overflow-y: auto;
        padding: 8px 12px 14px;
        background: #fdfdfd;
        box-shadow: var(--tp8-shadow);
    }

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

    .tp8-live-nav-items a,
    .tp8-live-nav-items a:first-child {
        height: 42px;
        padding: 0 8px;
    }

    .tp8-live-nav-items a::after {
        display: none;
    }

    .tp8-live-ticker {
        min-height: 82px;
    }

    .tp8-live-ticker-track {
        display: flex;
        min-height: 82px;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

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

    .tp8-live-ticker-empty {
        flex: 0 0 100%;
    }

    .tp8-live-ticker-match {
        width: 262px;
        height: 62px;
        flex: 0 0 262px;
        scroll-snap-align: start;
    }

    .tp8-live-breadcrumb {
        min-height: 44px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tp8-live-home-main {
        padding-top: 20px;
    }

    .tp8-live-home-lead,
    .tp8-live-two-column,
    .tp8-live-category-grid,
    .tp8-live-news-lead,
    .tp8-live-sitemap-grid,
    .tp8-live-standings-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp8-live-home-lead {
        height: auto;
        min-height: 0;
        gap: 26px;
    }

    .tp8-live-home-lead > * {
        height: auto;
    }

    .tp8-live-lead-news {
        grid-row: auto;
    }

    .tp8-live-feature-stage {
        height: min(62vw, 280px);
    }

    .tp8-live-feature-card {
        height: 100%;
    }

    .tp8-live-hot-preview-stage {
        height: min(56vw, 210px);
        flex-basis: min(56vw, 210px);
    }

    .tp8-live-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 14px 0 10px;
    }

    .tp8-live-section-heading h1,
    .tp8-live-section-heading h2 {
        font-size: 23px;
    }

    .tp8-live-section-heading::before {
        left: 18px;
        width: 96px;
    }

    .tp8-live-live-tabs,
    .tp8-live-schedule-tabs,
    .tp8-live-inline-categories {
        max-width: 100%;
        gap: 16px;
        overflow-x: auto;
    }

    .tp8-live-home-schedule-heading {
        margin-top: 28px;
    }

    .tp8-live-match-row {
        grid-template-columns: 24px 46px minmax(0, 1fr) 72px;
        gap: 8px;
        padding: 10px 0;
    }

    .tp8-live-sport-icon {
        width: 22px;
        height: 22px;
    }

    .tp8-live-sport-icon img {
        width: 20px;
        height: 20px;
    }

    .tp8-live-match-status {
        display: none;
    }

    .tp8-live-match-row p {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
        padding: 2px 4px;
    }

    .tp8-live-match-team {
        gap: 5px;
    }

    .tp8-live-team-logo,
    .tp8-live-team-logo-fallback {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tp8-live-watch {
        min-height: 34px;
    }

    .tp8-live-sidebar {
        padding-top: 12px;
    }

    .tp8-live-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .tp8-live-video-cover {
        height: 29vw;
        max-height: 180px;
    }

    .tp8-live-category-feature {
        height: min(56vw, 280px);
    }

    .tp8-live-news-lead-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp8-live-news-lead-images img,
    .tp8-live-news-lead-images a > span {
        height: 29vw;
        max-height: 170px;
    }

    .tp8-live-standings-layout {
        box-shadow: none;
    }

    .tp8-live-standings-selector {
        display: flex;
        overflow-x: auto;
        background: #f8f8f8;
    }

    .tp8-live-standings-selector h1,
    .tp8-live-standings-selector a {
        min-width: 92px;
        min-height: 44px;
        flex: 0 0 auto;
        padding: 0 14px;
    }

    .tp8-live-standings-main {
        padding: 22px 0 34px;
    }

    .tp8-live-standings-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tp8-live-scoreboard {
        height: 210px;
        grid-template-columns: 1fr 112px 1fr;
    }

    .tp8-live-score-team strong {
        max-width: 105px;
        font-size: 14px;
    }

    .tp8-live-score-team img,
    .tp8-live-score-team > span {
        width: 62px;
        height: 62px;
    }

    .tp8-live-score-center b {
        font-size: 34px;
    }

    .tp8-live-score-center time {
        max-width: 105px;
        text-align: center;
    }

    .tp8-live-detail-media-row {
        min-height: 112px;
        grid-template-columns: 128px minmax(0, 1fr);
        gap: 12px;
    }

    .tp8-live-detail-media-row img,
    .tp8-live-detail-media-row > span {
        width: 128px;
        height: 86px;
    }

    .tp8-live-detail-media-row time {
        display: none;
    }

    .tp8-live-article-detail > header h1 {
        font-size: 23px;
    }

    .tp8-live-article-body {
        font-size: 16px;
    }

    .tp8-live-article-pager {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-video-player-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .tp8-live-article-list-item {
        min-height: 126px;
        grid-template-columns: 126px minmax(0, 1fr);
        gap: 13px;
    }

    .tp8-live-article-list-item > a,
    .tp8-live-article-list-item > span {
        width: 126px;
        height: 88px;
    }

    .tp8-live-article-list-item h2 {
        display: -webkit-box;
        overflow: hidden;
        font-size: 16px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .tp8-live-article-list-item p {
        display: none;
    }

    .tp8-live-list-item-meta {
        gap: 6px 8px;
    }

    .tp8-live-list-item-tags {
        gap: 4px;
    }

    .tp8-live-list-item-tags a {
        max-width: 112px;
        height: 20px;
        padding: 0 6px;
        font-size: 11px;
    }

    .tp8-live-sitemap-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .tp8-live-footer-top nav {
        gap: 18px;
    }

    .tp8-live-footer-body {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
    }

    .tp8-live-footer-body p {
        margin: 0;
    }

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

@media (max-width: 420px) {
    .tp8-live-brand strong {
        max-width: 175px;
        font-size: 19px;
    }

    .tp8-live-video-grid,
    .tp8-live-news-lead-images {
        gap: 14px 10px;
    }

    .tp8-live-match-row {
        grid-template-columns: 20px 42px minmax(0, 1fr) 68px;
        font-size: 13px;
    }

    .tp8-live-sport-icon {
        width: 20px;
        height: 20px;
    }

    .tp8-live-sport-icon img {
        width: 18px;
        height: 18px;
    }

    .tp8-live-team-logo,
    .tp8-live-team-logo-fallback {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .tp8-live-scoreboard {
        grid-template-columns: 1fr 94px 1fr;
    }
}

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

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

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

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

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

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

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

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

/* Mobile category-card navigation CTA. */


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

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

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

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