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

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

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

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

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

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

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

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

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

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

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

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

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

.z92c4amenu-toggle.z92c4aactive span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z92c4ablock-alt .z92c4afilter-btn {
    background: var(--c-surface);
}

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

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

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

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

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

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

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

.z92c4abento-main .z92c4avs em {
    color: rgba(255, 255, 255, 0.55);
}

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

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

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

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

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

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

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

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

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

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

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

.z92c4ablock-alt .z92c4amatch-row {
    background: var(--c-surface);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z92c4abreadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

.z92c4aarticle-panel,
.z92c4alist-panel,
.z92c4arelated-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z92c4ahero-media {
        order: -1;
    }

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

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

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

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

    .z92c4arank-board,
    .z92c4aguide-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .z92c4asidebar {
        position: static;
    }

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

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

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

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

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

    .z92c4amain-nav.z92c4aactive {
        display: block;
    }

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

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

    .z92c4ahero {
        padding: 1.5rem 0;
    }

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

    .z92c4ahero-stats {
        width: 100%;
    }

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

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

    .z92c4ablock {
        padding: 1rem 0.85rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z92c4abtn {
        width: 100%;
    }

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

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

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

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

@media (hover: none) {
    .z92c4abento-item:hover,
    .z92c4amatch-row:hover,
    .z92c4aschedule-card:hover,
    .z92c4aarticle-card:hover {
        box-shadow: none;
    }
}
