/* ===== 体育直播主题 — 深青 + 珊瑚橙 官方风 ===== */
:root {
    --c-primary: #0a2e3d;
    --c-primary-light: #134a5f;
    --c-accent: #ff6b4a;
    --c-accent-soft: #fff0ec;
    --c-bg: #eef3f7;
    --c-surface: #ffffff;
    --c-border: #d8e2ea;
    --c-text: #1a2b36;
    --c-muted: #5c6f7d;
    --c-live: #e63946;
    --c-upcoming: #f4a024;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 12px rgba(10, 46, 61, 0.08);
    --shadow-hover: 0 8px 24px rgba(10, 46, 61, 0.12);
    --header-h: 68px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
}

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

a {
    color: inherit;
}

.z6ae71container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section[id] {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ===== 顶栏 ===== */
.z6ae71header {
    background: var(--c-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.z6ae71header-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: var(--header-h);
    position: relative;
}

.z6ae71logo {
    flex-shrink: 0;
}

.z6ae71logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.z6ae71logo h1 a {
    color: #fff;
    text-decoration: none;
}

.z6ae71logo-tagline {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
    white-space: nowrap;
}

.z6ae71main-nav {
    flex: 1;
    min-width: 0;
}

.z6ae71main-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.25rem 0.5rem;
    justify-content: center;
}

.z6ae71main-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.z6ae71main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.z6ae71btn-download {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--c-accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.z6ae71btn-download:hover {
    background: #e85a3a;
    transform: translateY(-1px);
}

.z6ae71menu-toggle {
    display: none;
    flex-shrink: 0;
    width: 32px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.z6ae71menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform 0.25s, opacity 0.25s;
}

.z6ae71menu-toggle.z6ae71active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.z6ae71menu-toggle.z6ae71active span:nth-child(2) {
    opacity: 0;
}

.z6ae71menu-toggle.z6ae71active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== 首页 Hero ===== */
.z6ae71hero {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 55%, #1a5f75 100%);
    color: #fff;
    padding: 3rem 0;
    overflow: hidden;
}

.z6ae71hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.z6ae71hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 107, 74, 0.25);
    color: #ffc9bb;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 74, 0.4);
}

.z6ae71hero-copy h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
    border: none;
    padding: 0;
}

.z6ae71hero-lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.z6ae71hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.z6ae71btn {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.z6ae71btn-primary {
    background: var(--c-accent);
    color: #fff;
}

.z6ae71btn-primary:hover {
    background: #e85a3a;
}

.z6ae71btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.z6ae71btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.z6ae71hero-metrics {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.z6ae71hero-metrics li {
    text-align: left;
}

.z6ae71hero-metrics strong {
    display: block;
    font-size: 1.35rem;
    color: var(--c-accent);
    line-height: 1.2;
}

.z6ae71hero-metrics span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.z6ae71hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.z6ae71hero-img {
    max-height: 280px;
    width: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}

.z6ae71intro-strip {
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: 1.25rem 0;
}

.z6ae71intro-strip p {
    font-size: 0.92rem;
    color: var(--c-muted);
    line-height: 1.75;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.z6ae71intro-strip strong {
    color: var(--c-primary);
}

/* ===== 主内容区 ===== */
.z6ae71main-content {
    padding: 2rem 0 3rem;
}

.z6ae71section {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.z6ae71section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-border);
}

.z6ae71section-head h2 {
    font-size: 1.35rem;
    color: var(--c-primary);
    margin: 0;
    border: none;
    padding: 0;
}

.z6ae71section-head p {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin-top: 0.25rem;
}

.z6ae71section-head-row {
    align-items: center;
}

.z6ae71tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.z6ae71nav-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    background: var(--c-bg);
    color: var(--c-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.z6ae71nav-btn:hover {
    border-color: var(--c-primary-light);
    color: var(--c-primary);
}

.z6ae71nav-btn.z6ae71active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.z6ae71section-foot {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}

.z6ae71load-more {
    padding: 0.6rem 1.75rem;
    background: var(--c-primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.z6ae71load-more:hover {
    background: var(--c-primary-light);
}

/* ===== 直播频道 ===== */
.z6ae71live-hall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.z6ae71live-hall-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    min-width: 0;
}

.z6ae71live-hall-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.z6ae71live-hall-card.z6ae71featured {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-color: transparent;
    color: #fff;
}

.z6ae71live-status {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 12px;
    background: var(--c-live);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 1;
}

.z6ae71live-status.z6ae71upcoming {
    background: var(--c-upcoming);
    color: #1a2b36;
}

.z6ae71live-status.z6ae71replay {
    background: var(--c-muted);
}

.z6ae71live-hall-content {
    padding: 1rem;
}

.z6ae71live-hall-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.z6ae71live-hall-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
    word-break: break-word;
}

.z6ae71live-hall-card.z6ae71featured h3 {
    color: #fff;
}

.z6ae71live-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    font-weight: 600;
    font-size: 0.88rem;
}

.z6ae71team {
    flex: 1;
    text-align: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z6ae71vs {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--c-muted);
    padding: 0 0.25rem;
}

.z6ae71live-hall-card.z6ae71featured .z6ae71vs {
    color: rgba(255, 255, 255, 0.7);
}

.z6ae71live-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
    color: var(--c-muted);
}

.z6ae71live-hall-card.z6ae71featured .z6ae71live-info {
    color: rgba(255, 255, 255, 0.75);
}

.z6ae71quality {
    color: var(--c-accent);
    font-weight: 600;
}

.z6ae71live-hall-card.z6ae71featured .z6ae71quality {
    color: #ffc9bb;
}

.z6ae71live-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--c-border);
}

.z6ae71live-hall-card.z6ae71featured .z6ae71live-stats {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.z6ae71stat {
    text-align: center;
    min-width: 0;
}

.z6ae71label {
    display: block;
    font-size: 0.7rem;
    color: var(--c-muted);
    margin-bottom: 0.15rem;
}

.z6ae71live-hall-card.z6ae71featured .z6ae71label {
    color: rgba(255, 255, 255, 0.65);
}

.z6ae71value {
    font-size: 0.85rem;
    font-weight: 600;
    word-break: break-word;
}

.z6ae71live-hall-card.z6ae71featured .z6ae71value {
    color: #fff;
}

/* ===== 重磅赛事 ===== */
.z6ae71featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.z6ae71featured-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s;
}

.z6ae71featured-card:hover {
    box-shadow: var(--shadow-hover);
}

.z6ae71match-status {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 1;
}

.z6ae71match-status.z6ae71live {
    background: var(--c-live);
    color: #fff;
}

.z6ae71match-status.z6ae71upcoming {
    background: var(--c-upcoming);
    color: #1a2b36;
}

.z6ae71match-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.z6ae71match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.z6ae71match-time {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--c-primary);
}

.z6ae71match-type {
    font-size: 0.75rem;
    color: var(--c-muted);
    background: var(--c-surface);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    border: 1px solid var(--c-border);
    white-space: nowrap;
}

.z6ae71match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.z6ae71match-teams .z6ae71team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
    white-space: normal;
}

.z6ae71team-logo {
    font-size: 1.5rem;
}

.z6ae71team-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    word-break: break-word;
    line-height: 1.2;
}

.z6ae71team-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent);
}

.z6ae71match-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding: 0.5rem;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.z6ae71stat-item {
    text-align: center;
    min-width: 0;
}

.z6ae71stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--c-muted);
}

.z6ae71stat-value {
    font-size: 0.8rem;
    font-weight: 600;
}

.z6ae71match-preview {
    font-size: 0.82rem;
    color: var(--c-muted);
    text-align: center;
    line-height: 1.4;
}

.z6ae71match-quality,
.z6ae71upcoming-quality {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    padding-top: 0.35rem;
}

.z6ae71quality-tag {
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    font-weight: 500;
    white-space: nowrap;
}

/* ===== 开赛提醒 ===== */
.z6ae71upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.z6ae71upcoming-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s;
}

.z6ae71upcoming-card:hover {
    box-shadow: var(--shadow-hover);
}

.z6ae71upcoming-card.z6ae71featured {
    grid-column: span 1;
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-color: transparent;
    color: #fff;
}

.z6ae71upcoming-status {
    position: absolute;
    top: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.55rem;
    border-radius: 12px;
    background: var(--c-upcoming);
    color: #1a2b36;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

.z6ae71upcoming-content {
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.z6ae71upcoming-match-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.z6ae71upcoming-card.z6ae71featured .z6ae71match-time,
.z6ae71upcoming-card.z6ae71featured .z6ae71match-type {
    color: rgba(255, 255, 255, 0.9);
}

.z6ae71upcoming-card.z6ae71featured .z6ae71match-type {
    background: rgba(255, 255, 255, 0.12);
    border-color: transparent;
}

.z6ae71upcoming-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.z6ae71upcoming-teams .z6ae71team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    white-space: normal;
}

.z6ae71upcoming-preview {
    font-size: 0.82rem;
    color: var(--c-muted);
    text-align: center;
    line-height: 1.4;
}

.z6ae71upcoming-card.z6ae71featured .z6ae71upcoming-preview {
    color: rgba(255, 255, 255, 0.8);
}

.z6ae71upcoming-card.z6ae71featured .z6ae71quality-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ===== 行业动态 ===== */
.z6ae71news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.z6ae71news-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s;
}

.z6ae71news-card:hover {
    box-shadow: var(--shadow-hover);
}

.z6ae71news-card.z6ae71featured {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-color: transparent;
    color: #fff;
}

.z6ae71news-content {
    padding: 1.15rem;
}

.z6ae71news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--c-muted);
    margin-bottom: 0.5rem;
}

.z6ae71news-card.z6ae71featured .z6ae71news-meta {
    color: rgba(255, 255, 255, 0.7);
}

.z6ae71news-time {
    color: var(--c-accent);
}

.z6ae71news-card.z6ae71featured .z6ae71news-time {
    color: #ffc9bb;
}

.z6ae71news-card h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.z6ae71news-card.z6ae71featured h3 {
    color: #fff;
    font-size: 1.1rem;
}

.z6ae71news-excerpt {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 0.65rem;
}

.z6ae71news-card.z6ae71featured .z6ae71news-excerpt {
    color: rgba(255, 255, 255, 0.85);
}

.z6ae71news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.z6ae71news-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: var(--c-surface);
    color: var(--c-primary);
    border: 1px solid var(--c-border);
}

.z6ae71news-card.z6ae71featured .z6ae71news-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== 技术统计 ===== */
.z6ae71stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.z6ae71stats-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
}

.z6ae71stats-card.z6ae71featured {
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-color: transparent;
    color: #fff;
}

.z6ae71stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-surface);
}

.z6ae71stats-card.z6ae71featured .z6ae71stats-card-header {
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.z6ae71stats-card-header h3 {
    font-size: 1rem;
    margin: 0;
}

.z6ae71stats-card.z6ae71featured .z6ae71stats-card-header h3 {
    color: #fff;
}

.z6ae71stats-period {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: var(--c-bg);
    color: var(--c-muted);
}

.z6ae71stats-card.z6ae71featured .z6ae71stats-period {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.z6ae71stats-list {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z6ae71stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    min-width: 0;
}

.z6ae71stats-card.z6ae71featured .z6ae71stats-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.z6ae71player-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    flex: 1;
}

.z6ae71rank {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.z6ae71stats-card.z6ae71featured .z6ae71rank {
    background: var(--c-accent);
    color: #fff;
}

.z6ae71player-details {
    min-width: 0;
}

.z6ae71player-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.z6ae71stats-card .z6ae71team-name {
    display: block;
    font-size: 0.75rem;
    color: var(--c-muted);
}

.z6ae71stats-card.z6ae71featured .z6ae71player-name {
    color: #fff;
}

.z6ae71stats-card.z6ae71featured .z6ae71team-name {
    color: rgba(255, 255, 255, 0.7);
}

.z6ae71stats-value {
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-accent);
}

.z6ae71stats-card.z6ae71featured .z6ae71stats-value {
    color: #ffc9bb;
}

/* ===== 深度阅读 ===== */
.z6ae71article-more {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--c-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.z6ae71article-more:hover {
    background: var(--c-primary-light);
}

.z6ae71article-home-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.z6ae71article-home-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.z6ae71article-home-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.z6ae71article-home-thumb {
    display: block;
    overflow: hidden;
}

.z6ae71article-home-thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.z6ae71article-home-body {
    padding: 0.75rem;
}

.z6ae71article-home-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: var(--c-muted);
    margin-bottom: 0.4rem;
}

.z6ae71article-home-body h3 {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z6ae71article-home-body h3 a {
    color: var(--c-text);
    text-decoration: none;
}

.z6ae71article-home-body h3 a:hover {
    color: var(--c-accent);
}

/* ===== 页脚 ===== */
.z6ae71footer {
    background: var(--c-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 0 1.5rem;
}

.z6ae71footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.z6ae71footer-section h3 {
    color: var(--c-accent);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.z6ae71footer-section p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
}

.z6ae71footer-section ul {
    list-style: none;
}

.z6ae71footer-section ul li {
    margin-bottom: 0.4rem;
}

.z6ae71footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
}

.z6ae71footer-section a:hover {
    color: #fff;
}

.z6ae71copyright {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.z6ae71copyright a {
    color: var(--c-accent);
    text-decoration: none;
}

.z6ae71sitemap-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 0.15rem;
}

.z6ae71sitemap-links a:hover {
    color: var(--c-accent);
}

/* ===== 内页通用 ===== */
.z6ae71page-banner {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    color: #fff;
    padding: 2rem 0 1.75rem;
}

.z6ae71page-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.35;
    word-break: break-word;
}

.z6ae71page-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    max-width: 720px;
}

.z6ae71breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.z6ae71breadcrumb a {
    color: #ffc9bb;
    text-decoration: none;
}

.z6ae71breadcrumb a:hover {
    text-decoration: underline;
}

.z6ae71breadcrumb span {
    margin: 0 0.3rem;
}

.z6ae71inner-main {
    padding: 2rem 0 3rem;
}

.z6ae71inner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.5rem;
    align-items: start;
}

.z6ae71inner-content {
    min-width: 0;
}

.z6ae71article-panel,
.z6ae71list-panel,
.z6ae71related-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.z6ae71article-header h1 {
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 0.85rem;
    color: var(--c-primary);
    word-break: break-word;
}

.z6ae71article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--c-muted);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--c-border);
}

.z6ae71article-meta a {
    color: var(--c-accent);
    text-decoration: none;
}

.z6ae71article-cover {
    margin: 1rem 0;
}

.z6ae71thumb-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.z6ae71article-content {
    line-height: 1.8;
    color: var(--c-text);
    font-size: 0.95rem;
    word-break: break-word;
}

.z6ae71article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 0.75rem 0;
    border: 1px solid var(--c-border);
}

.z6ae71article-gallery-item {
    margin: 1rem 0;
    text-align: center;
}

.z6ae71article-gallery-item img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.z6ae71article-gallery-item figcaption {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin-top: 0.4rem;
}

.z6ae71diyfield {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--c-border);
}

.z6ae71meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.z6ae71tagitem a {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--c-muted);
    text-decoration: none;
}

.z6ae71tagitem a:hover {
    background: var(--c-accent-soft);
    color: var(--c-accent);
    border-color: var(--c-accent);
}

.z6ae71article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
}

.z6ae71prenext-item {
    flex: 1;
    font-size: 0.9rem;
    min-width: 0;
    word-break: break-word;
}

.z6ae71prenext-next {
    text-align: right;
}

.z6ae71panel-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--c-accent);
    color: var(--c-primary);
}

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

.z6ae71related-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--c-border);
    min-width: 0;
}

.z6ae71related-item:last-child {
    border-bottom: none;
}

.z6ae71related-thumb {
    flex: 0 0 110px;
    display: block;
}

.z6ae71related-thumb img {
    width: 110px;
    height: 74px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.z6ae71related-body {
    flex: 1;
    min-width: 0;
}

.z6ae71related-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.z6ae71related-body h3 a {
    color: var(--c-text);
    text-decoration: none;
}

.z6ae71related-body h3 a:hover {
    color: var(--c-accent);
}

.z6ae71related-body p {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 列表页 ===== */
.z6ae71list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.z6ae71list-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-border);
    min-width: 0;
}

.z6ae71list-item:last-child {
    border-bottom: none;
}

.z6ae71list-thumb {
    flex: 0 0 160px;
    display: block;
}

.z6ae71list-thumb img {
    width: 160px;
    height: 106px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.z6ae71list-body {
    flex: 1;
    min-width: 0;
}

.z6ae71list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: var(--c-muted);
    margin-bottom: 0.4rem;
}

.z6ae71list-cat {
    color: var(--c-accent);
}

.z6ae71list-title {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.z6ae71list-title a {
    color: var(--c-text);
    text-decoration: none;
    word-break: break-word;
}

.z6ae71list-title a:hover {
    color: var(--c-accent);
}

.z6ae71list-intro {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z6ae71pagebar {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}

.z6ae71pagebar .pagelist,
.z6ae71pagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.z6ae71pagebar .pagelist li,
.z6ae71pagelist li {
    display: inline-flex;
    margin: 0;
}

.z6ae71pagebar .pagelist a,
.z6ae71pagebar .pagelist span,
.z6ae71pagelist a,
.z6ae71pagelist span {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    font-size: 0.85rem;
}

.z6ae71pagebar .pagelist a:hover,
.z6ae71pagelist a:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

.z6ae71pagebar .pagelist .thisclass,
.z6ae71pagebar .pagelist .thisclass a,
.z6ae71pagelist .thisclass,
.z6ae71pagelist .thisclass a {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    font-weight: 600;
}

/* ===== 侧栏 ===== */
.z6ae71sidebar {
    position: sticky;
    top: calc(var(--header-h) + 12px);
}

.z6ae71sidebar-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.15rem;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    overflow: hidden;
}

.z6ae71sidebar-title {
    font-size: 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid var(--c-accent);
    color: var(--c-primary);
}

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

.z6ae71sidebar-list li {
    margin-bottom: 0.4rem;
}

.z6ae71sidebar-list a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-word;
}

.z6ae71sidebar-list a:hover,
.z6ae71sidebar-list .z6ae71this a {
    color: var(--c-accent);
}

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

.z6ae71sidebar-article-item {
    display: flex;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--c-border);
    min-width: 0;
}

.z6ae71sidebar-article-item:last-child {
    border-bottom: none;
}

.z6ae71sidebar-thumb {
    flex: 0 0 68px;
    display: block;
}

.z6ae71sidebar-thumb img {
    width: 68px;
    height: 51px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--c-border);
}

.z6ae71sidebar-article-info {
    flex: 1;
    min-width: 0;
}

.z6ae71sidebar-article-info > a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.85rem;
    line-height: 1.35;
    color: var(--c-text);
    text-decoration: none;
    margin-bottom: 0.2rem;
}

.z6ae71sidebar-article-info > a:hover {
    color: var(--c-accent);
}

.z6ae71sidebar-date {
    font-size: 0.75rem;
    color: var(--c-muted);
}

/* ===== 网站地图 ===== */
.z6ae71sitemap-page .z6ae71inner-main {
    padding: 1.5rem 0;
}

.z6ae71sitemap-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.z6ae71sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1rem;
}

.z6ae71sitemap-articles {
    grid-template-columns: repeat(2, 1fr);
}

.z6ae71sitemap-list a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

.z6ae71sitemap-list a:hover {
    color: var(--c-accent);
}

/* ===== 导航高亮 ===== */
.z6ae71main-nav .z6ae71this a,
.z6ae71main-nav li.z6ae71this a {
    color: #fff;
    background: rgba(255, 107, 74, 0.35);
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
    .z6ae71live-hall-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z6ae71live-hall-card.z6ae71featured {
        grid-column: span 2;
    }

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

@media (max-width: 991px) {
    .z6ae71hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z6ae71hero-lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .z6ae71hero-actions,
    .z6ae71hero-metrics {
        justify-content: center;
    }

    .z6ae71featured-grid,
    .z6ae71upcoming-grid,
    .z6ae71stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z6ae71inner-layout {
        grid-template-columns: 1fr;
    }

    .z6ae71sidebar {
        position: static;
    }

    .z6ae71article-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z6ae71main-nav ul {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 60px;
    }

    .z6ae71header-inner {
        flex-wrap: wrap;
        padding: 0.5rem 0;
        min-height: auto;
    }

    .z6ae71logo {
        flex: 1;
        min-width: 0;
    }

    .z6ae71logo h1 {
        font-size: 1.1rem;
    }

    .z6ae71logo-tagline {
        white-space: normal;
    }

    .z6ae71btn-download-home {
        display: none;
    }

    .z6ae71menu-toggle {
        display: block;
        order: 3;
    }

    .z6ae71btn-download {
        order: 2;
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .z6ae71main-nav {
        display: none;
        order: 4;
        width: 100%;
        background: var(--c-primary-light);
        border-radius: var(--radius-sm);
        padding: 0.5rem;
    }

    .z6ae71main-nav.z6ae71active {
        display: block;
    }

    .z6ae71main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .z6ae71main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .z6ae71main-nav li:last-child {
        border-bottom: none;
    }

    .z6ae71main-nav a {
        display: block;
        padding: 0.65rem 0.75rem;
    }

    .z6ae71hero {
        padding: 2rem 0;
    }

    .z6ae71hero-img {
        max-height: 200px;
    }

    .z6ae71section {
        padding: 1.15rem;
    }

    .z6ae71section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .z6ae71tab-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .z6ae71live-hall-grid,
    .z6ae71featured-grid,
    .z6ae71upcoming-grid,
    .z6ae71stats-grid,
    .z6ae71news-grid {
        grid-template-columns: 1fr;
    }

    .z6ae71live-hall-card.z6ae71featured,
    .z6ae71news-card.z6ae71featured {
        grid-column: span 1;
    }

    .z6ae71match-teams,
    .z6ae71upcoming-teams {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .z6ae71match-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .z6ae71article-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z6ae71list-item {
        flex-direction: column;
    }

    .z6ae71list-thumb {
        flex: none;
        width: 100%;
    }

    .z6ae71list-thumb img {
        width: 100%;
        height: auto;
        max-height: 200px;
    }

    .z6ae71related-item {
        flex-direction: column;
    }

    .z6ae71related-thumb {
        flex: none;
    }

    .z6ae71related-thumb img {
        width: 100%;
        height: auto;
        max-height: 180px;
    }

    .z6ae71article-nav {
        flex-direction: column;
    }

    .z6ae71prenext-next {
        text-align: left;
    }

    .z6ae71sitemap-list,
    .z6ae71sitemap-articles {
        grid-template-columns: 1fr;
    }

    .z6ae71footer-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .z6ae71container {
        padding: 0 14px;
    }

    .z6ae71hero-metrics {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .z6ae71article-home-grid {
        grid-template-columns: 1fr;
    }

    .z6ae71article-home-thumb img {
        height: 140px;
    }

    .z6ae71match-teams {
        gap: 0.35rem;
    }

    .z6ae71team-name {
        font-size: 0.8rem;
    }

    .z6ae71load-more {
        width: 100%;
    }
}

@media (hover: none) {
    .z6ae71live-hall-card:hover,
    .z6ae71featured-card:hover,
    .z6ae71upcoming-card:hover,
    .z6ae71news-card:hover,
    .z6ae71article-home-card:hover {
        transform: none;
    }
}

/* 兼容旧类名 */
.z6ae71banner,
.z6ae71banner-content,
.z6ae71banner-text,
.z6ae71banner-image,
.z6ae71banner-img,
.z6ae71banner-features,
.z6ae71banner-stats,
.z6ae71feature,
.z6ae71stat-item,
.z6ae71stat-number,
.z6ae71stat-label,
.z6ae71live-hall-header,
.z6ae71live-hall-nav,
.z6ae71live-hall-footer,
.z6ae71featured-header,
.z6ae71featured-nav,
.z6ae71featured-footer,
.z6ae71upcoming-header,
.z6ae71upcoming-nav,
.z6ae71upcoming-footer,
.z6ae71news-header,
.z6ae71news-nav,
.z6ae71news-footer,
.z6ae71stats-header,
.z6ae71stats-nav,
.z6ae71stats-footer,
.z6ae71article-home-header,
.z6ae71match-info,
.z6ae71info-item,
.z6ae71info-label,
.z6ae71info-value {
    /* 保留空规则避免 CMS 动态插入旧结构时报错 */
}
