:root {
    --bg: #09111d;
    --bg-soft: #111b2d;
    --panel: #121d31;
    --panel-2: #17253d;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #edf2ff;
    --muted: #96a4bf;
    --primary: #ff5a36;
    --primary-2: #ff8743;
    --secondary: #24d0ff;
    --gold: #ffd166;
    --success: #2ed47a;
    --danger: #ff476f;
    --shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 90, 54, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(36, 208, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #07101b 0%, #0a1220 28%, #08111d 100%);
    font: 400 1.5rem/1.75 "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: #fff;
}

button,
input {
    font: inherit;
}

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

.site-shell {
    position: relative;
    overflow: hidden;
}

.score-ticker {
    border-bottom: 1px solid var(--line);
    background: rgba(3, 8, 15, 0.74);
    backdrop-filter: blur(18px);
}

.ticker-inner {
    display: grid;
    grid-template-columns: 140px 1fr 90px;
    align-items: center;
    gap: 18px;
    min-height: 48px;
}

.ticker-label,
.ticker-more {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
}

.ticker-track {
    display: flex;
    gap: 26px;
    white-space: nowrap;
    overflow: hidden;
    color: #d7e2f7;
}

.ticker-track span::after {
    content: "/";
    color: rgba(255,255,255,0.25);
    margin-left: 26px;
}

.sports-header {
    position: sticky;
    top: 0;
    z-index: 20;
    overflow: visible;
    background: rgba(8, 13, 24, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ff9b43);
    color: #fff;
    font: 700 1.7rem/1 "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 24px rgba(255, 90, 54, 0.28);
}

.brand-copy strong,
.hero-copy h1,
.section-heading h2,
.page-hero h1,
.story-card h3,
.sidebar-card h3,
.article-card h3,
.player-card h3,
.team-card h3,
.league-card h3,
.video-card h3,
.score-card h3,
.content-article h2,
.ranking-table strong {
    font-family: "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.03em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-main .brand-copy strong {
    font-size: 2.2rem;
    line-height: 1;
}

.header-main .brand-copy em {
    display: none;
}

.brand-copy strong {
    font-size: 3rem;
    line-height: 1;
}

.brand-copy em {
    color: var(--muted);
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.top-links {
    display: flex;
    gap: 16px;
    color: var(--muted);
    font-size: 1.3rem;
}

.header-search {
    display: flex;
    align-items: center;
    width: 220px;
    max-width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.header-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 8px 12px;
    font-size: 1.3rem;
}

.header-search button {
    width: 40px;
    height: 36px;
    flex-shrink: 0;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: #fff;
}

.sports-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sports-nav::-webkit-scrollbar {
    display: none;
}

.sports-nav > .nav-link,
.sports-nav .nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    color: #d7e1f4;
    font-size: 1.3rem;
    background: transparent;
    white-space: nowrap;
}

.sports-nav > .nav-link:hover,
.sports-nav > .nav-link.is-active,
.sports-nav .nav-trigger:hover,
.sports-nav .nav-item.is-open > .nav-trigger {
    background: linear-gradient(135deg, rgba(255,90,54,0.18), rgba(255,135,67,0.06));
    color: #fff;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-item:last-child .nav-dropdown {
    left: auto;
    right: 0;
}

.nav-caret {
    font-size: 1.1rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown.is-open .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 40;
    min-width: 196px;
    padding: 8px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(22, 34, 56, 0.98), rgba(12, 21, 36, 0.99));
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: #d7e1f4;
    font-size: 1.35rem;
    line-height: 1.4;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    background: rgba(255, 90, 54, 0.14);
    color: #fff;
}

.nav-dropdown a + a {
    margin-top: 2px;
}

.page-main {
    padding: 30px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.95fr;
    gap: 24px;
    margin-bottom: 26px;
}

.hero-card,
.panel,
.story-card,
.sidebar-card,
.article-card,
.score-card,
.team-card,
.league-card,
.player-card,
.video-card,
.replay-card,
.meta-strip,
.content-article,
.author-card,
.schedule-row,
.table-card,
.quote-card,
.stat-grid .stat-item,
.media-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(19,31,52,0.94), rgba(12,21,36,0.98));
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.hero-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 12, 22, 0.15), rgba(8, 12, 22, 0.88)),
        url("../banner/b1.jpg") center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.feature-highlight:hover::before {
    transform: scale(1.08);
}

.hero-copy {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 34px;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,90,54,0.18);
    border: 1px solid rgba(255, 169, 147, 0.22);
    color: #ffd9cf;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-copy h1 {
    margin: 16px 0 12px;
    font-size: 5.8rem;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 18px;
    color: #d6deec;
    font-size: 1.7rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn,
.pill,
.meta-chip,
.rank-badge,
.live-tag,
.stat-tag,
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
}

.btn {
    min-height: 46px;
    padding: 0 18px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
}

.btn-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: #fff;
}

.btn-glow {
    box-shadow: 0 10px 28px rgba(255, 90, 54, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 90, 54, 0.45);
}

.btn-sm {
    min-height: 34px;
    padding: 0 14px;
    font-size: 1.2rem;
}

.text-highlight {
    color: var(--primary-2);
    font-size: 0.55em;
}

.hero-side {
    display: grid;
    gap: 18px;
}

.panel {
    padding: 22px;
}

.panel-head,
.section-heading,
.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-head h2,
.section-heading h2,
.sidebar-head h3,
.content-article h2 {
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 0.02em;
}

.panel-head a,
.section-heading a,
.sidebar-head a {
    color: var(--secondary);
    font-size: 1.3rem;
}

.score-list,
.quick-list,
.topic-list,
.mini-list,
.rank-list,
.timeline,
.article-list,
.archive-list,
.video-playlist,
.fixture-list,
.feed-list,
.roster-list,
.data-list,
.formation-list,
.info-list,
.stats-list,
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.score-list li,
.quick-list li,
.topic-list li,
.article-list li,
.archive-list li,
.video-playlist li,
.feed-list li,
.roster-list li,
.data-list li,
.info-list li,
.stats-list li {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.score-list li:first-child,
.quick-list li:first-child,
.topic-list li:first-child,
.article-list li:first-child,
.archive-list li:first-child,
.video-playlist li:first-child,
.feed-list li:first-child,
.roster-list li:first-child,
.data-list li:first-child,
.info-list li:first-child,
.stats-list li:first-child {
    border-top: 0;
}

.score-list a,
.quick-list a,
.topic-list a,
.article-list a,
.archive-list a,
.video-playlist a,
.feed-list a,
.roster-list a {
    display: block;
    padding: 14px 0;
}

.score-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.score-line strong {
    justify-self: center;
    font-size: 2rem;
    color: #fff;
}

.score-line span:last-child {
    text-align: right;
}

.score-note,
.item-meta,
.section-note,
.page-hero p,
.sidebar-card p,
.content-article p,
.author-card p,
.footer-desc,
.feature-card p {
    color: var(--muted);
}

.section {
    margin-top: 34px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.story-grid,
.team-grid,
.league-grid,
.player-grid,
.video-grid,
.replay-grid,
.feature-grid,
.dual-grid,
.stat-grid,
.gallery-grid,
.cards-3,
.cards-4 {
    display: grid;
    gap: 20px;
}

.story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid,
.league-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.player-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.player-grid.small-cards .player-card {
    padding: 10px;
    font-size: 12px;
}
.player-grid.small-cards .cover {
    aspect-ratio: 4 / 3;
}
.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.replay-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: 1.25fr 0.75fr; }
.dual-grid { grid-template-columns: 1fr 1fr; }
.stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.story-card,
.team-card,
.league-card,
.player-card,
.video-card,
.replay-card,
.feature-card,
.sidebar-card,
.article-card,
.author-card,
.content-article,
.media-card,
.table-card,
.quote-card {
    overflow: hidden;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}
.cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(255,90,54,0.22), rgba(36,208,255,0.18));
}

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

.cover-badge,
.live-badge,
.play-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cover-badge,
.live-badge {
    background: rgba(255, 71, 111, 0.92);
    color: #fff;
}

.play-badge {
    left: auto;
    right: 16px;
    background: rgba(0,0,0,0.5);
    color: #fff;
}

.card-body,
.article-body,
.sidebar-card,
.author-card,
.content-article,
.media-card,
.table-card,
.quote-card {
    padding: 22px;
}

.card-body h3,
.article-card h3,
.team-card h3,
.league-card h3,
.player-card h3,
.video-card h3,
.replay-card h3,
.feature-card h3,
.media-card h3,
.quote-card h3 {
    margin: 0 0 10px;
    font-size: 2.4rem;
    line-height: 1.08;
}

.card-body p,
.article-body p,
.media-card p,
.feature-card p {
    margin: 0;
}

.meta-row,
.meta-strip,
.player-meta,
.team-meta,
.league-meta,
.content-meta,
.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-chip,
.pill,
.filter-chip,
.live-tag,
.stat-tag,
.rank-badge {
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: #d9e5fb;
    font-size: 1.2rem;
}

.filter-chip.is-active {
    background: linear-gradient(135deg, rgba(255, 90, 54, 0.24), rgba(255, 135, 67, 0.12));
    border-color: rgba(255, 140, 110, 0.34);
    color: #fff;
}

.live-tag {
    background: rgba(255,71,111,0.12);
    border-color: rgba(255,71,111,0.25);
    color: #ffd7e1;
}

.rank-badge {
    min-width: 34px;
    justify-content: center;
    padding: 0;
}

.mini-scoreboard {
    display: grid;
    gap: 14px;
}

.score-card {
    padding: 18px 20px;
}

.score-card h3 {
    margin: 0;
    font-size: 1.8rem;
}

.score-top,
.match-bottom,
.player-header,
.team-header,
.league-header,
.page-hero-meta,
.split-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.score-middle {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
}

.score-middle strong {
    font-size: 4rem;
    line-height: 1;
}

.score-middle span:last-child,
.match-bottom span:last-child,
.team-line span:last-child {
    text-align: right;
}

.list-shell {
    display: grid;
    gap: 18px;
}

.article-card {
    display: grid;
    grid-template-columns: 260px 1fr;
}

.article-cover {
    min-height: 100%;
    background: linear-gradient(135deg, rgba(255,90,54,0.22), rgba(36,208,255,0.18));
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body h3 {
    margin: 0 0 12px;
    font-size: 2.8rem;
    line-height: 1.05;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 32px;
    margin-bottom: 24px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,90,54,0.12), transparent 55%),
        radial-gradient(circle at right top, rgba(36,208,255,0.12), transparent 34%);
    pointer-events: none;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 12px 0 10px;
    font-size: 5rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 1.65rem;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 24px;
}

.main-column,
.sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.sidebar-card h3,
.author-card h3,
.table-card h3,
.quote-card h3 {
    margin: 0 0 12px;
    font-size: 2rem;
}

.filter-row,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-card .filter-chip:first-child,
.filter-row .filter-chip:first-child {
    background: linear-gradient(135deg, rgba(255,90,54,0.22), rgba(255,135,67,0.08));
    border-color: rgba(255,120,86,0.32);
}

.content-article h2 {
    margin-bottom: 12px;
}

.content-article p {
    margin: 0 0 16px;
}

.content-article blockquote {
    margin: 20px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--primary);
    background: rgba(255,255,255,0.03);
    color: #f5f7fd;
    font-size: 1.8rem;
}

.split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.data-list li,
.info-list li,
.stats-list li,
.video-playlist li,
.archive-list li,
.feed-list li,
.roster-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
}

.rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-list li + li {
    margin-top: 10px;
}

.rank-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rank-list a span:last-child {
    color: var(--muted);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 3.2rem;
    color: #fff;
}

.team-meta span,
.league-meta span,
.player-meta span,
.page-hero-meta span,
.content-meta span {
    display: inline-flex;
}

.data-list strong,
.info-list strong,
.stats-list strong {
    color: #fff;
}

.team-card .cover,
.player-card .cover {
    aspect-ratio: 4 / 5;
}

.team-sign,
.league-sign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,90,54,0.2), rgba(255,209,102,0.16));
    color: #fff;
    font: 700 2.1rem/1 "Impact", "Arial Narrow", sans-serif;
}

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

.roster-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.roster-card strong {
    display: block;
    font-size: 2.2rem;
}

.timeline li {
    position: relative;
    padding: 0 0 20px 24px;
    color: #dfe8f7;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: -4px;
    width: 1px;
    background: rgba(255,255,255,0.12);
}

.timeline li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 0 0 6px rgba(255,90,54,0.12);
}

.timeline li:last-child::before {
    display: none;
}

.timeline strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.fixture-list li,
.schedule-row {
    padding: 16px 18px;
}

.fixture-list li + li,
.schedule-row + .schedule-row {
    margin-top: 14px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 18px;
    align-items: center;
}

.schedule-row strong {
    display: block;
    font-size: 2.2rem;
}

.schedule-row small,
.fixture-list small,
.player-meta,
.team-meta,
.page-hero-meta,
.content-meta {
    color: var(--muted);
}

.schedule-row .btn {
    min-height: 40px;
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
}

.table-card th,
.table-card td {
    padding: 11px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.table-card tr:first-child th,
.table-card tr:first-child td {
    border-top: 0;
}

.table-card th {
    color: var(--muted);
    font-weight: 400;
}

.quote-card {
    background: linear-gradient(135deg, rgba(255,90,54,0.12), rgba(36,208,255,0.12));
}

.quote-card p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
}

.gallery-grid .cover {
    aspect-ratio: 16 / 9;
}

/* 紧凑型列表（联赛 / 球队 / 球员 / 资讯子频道） */
.league-list,
.team-list,
.news-list,
.player-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.league-item,
.team-item,
.news-item,
.player-item {
    padding: 0;
}

.league-item a,
.team-item a,
.news-item a,
.player-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    text-decoration: none;
    color: inherit;
}

.league-item a strong,
.team-item a strong,
.news-item a strong,
.player-item a strong {
    font-size: 1.8rem;
    color: #fff;
}

.league-item a span,
.team-item a span,
.news-item a span,
.player-item a span {
    flex-shrink: 0;
    color: var(--muted);
    font-size: 1.3rem;
}

.league-item a:hover strong,
.team-item a:hover strong,
.news-item a:hover strong,
.player-item a:hover strong {
    color: var(--primary);
}

.page-nav,
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.03);
}

.pagination .current {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: transparent;
    color: #fff;
}

.sports-footer {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 90, 54, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(5, 9, 16, 0.4) 0%, rgba(4, 8, 14, 0.98) 100%);
}

.footer-inner {
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 32px 40px;
    padding-bottom: 32px;
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    padding-right: 12px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #ff9b43);
    color: #fff;
    font: 700 1.4rem/1 "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(255, 90, 54, 0.25);
}

.footer-logo strong {
    font-family: "Impact", "Arial Narrow", sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #fff;
}

.footer-desc {
    margin: 0;
    max-width: 380px;
    color: var(--muted);
    font-size: 1.4rem;
    line-height: 1.75;
}

.footer-title {
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Impact", "Arial Narrow", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 1.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--muted);
}

.footer-contact-label {
    flex-shrink: 0;
    min-width: 36px;
    color: #c8d4ec;
    font-size: 1.25rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d8e0f3;
    font-size: 1.15rem;
}

.footer-badges .fa {
    color: var(--primary-2);
    font-size: 1.1rem;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
    margin: 0;
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.footer-copy a {
    color: #c5d0e8;
}

.footer-copy a:hover {
    color: var(--primary-2);
}

.back-top {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 90, 54, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 90, 54, 0.38);
}

/* ========== 首页 ========== */
.home-page .section:first-of-type {
    margin-top: 0;
}

.home-page .section-heading a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.home-page .section-heading a:hover {
    color: #fff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 20px;
}

.hero-stat {
    min-width: 88px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1.1;
    color: #fff;
}

.hero-stat span {
    font-size: 1.15rem;
    color: #c5d0e8;
}

.score-card--compact {
    padding: 14px 16px;
}

.score-card--compact .score-middle strong {
    font-size: 2.8rem;
}

.quick-list--ranked li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.quick-rank {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 90, 54, 0.2);
    color: #ffd9cf;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

.home-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding: 16px 20px;
}

.channel-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: #d7e1f4;
    font-size: 1.3rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.channel-chip .fa {
    color: var(--primary-2);
}

.channel-chip:hover {
    border-color: rgba(255, 140, 110, 0.4);
    background: rgba(255, 90, 54, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

.score-card--live {
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.score-card--live:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.score-card-link {
    display: block;
    padding: 18px 20px;
    color: inherit;
}

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

.league-card--home .card-body {
    padding: 16px;
}

.panel--news .list-shell {
    display: grid;
    gap: 16px;
}

.article-card--featured {
    grid-template-columns: minmax(200px, 280px) 1fr;
}

.article-card--featured .cover {
    aspect-ratio: 4 / 3;
}

.home-sidebar {
    gap: 16px;
}

.table-card--compact th,
.table-card--compact td {
    padding: 8px 0;
    font-size: 1.3rem;
}

.table-card--compact tbody a {
    color: #e8eeff;
}

.table-card--compact tbody a:hover {
    color: var(--primary-2);
}

.home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-tags .filter-chip {
    cursor: pointer;
    text-decoration: none;
}

.home-fixtures {
    padding: 22px 24px;
}

.home-fixture-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-fixture-item {
    display: grid;
    grid-template-columns: 56px 72px 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-fixture-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.fixture-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-2);
}

.fixture-league {
    font-size: 1.2rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.fixture-teams {
    font-size: 1.45rem;
    color: #eef2ff;
}

.fixture-teams em {
    margin: 0 8px;
    font-style: normal;
    color: var(--muted);
    font-size: 1.2rem;
}

.fixture-status {
    font-size: 1.2rem;
    color: var(--muted);
    white-space: nowrap;
}

.team-grid.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card--rich {
    position: relative;
    padding: 22px 22px 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card--rich:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 110, 0.28);
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: rgba(255, 90, 54, 0.14);
    color: var(--primary-2);
    font-size: 1.8rem;
}

.feature-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--secondary);
    font-size: 1.25rem;
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 140, 110, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 90, 54, 0.12), rgba(36, 208, 255, 0.08)),
        linear-gradient(180deg, rgba(19, 31, 52, 0.94), rgba(12, 21, 36, 0.98));
}

.home-cta-copy h2 {
    margin: 0 0 8px;
    font-size: 2.6rem;
}

.home-cta-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.45rem;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* ========== 直播列表页 ========== */
.content-grid--live {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.live-toolbar {
    display: grid;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 18px;
}

.live-toolbar-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.live-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-size: 1.25rem;
}

.live-stat-pill strong {
    color: #fff;
    font-size: 1.5rem;
}

.live-stat-pill.is-live {
    border-color: rgba(255, 71, 111, 0.35);
    background: rgba(255, 71, 111, 0.1);
    color: #ffd7e1;
}

.live-filter-row {
    margin-bottom: 0;
}

.live-list-shell {
    display: grid;
    gap: 14px;
}

.live-schedule {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 20px 22px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.live-schedule:hover {
    border-color: rgba(255, 140, 110, 0.28);
    transform: translateY(-2px);
}

.live-schedule.is-live {
    border-color: rgba(255, 71, 111, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 71, 111, 0.08) inset;
}

.live-schedule.is-finished {
    opacity: 0.88;
}

.live-schedule-time {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.live-schedule-time strong {
    font-size: 1.8rem;
    color: var(--primary-2);
    line-height: 1.2;
}

.live-schedule-time span {
    font-size: 1.2rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.live-schedule-title {
    margin: 0 0 8px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.live-schedule-title a:hover {
    color: var(--primary-2);
}

.live-schedule-action {
    flex-shrink: 0;
}

.live-schedule-action .btn {
    min-width: 96px;
    justify-content: center;
}

.pagebar {
    justify-content: center;
    margin-top: 8px;
}

.pagebar a,
.pagebar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.pagebar .current,
.pagebar strong {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: transparent;
    color: #fff;
}

/* 侧栏上中下结构 */
.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 88px;
}

.sidebar-stack-block {
    overflow: hidden;
}

.sidebar-stack-block .sidebar-head h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 1.7rem;
}

.sidebar-stack-block .sidebar-head h3 .fa {
    color: var(--primary-2);
    font-size: 1.4rem;
}

.sidebar-stack-body {
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 90, 54, 0.35) transparent;
}

.sidebar-feed-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: sidebar-feed;
}

.sidebar-feed-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-feed-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.feed-rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255, 90, 54, 0.16);
    color: #ffd9cf;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.feed-main {
    min-width: 0;
    flex: 1;
}

.feed-cate {
    display: inline-block;
    margin-bottom: 4px;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(36, 208, 255, 0.12);
    color: var(--secondary);
    font-size: 1.1rem;
}

.feed-main a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #e8eeff;
    font-size: 1.3rem;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.feed-main a:hover {
    color: #fff;
}

.feed-main time {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 1.1rem;
}

.sidebar-feed-list--media .feed-main a {
    -webkit-line-clamp: 2;
}

@media (max-width: 1200px) {
    .header-main {
        column-gap: 14px;
    }

    .top-links {
        display: none;
    }

    .header-search {
        width: 180px;
    }

    .sports-nav > .nav-link,
    .sports-nav .nav-trigger {
        padding: 0 10px;
        font-size: 1.25rem;
    }

    .hero-grid,
    .feature-grid,
    .content-grid,
    .story-grid,
    .team-grid,
    .league-grid,
    .video-grid,
    .replay-grid,
    .player-grid,
    .cards-4,
    .gallery-grid,
    .footer-grid,
    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .home-league-grid,
    .team-grid.cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-card--featured {
        grid-template-columns: 1fr;
    }

    .home-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-grid--live {
        grid-template-columns: 1fr;
    }

    .sidebar-stack {
        position: static;
    }
}

@media (max-width: 920px) {
    .ticker-inner {
        grid-template-columns: 1fr;
        padding: 8px 0;
    }

    .header-main {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 10px;
        padding: 12px 0;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        width: auto;
    }

    .header-search {
        width: auto;
        min-width: 0;
        flex: 1;
        max-width: 280px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .sports-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px;
        padding: 8px 0 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .sports-nav.is-open {
        display: flex;
    }

    .sports-nav > .nav-link,
    .sports-nav .nav-trigger {
        justify-content: space-between;
        width: 100%;
    }

    .nav-item.has-dropdown:hover .nav-dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        margin: 0 0 6px;
        padding: 4px 0 4px 12px;
        border: 0;
        border-left: 2px solid rgba(255, 90, 54, 0.35);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        display: none;
    }

    .nav-item.has-dropdown.is-open .nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown a {
        padding: 10px 14px;
    }

    .hero-grid,
    .story-grid,
    .team-grid,
    .league-grid,
    .video-grid,
    .replay-grid,
    .player-grid,
    .feature-grid,
    .cards-3,
    .cards-4,
    .dual-grid,
    .split-2,
    .gallery-grid,
    .stat-grid,
    .roster-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 430px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 4rem;
    }

    .schedule-row {
        grid-template-columns: 1fr;
    }

    .home-fixture-item {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .fixture-teams {
        grid-column: 1 / -1;
    }

    .fixture-status {
        grid-column: 1;
    }

    .home-fixture-item .btn {
        grid-column: 2;
        justify-self: end;
    }

    .home-channels {
        justify-content: center;
    }

    .channel-chip span {
        display: none;
    }

    .channel-chip {
        padding: 0 14px;
    }

    .live-schedule {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .live-schedule-action .btn {
        width: 100%;
    }

    .sidebar-stack-body {
        max-height: none;
    }
}

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

    .footer-inner {
        padding-top: 28px;
    }

    .footer-bar {
        padding-bottom: 24px;
    }

    .footer-copy {
        font-size: 1.15rem;
    }

    .hero-copy h1 {
        font-size: 3.6rem;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stat {
        min-width: 0;
        flex: 1;
    }

    .home-league-grid,
    .team-grid.cards-4,
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .home-cta {
        padding: 20px;
    }

    .home-cta-copy h2 {
        font-size: 2.2rem;
    }

    .brand-mark {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 2rem;
    }

    .brand-copy strong {
        font-size: 2.4rem;
    }

    .hero-copy {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 3.2rem;
    }

    .page-main {
        padding-top: 20px;
    }

    .page-hero,
    .panel,
    .card-body,
    .article-body,
    .sidebar-card,
    .content-article,
    .author-card,
    .table-card,
    .quote-card {
        padding: 18px;
    }
}
