/* 深紫罗兰 + 电光青 + 琥珀金 — 全新官网配色 */
: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);
}

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

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

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

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

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

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

.z5860alogo h1 a {
    color: #fff;
}

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

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

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

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

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

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

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

.z5860amenu-toggle.z5860aactive span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z5860ablock-alt .z5860anav-btn {
    background: var(--surface);
}

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

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

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

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

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

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

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

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

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

.z5860alive-status.z5860aupcoming {
    background: var(--upcoming);
}

.z5860alive-status.z5860areplay {
    background: var(--replay);
}

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

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

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

.z5860alive-hall-card.z5860afeatured h3,
.z5860alive-hall-card.z5860afeatured .z5860avs,
.z5860alive-hall-card.z5860afeatured .z5860alabel {
    color: rgba(255, 255, 255, 0.7);
}

.z5860alive-hall-card.z5860afeatured h3,
.z5860alive-hall-card.z5860afeatured .z5860avalue,
.z5860alive-hall-card.z5860afeatured .z5860aquality {
    color: #fff;
}

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

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

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

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

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

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

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

.z5860astat {
    text-align: center;
}

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

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

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

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

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

.z5860amatch-status.z5860alive {
    background: var(--live);
    color: #fff;
}

.z5860amatch-status.z5860aupcoming {
    background: var(--upcoming);
    color: #fff;
}

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

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

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

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

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

.z5860amatch-teams .z5860ateam {
    flex: 1;
    text-align: center;
    min-width: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.z5860ablock-alt .z5860aupcoming-row {
    background: var(--surface);
}

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

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

.z5860aupcoming-time-col .z5860amatch-time {
    display: block;
    font-size: 1rem;
}

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

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

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

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

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

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

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

.z5860anews-content {
    padding: 1rem;
}

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

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

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

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

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

.z5860ablock-alt .z5860astats-card {
    background: var(--surface);
}

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

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

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

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

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

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

.z5860arank {
    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;
}

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

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

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

/* 原创文章 */
.z5860aarticle-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== 内页 ===== */
.z5860apage-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);
}

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

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

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

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

.z5860abreadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z5860asidebar-list a:hover,
.z5860asidebar-list .z5860athis a {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

    .z5860alive-hall-card.z5860afeatured {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

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

    .z5860amain-nav.z5860aactive {
        display: block;
    }

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

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

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

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

    .z5860abanner-visual {
        order: 2;
    }

    .z5860abanner-text {
        order: 1;
    }

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

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

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

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

    .z5860asidebar {
        position: static;
    }

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

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

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

    .z5860acontainer {
        padding: 0 14px;
    }

    .z5860ablock {
        padding: 1rem;
    }

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

    .z5860alive-hall-grid,
    .z5860afeatured-grid,
    .z5860astats-grid,
    .z5860anews-grid,
    .z5860aarticle-home-grid {
        grid-template-columns: 1fr;
    }

    .z5860alive-hall-card.z5860afeatured {
        grid-column: span 1;
    }

    .z5860anews-card.z5860afeatured {
        grid-column: span 1;
    }

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

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

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

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

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

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

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

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

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

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

    .z5860arelated-thumb {
        flex: none;
    }

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

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

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

    .z5860aload-more {
        width: 100%;
    }

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

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

    .z5860abanner-layout {
        padding: 1rem;
    }

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

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

@media (hover: none) {
    .z5860alive-hall-card:hover,
    .z5860afeatured-card:hover,
    .z5860aarticle-home-card:hover {
        transform: none;
    }
}
