/* ===== 体育直播主题 · 靛蓝 + 琥珀金 ===== */
: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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.zb8b6fmenu-toggle.zb8b6factive span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zb8b6fblock-alt .zb8b6ffilter-btn {
    background: var(--c-surface);
}

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

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

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

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

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

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

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

.zb8b6fbento-main .zb8b6fvs em {
    color: rgba(255, 255, 255, 0.55);
}

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

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

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

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

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

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

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

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

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

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

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

.zb8b6fblock-alt .zb8b6fmatch-row {
    background: var(--c-surface);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== 深度阅读 ===== */
.zb8b6fmore-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zb8b6fbreadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

.zb8b6farticle-panel,
.zb8b6flist-panel,
.zb8b6frelated-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zb8b6fpagebar .pagelist a,
.zb8b6fpagebar .pagelist span,
.zb8b6fpagelist a,
.zb8b6fpagelist 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .zb8b6fhero-media {
        order: -1;
    }

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

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

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

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

    .zb8b6frank-board,
    .zb8b6fguide-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .zb8b6fsidebar {
        position: static;
    }

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

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

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

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

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

    .zb8b6fmain-nav.zb8b6factive {
        display: block;
    }

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

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

    .zb8b6fhero {
        padding: 1.5rem 0;
    }

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

    .zb8b6fhero-stats {
        width: 100%;
    }

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

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

    .zb8b6fblock {
        padding: 1rem 0.85rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .zb8b6fbtn {
        width: 100%;
    }

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

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

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

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

@media (hover: none) {
    .zb8b6fbento-item:hover,
    .zb8b6fmatch-row:hover,
    .zb8b6fschedule-card:hover,
    .zb8b6farticle-card:hover {
        box-shadow: none;
    }
}
