/* ===== 体育直播主题 · 靛蓝 + 琥珀金 ===== */
:root {
    --c-primary: #1e1b4b;
    --c-primary-mid: #312e81;
    --c-primary-light: #4338ca;
    --c-accent: #d97706;
    --c-accent-bright: #fbbf24;
    --c-accent-soft: #fef3c7;
    --c-bg: #f5f4fa;
    --c-bg-alt: #eeedf5;
    --c-surface: #ffffff;
    --c-text: #18181b;
    --c-muted: #64748b;
    --c-border: #ddd6e8;
    --c-radius: 12px;
    --c-radius-sm: 8px;
    --c-shadow: 0 1px 3px rgba(30, 27, 75, 0.06), 0 4px 16px rgba(30, 27, 75, 0.05);
    --c-header-h: 64px;
    --c-max: 1160px;
}

*, *::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.65;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--c-primary-light);
    text-decoration: none;
}

.z369dccontainer {
    max-width: var(--c-max);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* ===== 头部导航 ===== */
.z369dcheader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-surface);
    border-bottom: 2px solid var(--c-primary);
}

.z369dcheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--c-header-h);
}

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

.z369dclogo h1 a {
    color: var(--c-primary);
}

.z369dclogo-tagline {
    font-size: 0.72rem;
    color: var(--c-muted);
    margin-top: 2px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z369dcmain-nav ul {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    flex-wrap: wrap;
}

.z369dcmain-nav a {
    display: block;
    padding: 0.4rem 0.7rem;
    font-size: 0.86rem;
    color: var(--c-text);
    border-radius: var(--c-radius-sm);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.z369dcmain-nav a:hover,
.z369dcmain-nav .z369dcthis a {
    background: var(--c-accent-soft);
    color: var(--c-accent);
}

.z369dcmenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 7px;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    cursor: pointer;
    flex-shrink: 0;
}

.z369dcmenu-toggle span {
    display: block;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}

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

.z369dcmenu-toggle.z369dcactive span:nth-child(2) {
    opacity: 0;
}

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

/* ===== 首页 Hero ===== */
.z369dchero {
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: 2.75rem 0;
}

.z369dchero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.z369dchero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--c-accent);
    background: var(--c-accent-soft);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.85rem;
}

.z369dchero-text h2 {
    font-size: clamp(1.45rem, 3.2vw, 2.05rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-primary);
    margin-bottom: 0.85rem;
}

.z369dchero-desc {
    font-size: 0.92rem;
    color: var(--c-muted);
    margin-bottom: 1.1rem;
    max-width: 520px;
    line-height: 1.75;
}

.z369dchero-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
}

.z369dchero-features li {
    font-size: 0.82rem;
    color: var(--c-muted);
    padding-left: 0.85rem;
    position: relative;
}

.z369dchero-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
}

.z369dchero-features strong {
    color: var(--c-primary);
    font-weight: 600;
    margin-right: 0.15rem;
}

.z369dchero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.z369dcbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--c-radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

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

.z369dcbtn-outline {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-border);
}

.z369dcbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 27, 75, 0.12);
}

.z369dchero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.z369dchero-stat {
    flex: 1;
    min-width: 90px;
    max-width: 140px;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-bg);
}

.z369dchero-stat b {
    display: block;
    font-size: 1.15rem;
    color: var(--c-primary-light);
    margin-bottom: 0.15rem;
}

.z369dchero-stat span {
    font-size: 0.72rem;
    color: var(--c-muted);
}

.z369dchero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z369dchero-frame {
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1rem;
    background: var(--c-bg);
    box-shadow: var(--c-shadow);
    width: 100%;
    max-width: 380px;
}

.z369dchero-img {
    max-height: 260px;
    width: 100%;
    object-fit: contain;
}

.z369dchero-badge {
    position: absolute;
    bottom: 8%;
    right: 0;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(30, 27, 75, 0.2);
}

/* ===== 价值条 ===== */
.z369dcvalue-bar {
    background: var(--c-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.15rem 0;
}

.z369dcvalue-inner p {
    font-size: 0.88rem;
    line-height: 1.8;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.z369dcvalue-bar strong {
    color: var(--c-accent-bright);
    font-weight: 600;
}

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

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

.z369dcblock-alt {
    background: var(--c-bg-alt);
    border-color: #d8d2e4;
}

.z369dcblock-head {
    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: 1px solid var(--c-border);
}

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

.z369dcblock-title h2 {
    font-size: 1.25rem;
    color: var(--c-primary);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.z369dcblock-title p {
    font-size: 0.82rem;
    color: var(--c-muted);
}

.z369dcfilter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

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

.z369dcblock-alt .z369dcfilter-btn {
    background: var(--c-surface);
}

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

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

/* ===== Bento 直播频道 ===== */
.z369dcbento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 0.85rem;
}

.z369dcbento-item {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-bg);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
    min-height: 130px;
    transition: border-color 0.2s;
}

.z369dcbento-item:hover {
    border-color: var(--c-primary-light);
}

.z369dcbento-main {
    grid-row: 1 / 3;
    grid-column: 1;
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-mid) 100%);
    color: #fff;
    border-color: transparent;
    min-height: auto;
}

.z369dcbento-main h3,
.z369dcbento-main .z369dcbento-tip,
.z369dcbento-main .z369dcbento-foot {
    color: rgba(255, 255, 255, 0.92);
}

.z369dcbento-main .z369dcvs em {
    color: rgba(255, 255, 255, 0.55);
}

.z369dcstatus {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
}

.z369dcstatus-live {
    background: var(--c-accent);
    color: #fff;
}

.z369dcstatus-wait {
    background: var(--c-accent-bright);
    color: var(--c-primary);
}

.z369dcstatus-replay {
    background: var(--c-muted);
    color: #fff;
}

.z369dcbento-item h3 {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.z369dcvs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.86rem;
}

.z369dcvs em {
    font-style: normal;
    font-size: 0.72rem;
    color: var(--c-muted);
    flex-shrink: 0;
}

.z369dcbento-tip {
    font-size: 0.76rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.z369dcbento-foot {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: var(--c-muted);
    margin-top: auto;
    padding-top: 0.25rem;
}

/* ===== 热门赛事行 ===== */
.z369dcmatch-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.z369dcmatch-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    border-left: 3px solid var(--c-primary-light);
    min-width: 0;
    transition: border-color 0.2s;
}

.z369dcblock-alt .z369dcmatch-row {
    background: var(--c-surface);
}

.z369dcmatch-row:hover {
    border-left-color: var(--c-accent);
}

.z369dcmatch-time time {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-primary-light);
}

.z369dcmatch-time small {
    font-size: 0.72rem;
    color: var(--c-muted);
}

.z369dcmatch-info {
    min-width: 0;
}

.z369dcmatch-teams {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.z369dcmatch-teams em {
    font-style: normal;
    font-size: 0.75rem;
    color: var(--c-muted);
}

.z369dcmatch-teams b {
    color: var(--c-accent);
    margin-left: 0.2rem;
}

.z369dcmatch-info p {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.55;
}

.z369dcmatch-tags {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.z369dcmatch-tags span {
    font-size: 0.7rem;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    white-space: nowrap;
}

/* ===== 赛程预告 ===== */
.z369dcschedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.z369dcschedule-card {
    padding: 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-bg);
    min-width: 0;
    transition: border-color 0.2s;
}

.z369dcschedule-card:hover {
    border-color: var(--c-primary-light);
}

.z369dcschedule-card time {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-accent);
    background: var(--c-accent-soft);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.45rem;
}

.z369dcschedule-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
    color: var(--c-primary);
}

.z369dcschedule-card p {
    font-size: 0.8rem;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== 最新动态 ===== */
.z369dcnews-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0.85rem;
}

.z369dcnews-feature {
    padding: 1.15rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
}

.z369dcnews-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.18rem 0.5rem;
    background: var(--c-primary);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.z369dcnews-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    line-height: 1.4;
    color: var(--c-primary);
}

.z369dcnews-feature > p {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

.z369dcnews-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.76rem;
    color: var(--c-muted);
}

.z369dcnews-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.z369dcnews-item {
    padding: 0.85rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
}

.z369dcnews-item h4 {
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
    color: var(--c-text);
}

.z369dcnews-item p {
    font-size: 0.78rem;
    color: var(--c-muted);
    line-height: 1.55;
}

/* ===== 球员数据 ===== */
.z369dcrank-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

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

.z369dcrank-col h3 {
    font-size: 0.88rem;
    padding: 0.65rem 0.85rem;
    background: var(--c-primary);
    color: #fff;
}

.z369dcrank-col ol {
    list-style: none;
    padding: 0.35rem;
}

.z369dcrank-col li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.4rem;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.82rem;
    min-width: 0;
}

.z369dcrank-col li:last-child {
    border-bottom: none;
}

.z369dcrank-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
}

.z369dcrank-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z369dcrank-col li strong {
    flex-shrink: 0;
    color: var(--c-primary-light);
    font-weight: 700;
}

/* ===== 观赛百科 ===== */
.z369dcguide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.z369dcguide-item {
    padding: 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
}

.z369dcguide-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 0.4rem;
}

.z369dcguide-item h3 {
    font-size: 0.9rem;
    color: var(--c-primary);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

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

/* ===== 深度阅读 ===== */
.z369dcmore-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--c-primary-light);
    border-radius: var(--c-radius-sm);
    color: var(--c-primary-light);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.z369dcmore-link:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

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

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

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

.z369dcarticle-thumb {
    display: block;
    overflow: hidden;
}

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

.z369dcarticle-body {
    padding: 0.65rem 0.7rem;
}

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

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

.z369dcarticle-body h3 a {
    color: var(--c-text);
}

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

/* ===== 页脚 ===== */
.z369dcfooter {
    background: var(--c-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 2.25rem 0 1.25rem;
    margin-top: 0.5rem;
}

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

.z369dcfooter-section h3 {
    color: var(--c-accent-bright);
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}

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

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

.z369dcfooter-section a {
    color: rgba(255, 255, 255, 0.78);
}

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

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

.z369dccopyright a {
    color: var(--c-accent-bright);
}

.z369dcsitemap-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.15rem;
}

.z369dcsitemap-links a:hover {
    color: #fff;
}

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

.z369dcpage-title {
    font-size: 1.4rem;
    margin-bottom: 0.45rem;
    color: #fff;
}

.z369dcpage-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
    max-width: 720px;
    line-height: 1.65;
}

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

.z369dcbreadcrumb a {
    color: var(--c-accent-bright);
}

.z369dcbreadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

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

.z369dcarticle-header h1 {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    color: var(--c-primary);
}

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

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

.z369dcarticle-cover {
    margin: 0.85rem 0;
}

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

.z369dcarticle-content {
    line-height: 1.85;
    font-size: 0.93rem;
    color: var(--c-text);
    word-break: break-word;
}

.z369dcarticle-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--c-radius-sm);
    margin: 0.65rem 0;
}

.z369dcarticle-gallery-item {
    margin: 0.85rem 0;
    text-align: center;
}

.z369dcarticle-gallery-item figcaption {
    font-size: 0.8rem;
    color: var(--c-muted);
    margin-top: 0.35rem;
}

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

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

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

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

.z369dcarticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

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

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

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

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

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

.z369dcrelated-thumb {
    flex: 0 0 100px;
    min-width: 0;
}

.z369dcrelated-thumb img {
    width: 100px;
    height: 68px;
    object-fit: cover;
    border-radius: var(--c-radius-sm);
    border: 1px solid var(--c-border);
}

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

.z369dcrelated-body h3 {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.z369dcrelated-body h3 a {
    color: var(--c-text);
}

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

.z369dcrelated-body p {
    font-size: 0.82rem;
    color: var(--c-muted);
}

/* ===== 列表页 ===== */
.z369dclist-items {
    list-style: none;
}

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

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

.z369dclist-thumb {
    flex: 0 0 150px;
    min-width: 0;
}

.z369dclist-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--c-radius-sm);
    border: 1px solid var(--c-border);
}

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

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

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

.z369dclist-title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.z369dclist-title a {
    color: var(--c-text);
}

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

.z369dclist-intro {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.6;
}

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

.z369dcpagebar .pagelist,
.z369dcpagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
}

.z369dcpagebar .pagelist a,
.z369dcpagebar .pagelist span,
.z369dcpagelist a,
.z369dcpagelist span {
    display: inline-block;
    padding: 0.38rem 0.7rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    font-size: 0.82rem;
    color: var(--c-text);
    background: var(--c-bg);
}

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

.z369dcpagebar .pagelist .thisclass a,
.z369dcpagelist .thisclass a {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}

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

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

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

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

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

.z369dcsidebar-list a {
    font-size: 0.85rem;
    color: var(--c-text);
}

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

.z369dcsidebar-articles {
    list-style: none;
}

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

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

.z369dcsidebar-thumb {
    flex: 0 0 64px;
    min-width: 0;
}

.z369dcsidebar-thumb img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--c-border);
}

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

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

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

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

/* ===== 站点地图 ===== */
.z369dcsitemap-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1.25rem;
    box-shadow: var(--c-shadow);
}

.z369dcsitemap-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.35rem 1rem;
}

.z369dcsitemap-list a {
    font-size: 0.85rem;
    color: var(--c-text);
    display: block;
    padding: 0.3rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

/* ===== 锚点偏移 ===== */
section[id] {
    scroll-margin-top: calc(var(--c-header-h) + 10px);
}

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

    .z369dcbento-main {
        grid-row: auto;
        grid-column: 1 / -1;
    }

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

@media (max-width: 991px) {
    .z369dchero-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .z369dchero-media {
        order: -1;
    }

    .z369dchero-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    .z369dchero-badge {
        right: calc(50% - 160px);
    }

    .z369dchero-stat {
        max-width: none;
    }

    .z369dcnews-wrap {
        grid-template-columns: 1fr;
    }

    .z369dcrank-board,
    .z369dcguide-grid {
        grid-template-columns: 1fr;
    }

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

    .z369dcmatch-row {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .z369dcmatch-tags {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        margin-top: 0.25rem;
    }

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

    .z369dcsidebar {
        position: static;
    }

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

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

    .z369dcheader-inner {
        flex-wrap: wrap;
        position: relative;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .z369dclogo-tagline {
        max-width: 180px;
    }

    .z369dcmain-nav {
        display: none;
        width: 100%;
        order: 10;
        background: var(--c-bg);
        border: 1px solid var(--c-border);
        border-radius: var(--c-radius-sm);
        padding: 0.45rem;
        margin-top: 0.45rem;
    }

    .z369dcmain-nav.z369dcactive {
        display: block;
    }

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

    .z369dcmain-nav a {
        padding: 0.6rem 0.7rem;
    }

    .z369dchero {
        padding: 1.5rem 0;
    }

    .z369dchero-features {
        flex-direction: column;
        gap: 0.4rem;
    }

    .z369dchero-stats {
        width: 100%;
    }

    .z369dchero-stat {
        flex: 1 1 calc(33.33% - 0.5rem);
        min-width: 80px;
    }

    .z369dchero-badge {
        right: 5%;
        bottom: 5%;
    }

    .z369dcblock {
        padding: 1rem 0.85rem;
    }

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

    .z369dcfilter-row {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .z369dcfilter-row::-webkit-scrollbar {
        display: none;
    }

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

    .z369dcbento-main {
        grid-column: 1;
    }

    .z369dcmatch-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .z369dcmatch-tags {
        flex-wrap: wrap;
    }

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

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

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

    .z369dclist-thumb img {
        width: 100%;
        height: auto;
        max-height: 190px;
    }

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

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

    .z369dcrelated-thumb img {
        width: 100%;
        height: auto;
        max-height: 170px;
    }

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

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

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

    .z369dcvalue-inner p {
        text-align: left;
        font-size: 0.85rem;
    }
}

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

    .z369dchero-actions {
        flex-direction: column;
    }

    .z369dcbtn {
        width: 100%;
    }

    .z369dchero-stat {
        flex: 1 1 100%;
    }

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

    .z369dcarticle-thumb img {
        height: 130px;
    }

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

@media (hover: none) {
    .z369dcbento-item:hover,
    .z369dcmatch-row:hover,
    .z369dcschedule-card:hover,
    .z369dcarticle-card:hover {
        box-shadow: none;
    }
}
