/* 深紫罗兰 + 电光青 + 琥珀金 — 全新官网配色 */
:root {
    --primary: #3B185F;
    --primary-dark: #2A1145;
    --accent: #06B6D4;
    --accent-warm: #F59E0B;
    --bg: #F8F7FC;
    --bg-alt: #EFECF8;
    --surface: #FFFFFF;
    --border: #DDD6F3;
    --text: #2D2640;
    --text-muted: #6B6280;
    --live: #E11D48;
    --upcoming: #D97706;
    --replay: #64748B;
    --radius: 8px;
    --radius-lg: 12px;
    --header-h: 60px;
    --container: 1160px;
    --line: 1px solid var(--border);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary);
}

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

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

/* ===== 顶栏：深色官方风 ===== */
.z09092header {
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
}

.z09092header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--header-h);
    position: relative;
}

.z09092logo {
    flex-shrink: 0;
    min-width: 0;
}

.z09092logo h1 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.z09092logo h1 a {
    color: #fff;
}

.z09092logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1px;
}

.z09092main-nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-wrap: wrap;
}

.z09092main-nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.z09092main-nav a:hover,
.z09092main-nav .z09092this a,
.z09092main-nav li.z09092this a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
}

.z09092menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.z09092menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
}

.z09092menu-toggle.z09092active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.z09092menu-toggle.z09092active span:nth-child(2) {
    opacity: 0;
}

.z09092menu-toggle.z09092active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== 首屏：左文右图 ===== */
.z09092banner {
    background: var(--surface);
    border-bottom: var(--line);
    padding: 1.5rem 0 2rem;
}

.z09092banner-layout {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 360px);
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border: var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--bg-alt) 0%, var(--surface) 100%);
}

.z09092banner-text {
    min-width: 0;
}

.z09092banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.z09092banner-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.z09092banner-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.z09092banner-text h2 {
    font-size: 1.65rem;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
}

.z09092banner-lead {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.z09092banner-text > p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.z09092banner-text strong {
    color: var(--primary);
}

.z09092banner-points {
    list-style: none;
    margin-bottom: 1rem;
}

.z09092banner-points li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0 0.3rem 1rem;
    position: relative;
}

.z09092banner-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    background: var(--accent-warm);
    border-radius: 50%;
}

.z09092banner-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.z09092chip {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    background: var(--bg-alt);
    border: var(--line);
    border-radius: 4px;
    color: var(--primary);
}

/* ===== 观赛百科 ===== */
.z09092knowledge-strip {
    margin-bottom: 1.5rem;
    padding: 1.35rem;
    background: var(--surface);
    border: var(--line);
    border-radius: var(--radius-lg);
}

.z09092strip-head {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: var(--line);
}

.z09092strip-head h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
    border: none;
    padding: 0;
}

.z09092strip-head p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.z09092knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.z09092knowledge-item {
    padding: 1rem;
    background: var(--bg);
    border: var(--line);
    border-radius: var(--radius);
    min-width: 0;
}

.z09092knowledge-wide {
    grid-column: 1 / -1;
}

.z09092knowledge-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-warm);
    margin-bottom: 0.4rem;
}

.z09092knowledge-item h3 {
    font-size: 0.92rem;
    color: var(--primary);
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.z09092knowledge-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== 通用板块 ===== */
.z09092main-content {
    padding: 0 0 2.5rem;
}

.z09092block {
    margin-bottom: 1.25rem;
    padding: 1.35rem;
    background: var(--surface);
    border: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.z09092block-alt {
    background: var(--bg-alt);
}

.z09092block-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.85rem;
    border-bottom: var(--line);
}

.z09092block-title h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
    border: none;
    padding: 0;
}

.z09092block-title p {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 480px;
}

.z09092block-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.z09092nav-btn {
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
    border: var(--line);
    border-radius: 20px;
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.z09092block-alt .z09092nav-btn {
    background: var(--surface);
}

.z09092nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.z09092nav-btn.z09092active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.z09092block-foot {
    text-align: center;
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: var(--line);
}

.z09092load-more {
    padding: 0.55rem 1.5rem;
    background: var(--accent-warm);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.z09092load-more:hover {
    opacity: 0.9;
}

/* 直播中心：左大右小 */
.z09092live-hall-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.z09092live-hall-card {
    position: relative;
    background: var(--bg);
    border: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 0;
}

.z09092live-hall-card.z09092featured {
    grid-row: span 2;
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-color: var(--primary);
}

.z09092live-status {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    background: var(--live);
    color: #fff;
    z-index: 1;
}

.z09092live-status.z09092upcoming {
    background: var(--upcoming);
}

.z09092live-status.z09092replay {
    background: var(--replay);
}

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

.z09092live-hall-icon {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.z09092live-hall-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: var(--primary);
    word-break: break-word;
}

.z09092live-hall-card.z09092featured h3,
.z09092live-hall-card.z09092featured .z09092vs,
.z09092live-hall-card.z09092featured .z09092label {
    color: rgba(255, 255, 255, 0.7);
}

.z09092live-hall-card.z09092featured h3,
.z09092live-hall-card.z09092featured .z09092value,
.z09092live-hall-card.z09092featured .z09092quality {
    color: #fff;
}

.z09092live-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    font-weight: 600;
    font-size: 0.88rem;
    flex-wrap: wrap;
}

.z09092team {
    min-width: 0;
    word-break: break-word;
    text-align: center;
}

.z09092vs {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.z09092live-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
}

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

.z09092live-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding-top: 0.5rem;
    border-top: var(--line);
}

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

.z09092stat {
    text-align: center;
}

.z09092label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.z09092value {
    font-weight: 700;
    font-size: 0.85rem;
}

/* 焦点对阵 */
.z09092featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.z09092featured-card {
    position: relative;
    background: var(--bg);
    border: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 0;
}

.z09092match-status {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    z-index: 1;
}

.z09092match-status.z09092live {
    background: var(--live);
    color: #fff;
}

.z09092match-status.z09092upcoming {
    background: var(--upcoming);
    color: #fff;
}

.z09092match-content {
    padding: 1rem;
    padding-top: 1.85rem;
}

.z09092match-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}

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

.z09092match-type {
    font-size: 0.72rem;
    padding: 0.15rem 0.45rem;
    background: var(--surface);
    border: var(--line);
    border-radius: 3px;
    color: var(--text-muted);
}

.z09092match-teams,
.z09092upcoming-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.z09092match-teams .z09092team {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.z09092team-logo {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

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

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

.z09092match-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin: 0.55rem 0;
}

.z09092stat-item {
    text-align: center;
    padding: 0.35rem 0.25rem;
    background: var(--surface);
    border: var(--line);
    border-radius: 4px;
    font-size: 0.78rem;
    min-width: 0;
}

.z09092stat-label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.z09092match-preview,
.z09092upcoming-preview {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0.4rem 0;
}

.z09092match-quality,
.z09092upcoming-quality {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.z09092quality-tag {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
    background: rgba(6, 182, 212, 0.12);
    color: #0E7490;
    border-radius: 3px;
    border: 1px solid rgba(6, 182, 212, 0.25);
}

/* 赛事日历：列表式 */
.z09092upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.z09092upcoming-row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border: var(--line);
    border-radius: var(--radius);
    min-width: 0;
}

.z09092block-alt .z09092upcoming-row {
    background: var(--surface);
}

.z09092upcoming-row.z09092featured {
    border-left: 3px solid var(--accent);
}

.z09092upcoming-time-col {
    text-align: center;
    flex-shrink: 0;
}

.z09092upcoming-time-col .z09092match-time {
    display: block;
    font-size: 1rem;
}

.z09092upcoming-time-col .z09092match-type {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
}

.z09092upcoming-main {
    min-width: 0;
}

.z09092upcoming-teams {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.z09092upcoming-status {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: var(--upcoming);
    color: #fff;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 资讯 */
.z09092news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.z09092news-card {
    border: var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    overflow: hidden;
    min-width: 0;
}

.z09092news-card.z09092featured {
    grid-column: 1 / -1;
    border-left: 3px solid var(--accent-warm);
}

.z09092news-content {
    padding: 1rem;
}

.z09092news-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.z09092news-card h3 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.z09092news-excerpt {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 榜单 */
.z09092stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.z09092stats-card {
    border: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    min-width: 0;
}

.z09092block-alt .z09092stats-card {
    background: var(--surface);
}

.z09092stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: var(--primary);
    color: #fff;
}

.z09092stats-card-header h3 {
    font-size: 0.88rem;
}

.z09092stats-period {
    font-size: 0.72rem;
    opacity: 0.8;
}

.z09092stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-bottom: var(--line);
    gap: 0.5rem;
    min-width: 0;
}

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

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

.z09092rank {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-warm);
    color: #fff;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.z09092stats-card .z09092team-name {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.z09092stats-value {
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

/* 原创文章 */
.z09092article-home-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.85rem;
    border-bottom: var(--line);
}

.z09092article-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.4rem 0.85rem;
    border: var(--line);
    border-radius: 6px;
    white-space: nowrap;
}

.z09092article-more:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

.z09092article-home-card {
    border: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    min-width: 0;
}

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

.z09092article-home-body {
    padding: 0.65rem;
}

.z09092article-home-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    gap: 0.2rem;
}

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

.z09092article-home-body h3 a {
    color: var(--primary);
}

/* ===== 页脚 ===== */
.z09092footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0.5rem;
}

.z09092footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.z09092footer-section h3 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.z09092footer-section p,
.z09092footer-section li {
    font-size: 0.85rem;
    line-height: 1.65;
}

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

.z09092footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.z09092footer-section a:hover {
    color: var(--accent);
}

.z09092copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.z09092copyright a {
    color: var(--accent);
}

.z09092sitemap-links a {
    color: rgba(255, 255, 255, 0.55);
}

/* ===== 内页 ===== */
.z09092page-banner {
    background: linear-gradient(125deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 1.75rem 0 1.5rem;
    border-bottom: 2px solid var(--accent);
}

.z09092page-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: #fff;
    word-break: break-word;
}

.z09092page-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    max-width: 680px;
    margin-bottom: 0.5rem;
}

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

.z09092breadcrumb a {
    color: var(--accent);
}

.z09092breadcrumb span {
    margin: 0 0.3rem;
}

.z09092inner-main {
    padding: 1.75rem 0 2.5rem;
}

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

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

.z09092article-panel,
.z09092list-panel,
.z09092related-panel {
    background: var(--surface);
    border: var(--line);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    margin-bottom: 1.15rem;
    overflow: hidden;
}

.z09092article-header h1 {
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--primary);
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.z09092article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-bottom: 0.85rem;
    border-bottom: var(--line);
}

.z09092article-meta a {
    color: var(--accent);
}

.z09092thumb-cover {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    border: var(--line);
    margin: 0.85rem 0;
}

.z09092article-content {
    line-height: 1.75;
    font-size: 0.95rem;
    word-break: break-word;
}

.z09092article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

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

.z09092diyfield {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
}

.z09092meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin-top: 1rem;
}

.z09092tagitem a {
    padding: 0.2rem 0.65rem;
    background: var(--bg-alt);
    border: var(--line);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.z09092article-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 1rem 1.35rem;
    background: var(--surface);
    border: var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 1.15rem;
}

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

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

.z09092panel-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.85rem;
    padding-left: 10px;
    border-left: 3px solid var(--accent-warm);
}

.z09092related-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: var(--line);
    min-width: 0;
}

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

.z09092related-thumb {
    flex: 0 0 100px;
}

.z09092related-thumb img {
    width: 100px;
    height: 68px;
    object-fit: cover;
    border-radius: var(--radius);
    border: var(--line);
}

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

.z09092related-body h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.z09092related-body h3 a {
    color: var(--primary);
}

.z09092related-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* 列表 */
.z09092list-items {
    list-style: none;
}

.z09092list-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: var(--line);
    min-width: 0;
}

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

.z09092list-thumb {
    flex: 0 0 150px;
}

.z09092list-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    border: var(--line);
}

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

.z09092list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

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

.z09092list-title {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.z09092list-title a {
    color: var(--primary);
}

.z09092list-intro {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.z09092pagebar {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: var(--line);
}

.z09092pagebar .pagelist,
.z09092pagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
}

.z09092pagebar .pagelist a,
.z09092pagebar .pagelist span,
.z09092pagelist a,
.z09092pagelist span {
    padding: 0.35rem 0.75rem;
    border: var(--line);
    border-radius: 4px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
}

.z09092pagebar .pagelist a:hover,
.z09092pagelist a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.z09092pagebar .pagelist .thisclass,
.z09092pagebar .pagelist .thisclass a,
.z09092pagelist .thisclass,
.z09092pagelist .thisclass a {
    background: var(--accent-warm);
    color: #fff;
    border-color: var(--accent-warm);
}

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

.z09092sidebar-block {
    background: var(--surface);
    border: var(--line);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.z09092sidebar-title {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
    padding-left: 8px;
    border-left: 3px solid var(--accent);
}

.z09092sidebar-list {
    list-style: none;
}

.z09092sidebar-list li {
    margin-bottom: 0.35rem;
}

.z09092sidebar-list a {
    font-size: 0.88rem;
    color: var(--text);
}

.z09092sidebar-list a:hover,
.z09092sidebar-list .z09092this a {
    color: var(--accent);
}

.z09092sidebar-article-item {
    display: flex;
    gap: 0.55rem;
    padding: 0.5rem 0;
    border-bottom: var(--line);
    min-width: 0;
}

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

.z09092sidebar-thumb {
    flex: 0 0 64px;
}

.z09092sidebar-thumb img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: var(--line);
}

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

.z09092sidebar-article-info > a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.35;
}

.z09092sidebar-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* 网站地图 */
.z09092sitemap-title {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding-left: 8px;
    border-left: 3px solid var(--accent-warm);
}

.z09092sitemap-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem 1rem;
}

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

.z09092sitemap-list a {
    font-size: 0.88rem;
    color: var(--text);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .z09092live-hall-grid {
        grid-template-columns: 1fr 1fr;
    }

    .z09092live-hall-card.z09092featured {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 991px) {
    .z09092menu-toggle {
        display: flex;
    }

    .z09092main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .z09092main-nav.z09092active {
        display: block;
    }

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

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

    .z09092main-nav a {
        display: block;
        padding: 0.7rem 0.85rem;
    }

    .z09092banner-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .z09092banner-visual {
        order: 2;
    }

    .z09092banner-text {
        order: 1;
    }

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

    .z09092knowledge-wide {
        grid-column: 1 / -1;
    }

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

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

    .z09092sidebar {
        position: static;
    }

    .z09092block-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .z09092block-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 52px;
    }

    .z09092container {
        padding: 0 14px;
    }

    .z09092block {
        padding: 1rem;
    }

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

    .z09092live-hall-grid,
    .z09092featured-grid,
    .z09092stats-grid,
    .z09092news-grid,
    .z09092article-home-grid {
        grid-template-columns: 1fr;
    }

    .z09092live-hall-card.z09092featured {
        grid-column: span 1;
    }

    .z09092news-card.z09092featured {
        grid-column: span 1;
    }

    .z09092match-stats {
        grid-template-columns: 1fr;
    }

    .z09092upcoming-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }

    .z09092upcoming-time-col {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
    }

    .z09092upcoming-status {
        justify-self: start;
    }

    .z09092match-teams {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

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

    .z09092related-thumb {
        flex: none;
    }

    .z09092related-thumb img {
        width: 100%;
        max-height: 160px;
        height: auto;
    }

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

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

    .z09092load-more {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .z09092logo h1 {
        font-size: 1rem;
    }

    .z09092banner-layout {
        padding: 1rem;
    }

    .z09092banner-text h2 {
        font-size: 1.3rem;
    }

    .z09092article-home-thumb img {
        height: 130px;
    }
}

@media (hover: none) {
    .z09092live-hall-card:hover,
    .z09092featured-card:hover,
    .z09092article-home-card:hover {
        transform: none;
    }
}
