/* ===== 体育直播主题 — 紫罗兰 + 琥珀金 官方风 ===== */
:root {
    --c-primary: #3b2667;
    --c-primary-light: #5a3d8a;
    --c-primary-dark: #2a1a4a;
    --c-accent: #d4a017;
    --c-accent-hover: #b8890f;
    --c-accent-soft: #fdf6e3;
    --c-bg: #f7f5fb;
    --c-surface: #ffffff;
    --c-border: #e4dff0;
    --c-text: #2a2240;
    --c-muted: #6b6280;
    --c-live: #e63946;
    --c-upcoming: #e8a838;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 2px 16px rgba(59, 38, 103, 0.07);
    --shadow-hover: 0 8px 28px rgba(59, 38, 103, 0.12);
    --header-h: 68px;
    --container: 1180px;
}

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

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

a {
    color: inherit;
}

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

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

/* ===== 顶栏 ===== */
.zf135cheader {
    background: var(--c-primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--c-accent);
}

.zf135cheader-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: var(--header-h);
    position: relative;
}

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

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

.zf135clogo h1 a {
    color: #fff;
    text-decoration: none;
}

.zf135clogo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.zf135cmain-nav {
    flex: 1;
    min-width: 0;
}

.zf135cmain-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.15rem 0.35rem;
    justify-content: center;
}

.zf135cmain-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.zf135cmain-nav a:hover {
    background: rgba(212, 160, 23, 0.2);
    color: var(--c-accent);
}

.zf135cbtn-download {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--c-accent);
    color: var(--c-primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.zf135cbtn-download:hover {
    background: var(--c-accent-hover);
    transform: translateY(-1px);
}

.zf135cmenu-toggle {
    display: none;
    flex-shrink: 0;
    width: 32px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.zf135cmenu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform 0.25s, opacity 0.25s;
}

.zf135cmenu-toggle.zf135cactive span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.zf135cmenu-toggle.zf135cactive span:nth-child(2) {
    opacity: 0;
}

.zf135cmenu-toggle.zf135cactive span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero ===== */
.zf135chero {
    position: relative;
    background: var(--c-primary);
    color: #fff;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}

.zf135chero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 20%, rgba(212, 160, 23, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(90, 61, 138, 0.4) 0%, transparent 55%);
    pointer-events: none;
}

.zf135chero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.zf135chero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(212, 160, 23, 0.2);
    color: var(--c-accent);
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--c-accent);
}

.zf135chero-main h2 {
    font-size: clamp(1.55rem, 3.5vw, 2.2rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.zf135chero-lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.5rem;
    max-width: 520px;
    line-height: 1.75;
}

.zf135chero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.zf135cbtn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.zf135cbtn-primary {
    background: var(--c-accent);
    color: var(--c-primary-dark);
}

.zf135cbtn-primary:hover {
    background: var(--c-accent-hover);
}

.zf135cbtn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.zf135cbtn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.zf135chero-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.zf135chero-img {
    max-height: 240px;
    width: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
}

.zf135chero-metrics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.zf135chero-metrics li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.5rem;
    text-align: center;
    min-width: 0;
}

.zf135chero-metrics strong {
    display: block;
    font-size: 1.15rem;
    color: var(--c-accent);
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.zf135chero-metrics span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    word-break: break-word;
}

/* ===== 三大特色 ===== */
.zf135cpillars {
    background: var(--c-surface);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--c-border);
}

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

.zf135cpillar-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    min-width: 0;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.zf135cpillar-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--c-accent);
}

.zf135cpillar-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.zf135cpillar-card h3 {
    font-size: 1rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.zf135cpillar-card p {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.7;
}

.zf135cpillar-card strong {
    color: var(--c-primary-light);
}

/* ===== 知识条 ===== */
.zf135cknowledge-strip {
    background: linear-gradient(90deg, var(--c-accent-soft) 0%, var(--c-bg) 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--c-border);
}

.zf135cknowledge-strip p {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.8;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.zf135cknowledge-strip strong {
    color: var(--c-primary);
}

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

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

.zf135csection-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-border);
}

.zf135csection-title-wrap {
    min-width: 0;
}

.zf135csection-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-accent);
    margin-bottom: 0.25rem;
}

.zf135csection-head h2 {
    font-size: 1.3rem;
    color: var(--c-primary);
    margin: 0;
    line-height: 1.3;
}

.zf135csection-head p {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin-top: 0.25rem;
}

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

.zf135ctab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex-shrink: 0;
}

.zf135cnav-btn {
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    background: var(--c-bg);
    color: var(--c-muted);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

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

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

.zf135csection-foot {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}

.zf135cload-more {
    padding: 0.6rem 1.75rem;
    background: transparent;
    color: var(--c-primary);
    border: 1px solid var(--c-primary);
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* ===== 赛事直播 ===== */
.zf135clive-hall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.zf135clive-hall-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.zf135clive-hall-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.zf135clive-hall-card.zf135cfeatured {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-color: transparent;
    color: #fff;
}

.zf135clive-status {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    background: var(--c-live);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
    max-width: calc(100% - 1.3rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zf135clive-status.zf135cupcoming {
    background: var(--c-upcoming);
    color: var(--c-primary-dark);
}

.zf135clive-status.zf135creplay {
    background: var(--c-muted);
    color: #fff;
}

.zf135clive-hall-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zf135clive-hall-icon {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.zf135clive-hall-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    word-break: break-word;
}

.zf135clive-hall-card.zf135cfeatured h3 {
    color: #fff;
}

.zf135clive-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.zf135cteam {
    flex: 1;
    text-align: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zf135cvs {
    flex-shrink: 0;
    font-size: 0.72rem;
    color: var(--c-muted);
    padding: 0 0.2rem;
}

.zf135clive-hall-card.zf135cfeatured .zf135cvs {
    color: rgba(255, 255, 255, 0.65);
}

.zf135clive-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
    color: var(--c-muted);
    gap: 0.5rem;
}

.zf135clive-hall-card.zf135cfeatured .zf135clive-info {
    color: rgba(255, 255, 255, 0.7);
}

.zf135cquality {
    color: var(--c-accent);
    font-weight: 600;
    flex-shrink: 0;
}

.zf135clive-hall-card.zf135cfeatured .zf135cquality {
    color: #f5d78e;
}

.zf135clive-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}

.zf135clive-hall-card.zf135cfeatured .zf135clive-stats {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.zf135cstat {
    text-align: center;
    min-width: 0;
}

.zf135clabel {
    display: block;
    font-size: 0.68rem;
    color: var(--c-muted);
    margin-bottom: 0.1rem;
}

.zf135clive-hall-card.zf135cfeatured .zf135clabel {
    color: rgba(255, 255, 255, 0.6);
}

.zf135cvalue {
    font-size: 0.82rem;
    font-weight: 600;
    word-break: break-word;
    line-height: 1.3;
}

.zf135clive-hall-card.zf135cfeatured .zf135cvalue {
    color: #fff;
}

/* ===== 热门对阵 — 不对称布局 ===== */
.zf135cfeatured-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: stretch;
}

.zf135cfeatured-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.zf135cfeatured-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.zf135cfeatured-main {
    border-left: 3px solid var(--c-accent);
}

.zf135cmatch-status {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.zf135cmatch-status.zf135clive {
    background: var(--c-live);
    color: #fff;
}

.zf135cmatch-status.zf135cupcoming {
    background: var(--c-upcoming);
    color: var(--c-primary-dark);
}

.zf135cmatch-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}

.zf135cmatch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.zf135cmatch-type {
    font-size: 0.72rem;
    color: var(--c-muted);
    background: var(--c-surface);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    border: 1px solid var(--c-border);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zf135cmatch-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.zf135cmatch-teams .zf135cteam {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
    white-space: normal;
}

.zf135cteam-logo {
    font-size: 1.4rem;
}

.zf135cteam-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    word-break: break-word;
    line-height: 1.25;
}

.zf135cteam-score {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-accent);
}

.zf135cmatch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding: 0.5rem;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.zf135cstat-item {
    text-align: center;
    min-width: 0;
}

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

.zf135cstat-value {
    font-size: 0.78rem;
    font-weight: 600;
}

.zf135cmatch-preview {
    font-size: 0.82rem;
    color: var(--c-muted);
    text-align: center;
    line-height: 1.45;
    margin: 0;
}

.zf135cmatch-quality,
.zf135cupcoming-quality {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    padding-top: 0.25rem;
    margin-top: auto;
}

.zf135cquality-tag {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: var(--c-accent-soft);
    color: var(--c-accent-hover);
    font-weight: 500;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== 赛程表 — 列表式 ===== */
.zf135cupcoming-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.zf135cupcoming-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 1rem 1.15rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 0;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.zf135cupcoming-row .zf135cupcoming-status {
    grid-column: 1;
    grid-row: 1;
}

.zf135cupcoming-row .zf135cmatch-time {
    grid-column: 2;
    grid-row: 1;
}

.zf135cupcoming-row .zf135cmatch-type {
    grid-column: 3;
    grid-row: 1;
}

.zf135cupcoming-row .zf135cupcoming-teams {
    grid-column: 4;
    grid-row: 1;
    justify-content: flex-end;
}

.zf135cupcoming-row .zf135cupcoming-preview {
    grid-column: 1 / 4;
    grid-row: 2;
}

.zf135cupcoming-row .zf135cupcoming-quality {
    grid-column: 4;
    grid-row: 2;
    justify-content: flex-end;
}

.zf135cupcoming-row:hover {
    box-shadow: var(--shadow);
    border-color: var(--c-accent);
}

.zf135cupcoming-row.zf135cfeatured {
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-color: transparent;
    color: #fff;
}

.zf135cupcoming-status {
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    background: var(--c-upcoming);
    color: var(--c-primary-dark);
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.zf135cupcoming-row.zf135cfeatured .zf135cupcoming-status {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.zf135cupcoming-row .zf135cmatch-time {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.zf135cupcoming-row.zf135cfeatured .zf135cmatch-time {
    color: var(--c-accent);
}

.zf135cupcoming-row .zf135cmatch-type {
    flex-shrink: 0;
}

.zf135cupcoming-row.zf135cfeatured .zf135cmatch-type {
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    color: rgba(255, 255, 255, 0.85);
}

.zf135cupcoming-teams {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex-wrap: wrap;
}

.zf135cupcoming-teams .zf135cteam-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.zf135cupcoming-row.zf135cfeatured .zf135cteam-name {
    color: #fff;
}

.zf135cupcoming-row.zf135cfeatured .zf135cvs {
    color: rgba(255, 255, 255, 0.6);
}

.zf135cupcoming-preview {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zf135cupcoming-row.zf135cfeatured .zf135cupcoming-preview {
    color: rgba(255, 255, 255, 0.75);
}

.zf135cupcoming-row .zf135cupcoming-quality {
    margin-top: 0;
    justify-content: flex-end;
    flex-shrink: 0;
}

.zf135cupcoming-row.zf135cfeatured .zf135cquality-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #f5d78e;
}

/* ===== 直播资讯 — 左大右小 ===== */
.zf135cnews-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.zf135cnews-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.zf135cnews-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.zf135cnews-card.zf135cfeatured {
    background: var(--c-surface);
    border-left: 4px solid var(--c-accent);
    border-color: var(--c-border);
    border-left-color: var(--c-accent);
}

.zf135cnews-content {
    padding: 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zf135cnews-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--c-muted);
    margin-bottom: 0.45rem;
    flex-wrap: wrap;
}

.zf135cnews-time {
    color: var(--c-accent);
    font-weight: 600;
}

.zf135cnews-card h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--c-primary);
}

.zf135cnews-card.zf135cfeatured h3 {
    font-size: 1.1rem;
}

.zf135cnews-excerpt {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: 0.65rem;
    flex: 1;
}

.zf135cnews-excerpt strong {
    color: var(--c-primary-light);
}

.zf135cnews-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
}

.zf135cnews-tag {
    font-size: 0.68rem;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    background: var(--c-surface);
    color: var(--c-primary);
    border: 1px solid var(--c-border);
}

/* ===== 球员数据 ===== */
.zf135cstats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.zf135cstats-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.zf135cstats-card.zf135cfeatured {
    border-top: 3px solid var(--c-accent);
}

.zf135cstats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-surface);
    gap: 0.5rem;
    min-width: 0;
}

.zf135cstats-card-header h3 {
    font-size: 0.95rem;
    margin: 0;
    min-width: 0;
}

.zf135cstats-period {
    font-size: 0.72rem;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    background: var(--c-bg);
    color: var(--c-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.zf135cstats-list {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.zf135cstats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    min-width: 0;
}

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

.zf135crank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.zf135cstats-card.zf135cfeatured .zf135crank {
    background: var(--c-accent);
    color: var(--c-primary-dark);
}

.zf135cplayer-details {
    min-width: 0;
}

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

.zf135cstats-card .zf135cteam-name {
    display: block;
    font-size: 0.72rem;
    color: var(--c-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zf135cstats-value {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-accent);
}

/* ===== 精选阅读 ===== */
.zf135carticle-more {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--c-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.zf135carticle-more:hover {
    background: var(--c-primary-light);
}

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

.zf135carticle-home-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.zf135carticle-home-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.zf135carticle-home-thumb {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

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

.zf135carticle-home-body {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zf135carticle-home-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.25rem;
    font-size: 0.68rem;
    color: var(--c-muted);
    margin-bottom: 0.35rem;
    min-width: 0;
}

.zf135carticle-home-meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.zf135carticle-home-body h3 a {
    color: var(--c-text);
    text-decoration: none;
}

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

/* ===== 页脚 ===== */
.zf135cfooter {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 0 1.5rem;
}

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

.zf135cfooter-section h3 {
    color: var(--c-accent);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.zf135cfooter-section p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

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

.zf135cfooter-section ul li {
    margin-bottom: 0.4rem;
}

.zf135cfooter-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
}

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

.zf135ccopyright {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

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

.zf135csitemap-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin: 0 0.15rem;
}

.zf135csitemap-links a:hover {
    color: var(--c-accent);
}

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

.zf135cpage-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.35;
    word-break: break-word;
}

.zf135cpage-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    max-width: 720px;
    line-height: 1.65;
}

.zf135cbreadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

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

.zf135cbreadcrumb a:hover {
    text-decoration: underline;
}

.zf135cbreadcrumb span {
    margin: 0 0.3rem;
}

.zf135cinner-main {
    padding: 2rem 0 3rem;
}

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

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

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

.zf135carticle-header h1 {
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 0.85rem;
    color: var(--c-primary);
    word-break: break-word;
}

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

.zf135carticle-meta a {
    color: var(--c-accent);
    text-decoration: none;
}

.zf135carticle-cover {
    margin: 1rem 0;
}

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

.zf135carticle-content {
    line-height: 1.8;
    color: var(--c-text);
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.zf135carticle-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 0.75rem 0;
    border: 1px solid var(--c-border);
}

.zf135carticle-gallery-item {
    margin: 1rem 0;
    text-align: center;
}

.zf135carticle-gallery-item img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

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

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

.zf135cmeta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.zf135ctagitem a {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--c-muted);
    text-decoration: none;
}

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

.zf135carticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
}

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

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

.zf135cpanel-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--c-accent);
    color: var(--c-primary);
}

.zf135crelated-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

.zf135crelated-thumb {
    flex: 0 0 100px;
    display: block;
    min-width: 0;
}

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

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

.zf135crelated-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.zf135crelated-body h3 a {
    color: var(--c-text);
    text-decoration: none;
}

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

.zf135crelated-body p {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 列表页 ===== */
.zf135clist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

.zf135clist-thumb {
    flex: 0 0 150px;
    display: block;
    min-width: 0;
}

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

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

.zf135clist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: var(--c-muted);
    margin-bottom: 0.4rem;
}

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

.zf135clist-title {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.zf135clist-title a {
    color: var(--c-text);
    text-decoration: none;
    word-break: break-word;
}

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

.zf135clist-intro {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.zf135cpagebar .pagelist,
.zf135cpagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.zf135cpagebar .pagelist li,
.zf135cpagelist li {
    display: inline-flex;
    margin: 0;
}

.zf135cpagebar .pagelist a,
.zf135cpagebar .pagelist span,
.zf135cpagelist a,
.zf135cpagelist span {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    font-size: 0.85rem;
}

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

.zf135cpagebar .pagelist .thisclass,
.zf135cpagebar .pagelist .thisclass a,
.zf135cpagelist .thisclass,
.zf135cpagelist .thisclass a {
    background: var(--c-accent);
    color: var(--c-primary-dark);
    border-color: var(--c-accent);
    font-weight: 600;
}

/* ===== 侧栏 ===== */
.zf135csidebar {
    position: sticky;
    top: calc(var(--header-h) + 12px);
    min-width: 0;
}

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

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

.zf135csidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.zf135csidebar-list a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 0.88rem;
    word-break: break-word;
}

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

.zf135csidebar-articles {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

.zf135csidebar-thumb {
    flex: 0 0 64px;
    display: block;
    min-width: 0;
}

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

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

.zf135csidebar-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);
    text-decoration: none;
    margin-bottom: 0.2rem;
}

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

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

/* ===== 网站地图 ===== */
.zf135csitemap-page .zf135cinner-main {
    padding: 1.5rem 0;
}

.zf135csitemap-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.zf135csitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1rem;
}

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

.zf135csitemap-list a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

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

/* ===== 导航高亮 ===== */
.zf135cmain-nav .zf135cthis a,
.zf135cmain-nav li.zf135cthis a {
    color: var(--c-accent);
    background: rgba(212, 160, 23, 0.15);
}

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

    .zf135clive-hall-card.zf135cfeatured {
        grid-column: span 2;
    }

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

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

    .zf135cfeatured-side {
        flex-direction: row;
    }

    .zf135cfeatured-side .zf135cfeatured-card {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .zf135chero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zf135chero-lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .zf135chero-actions {
        justify-content: center;
    }

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

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

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

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

    .zf135csidebar {
        position: static;
    }

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

    .zf135cfeatured-side {
        flex-direction: column;
    }

    .zf135cupcoming-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto auto;
    }

    .zf135cupcoming-row .zf135cupcoming-status {
        grid-column: 1;
        grid-row: 1;
    }

    .zf135cupcoming-row .zf135cmatch-time {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    .zf135cupcoming-row .zf135cmatch-type {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .zf135cupcoming-row .zf135cupcoming-teams {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-content: flex-start;
    }

    .zf135cupcoming-row .zf135cupcoming-preview {
        grid-column: 1 / -1;
        grid-row: 4;
        white-space: normal;
    }

    .zf135cupcoming-row .zf135cupcoming-quality {
        grid-column: 1 / -1;
        grid-row: 5;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 56px;
    }

    .zf135cheader-inner {
        flex-wrap: wrap;
        padding: 0.45rem 0;
        min-height: auto;
        gap: 0.5rem;
    }

    .zf135clogo {
        flex: 1;
        min-width: 0;
    }

    .zf135clogo h1 {
        font-size: 1.05rem;
    }

    .zf135clogo-tagline {
        white-space: normal;
        max-width: none;
        font-size: 0.65rem;
    }

    .zf135cbtn-download-home {
        display: none;
    }

    .zf135cmenu-toggle {
        display: block;
        order: 3;
    }

    .zf135cbtn-download {
        order: 2;
        font-size: 0.78rem;
        padding: 0.35rem 0.7rem;
    }

    .zf135cmain-nav {
        display: none;
        order: 4;
        width: 100%;
        background: var(--c-primary);
        border-radius: var(--radius-sm);
        padding: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .zf135cmain-nav.zf135cactive {
        display: block;
    }

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

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

    .zf135cmain-nav li:last-child {
        border-bottom: none;
    }

    .zf135cmain-nav a {
        display: block;
        padding: 0.6rem 0.75rem;
    }

    .zf135chero {
        padding: 2rem 0;
    }

    .zf135chero-img {
        max-height: 180px;
    }

    .zf135chero-metrics {
        grid-template-columns: 1fr;
    }

    .zf135csection {
        padding: 1.15rem;
    }

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

    .zf135ctab-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .zf135clive-hall-grid,
    .zf135cstats-grid {
        grid-template-columns: 1fr;
    }

    .zf135clive-hall-card.zf135cfeatured {
        grid-column: span 1;
    }

    .zf135cfeatured-side {
        flex-direction: column;
    }

    .zf135cmatch-teams {
        gap: 0.35rem;
    }

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

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

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

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

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

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

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

    .zf135crelated-thumb img {
        width: 100%;
        height: auto;
        max-height: 180px;
    }

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

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

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

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

@media (max-width: 480px) {
    .zf135ccontainer {
        padding: 0 14px;
    }

    .zf135chero-metrics li {
        padding: 0.6rem;
    }

    .zf135cpillar-card {
        padding: 1.15rem;
    }

    .zf135carticle-home-grid {
        grid-template-columns: 1fr;
    }

    .zf135carticle-home-thumb img {
        height: 140px;
    }

    .zf135cteam-name {
        font-size: 0.78rem;
    }

    .zf135cload-more {
        width: 100%;
    }

    .zf135cupcoming-row {
        padding: 0.85rem;
        gap: 0.5rem;
    }

    .zf135cquality-tag {
        font-size: 0.62rem;
        padding: 0.12rem 0.35rem;
    }
}

@media (hover: none) {
    .zf135clive-hall-card:hover,
    .zf135cfeatured-card:hover,
    .zf135cupcoming-row:hover,
    .zf135cnews-card:hover,
    .zf135carticle-home-card:hover {
        transform: none;
    }
}

/* 兼容旧类名 */
.zf135cbanner,
.zf135cbanner-content,
.zf135cbanner-text,
.zf135cbanner-image,
.zf135cbanner-img,
.zf135cbanner-features,
.zf135cbanner-stats,
.zf135cfeature,
.zf135cstat-item,
.zf135cstat-number,
.zf135cstat-label,
.zf135clive-hall-header,
.zf135clive-hall-nav,
.zf135clive-hall-footer,
.zf135cfeatured-header,
.zf135cfeatured-nav,
.zf135cfeatured-footer,
.zf135cupcoming-header,
.zf135cupcoming-nav,
.zf135cupcoming-footer,
.zf135cupcoming-grid,
.zf135cupcoming-card,
.zf135cupcoming-content,
.zf135cupcoming-match-head,
.zf135cnews-header,
.zf135cnews-nav,
.zf135cnews-footer,
.zf135cnews-grid,
.zf135cstats-header,
.zf135cstats-nav,
.zf135cstats-footer,
.zf135carticle-home-header,
.zf135cmatch-info,
.zf135cinfo-item,
.zf135cinfo-label,
.zf135cinfo-value,
.zf135chero-grid,
.zf135chero-copy,
.zf135chero-visual,
.zf135cintro-strip,
.zf135cfeatured-grid {
    /* 保留空规则避免 CMS 动态插入旧结构时报错 */
}
