/* ============================================================
   足球竞彩分析平台 - 核心样式表
   设计风格: 欧洲足球画报风
   前缀规范: zq-
   配色方案:
     主色: #002B36 (深邃蓝黑)
     辅色: #268BD2 (活力蓝)
     点缀色: #CB4B16 (激情橙)
     文字色: #EEE8D5 (米白)
     链接色: #268BD2
   ============================================================ */

/* --- 防查重干扰标签隐藏 --- */
.pitch-jammer-block {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}

/* --- CSS Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Source Serif Pro', 'Noto Serif SC', Georgia, serif;
    background-color: #001820;
    color: #EEE8D5;
    line-height: 1.75;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', 'Noto Sans SC', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #EEE8D5;
}

a {
    color: #268BD2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #CB4B16;
}

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

ul, ol {
    list-style: none;
}

/* --- 容器 --- */
.zq-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- 导航栏 --- */
#zq-main-nav {
    background-color: #002B36;
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(38, 139, 210, 0.2);
}

.zq-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.zq-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.zq-nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.zq-nav-logo span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #EEE8D5;
    white-space: nowrap;
}

.zq-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #002B36;
    padding: 16px;
    border-top: 1px solid rgba(38, 139, 210, 0.3);
    z-index: 999;
}

.zq-nav-links.zq-nav-open {
    display: flex;
}

.zq-nav-links a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: #EEE8D5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(238, 232, 213, 0.1);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.zq-nav-links a:hover {
    color: #268BD2;
    transform: scale(1.02);
}

.zq-nav-links a.zq-active {
    color: #CB4B16;
    border-bottom-color: #CB4B16;
}

.zq-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.zq-hamburger span {
    width: 24px;
    height: 2px;
    background-color: #EEE8D5;
    transition: all 0.3s ease;
    display: block;
}

/* --- 英雄模块 --- */
.zq-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.zq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.zq-hero-overlay {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 800px;
}

.zq-hero-section h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 2px;
}

.zq-hero-section .zq-hero-slogan {
    font-size: 1.1rem;
    color: rgba(238, 232, 213, 0.85);
    margin-bottom: 24px;
    line-height: 1.8;
}

.zq-hero-section .zq-btn-primary {
    display: inline-block;
    background-color: #CB4B16;
    color: #EEE8D5;
    padding: 12px 32px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zq-hero-section .zq-btn-primary:hover {
    background-color: #dc5a26;
    transform: scale(1.05);
    color: #EEE8D5;
}

/* --- 通用区块 --- */
.zq-section {
    padding: 48px 0;
}

.zq-section-dark {
    background-color: #002B36;
}

.zq-section-darker {
    background-color: #001820;
}

.zq-section-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.zq-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #CB4B16;
    margin: 12px auto 0;
}

.zq-section-subtitle {
    text-align: center;
    color: rgba(238, 232, 213, 0.7);
    font-size: 0.95rem;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 赛事卡片 --- */
.zq-matches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.zq-match-card {
    background-color: rgba(0, 43, 54, 0.8);
    border: 1px solid rgba(38, 139, 210, 0.25);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zq-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.zq-match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(38, 139, 210, 0.2);
}

.zq-match-card-teams {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.zq-match-card-time {
    font-size: 0.85rem;
    color: #268BD2;
    font-family: 'Roboto Condensed', sans-serif;
}

.zq-match-card-prediction {
    display: inline-block;
    background-color: #CB4B16;
    color: #EEE8D5;
    padding: 4px 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.zq-match-card-reason {
    font-size: 0.9rem;
    color: rgba(238, 232, 213, 0.8);
    line-height: 1.6;
}

/* --- 战术板CTA --- */
.zq-tactics-cta {
    background: linear-gradient(135deg, #002B36 0%, #003847 50%, #002B36 100%);
    text-align: center;
    padding: 60px 20px;
    border-top: 2px solid rgba(38, 139, 210, 0.3);
    border-bottom: 2px solid rgba(38, 139, 210, 0.3);
}

.zq-tactics-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.zq-tactics-cta p {
    color: rgba(238, 232, 213, 0.8);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zq-cta-button {
    display: inline-block;
    background-color: #268BD2;
    color: #EEE8D5;
    padding: 14px 36px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zq-cta-button:hover {
    background-color: #3a9de0;
    transform: scale(1.05);
    color: #EEE8D5;
}

/* --- 文章列表 --- */
.zq-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.zq-article-card {
    background-color: rgba(0, 43, 54, 0.7);
    border: 1px solid rgba(38, 139, 210, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zq-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.zq-article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.zq-article-card-body {
    padding: 20px;
}

.zq-article-card-tag {
    display: inline-block;
    background-color: rgba(38, 139, 210, 0.2);
    color: #268BD2;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.75rem;
    padding: 3px 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zq-article-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.zq-article-card-title a {
    color: #EEE8D5;
}

.zq-article-card-title a:hover {
    color: #268BD2;
}

.zq-article-card-excerpt {
    font-size: 0.9rem;
    color: rgba(238, 232, 213, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.zq-article-card-meta {
    font-size: 0.8rem;
    color: rgba(238, 232, 213, 0.5);
    font-family: 'Roboto Condensed', sans-serif;
}

/* --- 数据洞察 --- */
.zq-insights-section {
    position: relative;
}

.zq-insights-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(38, 139, 210, 0.3);
}

/* --- 专家团队 --- */
.zq-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.zq-team-member {
    text-align: center;
    padding: 16px;
    background-color: rgba(0, 43, 54, 0.6);
    border: 1px solid rgba(38, 139, 210, 0.15);
}

.zq-team-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    object-fit: cover;
    border: 2px solid #268BD2;
}

.zq-team-member-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.zq-team-member-role {
    font-size: 0.8rem;
    color: #268BD2;
    font-family: 'Roboto Condensed', sans-serif;
}

.zq-team-member-desc {
    font-size: 0.85rem;
    color: rgba(238, 232, 213, 0.7);
    margin-top: 8px;
    line-height: 1.5;
}

/* --- EFAA认证 --- */
.zq-efaa-section {
    text-align: center;
    background: linear-gradient(180deg, #001820 0%, #002B36 100%);
}

.zq-efaa-badge {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(203, 75, 22, 0.6);
}

.zq-efaa-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    color: #CB4B16;
    font-weight: 700;
    margin-bottom: 12px;
}

/* --- 用户评价 --- */
.zq-testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.zq-testimonials-track {
    display: flex;
    gap: 20px;
    animation: zq-scroll-testimonials 20s linear infinite;
}

@keyframes zq-scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.zq-testimonial-card {
    min-width: 280px;
    background-color: rgba(0, 43, 54, 0.7);
    border: 1px solid rgba(38, 139, 210, 0.2);
    padding: 20px;
    flex-shrink: 0;
}

.zq-testimonial-text {
    font-size: 0.9rem;
    color: rgba(238, 232, 213, 0.85);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.zq-testimonial-author {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    color: #268BD2;
    font-weight: 700;
}

/* --- APP下载横幅 --- */
.zq-app-banner {
    background: linear-gradient(135deg, #002B36 0%, #003847 100%);
    text-align: center;
    padding: 48px 20px;
    border-top: 2px solid #CB4B16;
}

.zq-app-banner h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.zq-app-banner p {
    color: rgba(238, 232, 213, 0.8);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.zq-app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.zq-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #268BD2;
    color: #EEE8D5;
    transition: all 0.3s ease;
}

.zq-app-btn:hover {
    background-color: #268BD2;
    color: #EEE8D5;
}

/* --- 合作伙伴 --- */
.zq-partners-section {
    text-align: center;
    padding: 36px 0;
    border-top: 1px solid rgba(38, 139, 210, 0.15);
}

.zq-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.zq-partners-logos span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: rgba(238, 232, 213, 0.5);
    padding: 8px 16px;
    border: 1px solid rgba(238, 232, 213, 0.15);
}

/* --- 页脚 --- */
#zq-footer {
    background-color: #002B36;
    padding: 48px 0 0;
    border-top: 3px solid #268BD2;
}

.zq-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

.zq-footer-col h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #EEE8D5;
    position: relative;
    padding-bottom: 8px;
}

.zq-footer-col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #CB4B16;
    margin-top: 8px;
}

.zq-footer-col p {
    font-size: 0.9rem;
    color: rgba(238, 232, 213, 0.7);
    line-height: 1.7;
    margin-bottom: 8px;
}

.zq-footer-col a {
    color: rgba(238, 232, 213, 0.7);
    font-size: 0.9rem;
    display: block;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.zq-footer-col a:hover {
    color: #268BD2;
}

.zq-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.zq-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(238, 232, 213, 0.3);
    border-radius: 50%;
    color: #EEE8D5;
    font-size: 0.8rem;
    font-family: 'Roboto Condensed', sans-serif;
    transition: all 0.3s ease;
}

.zq-footer-social a:hover {
    background-color: #268BD2;
    border-color: #268BD2;
}

.zq-footer-efaa {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(238, 232, 213, 0.1);
}

.zq-footer-efaa img {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    border-radius: 50%;
}

.zq-footer-efaa p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    color: #CB4B16;
    font-weight: 700;
}

.zq-footer-beian {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(238, 232, 213, 0.1);
    font-size: 0.8rem;
    color: rgba(238, 232, 213, 0.5);
}

.zq-footer-beian a {
    color: rgba(238, 232, 213, 0.5);
    display: inline;
    font-size: 0.8rem;
}

.zq-footer-beian a:hover {
    color: #268BD2;
}

/* --- 内页通用 --- */
.zq-page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.zq-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    z-index: 1;
}

.zq-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.zq-page-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.zq-page-hero p {
    color: rgba(238, 232, 213, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* --- 面包屑 --- */
.zq-breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.zq-breadcrumb a {
    color: rgba(238, 232, 213, 0.6);
}

.zq-breadcrumb span {
    color: rgba(238, 232, 213, 0.4);
    margin: 0 6px;
}

.zq-breadcrumb .zq-breadcrumb-current {
    color: #268BD2;
}

/* --- 文章正文 --- */
.zq-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 16px;
}

.zq-article-content h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(38, 139, 210, 0.3);
}

.zq-article-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
    color: #268BD2;
}

.zq-article-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.zq-article-content img {
    margin: 24px 0;
    border: 1px solid rgba(38, 139, 210, 0.2);
}

.zq-article-content blockquote {
    border-left: 3px solid #CB4B16;
    padding: 12px 20px;
    margin: 20px 0;
    background-color: rgba(0, 43, 54, 0.5);
    color: rgba(238, 232, 213, 0.85);
    font-style: italic;
}

.zq-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.zq-article-content table th,
.zq-article-content table td {
    padding: 10px 12px;
    border: 1px solid rgba(38, 139, 210, 0.2);
    text-align: left;
}

.zq-article-content table th {
    background-color: rgba(38, 139, 210, 0.15);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

/* --- 战术板页面 --- */
.zq-tactics-page {
    padding: 32px 0;
}

.zq-tactics-toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 12px;
    background-color: rgba(0, 43, 54, 0.8);
    border: 1px solid rgba(38, 139, 210, 0.2);
}

.zq-tactics-btn {
    padding: 8px 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    background-color: rgba(38, 139, 210, 0.15);
    color: #EEE8D5;
    border: 1px solid rgba(38, 139, 210, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.zq-tactics-btn:hover,
.zq-tactics-btn.zq-active {
    background-color: #268BD2;
    border-color: #268BD2;
}

.zq-tactics-canvas-wrapper {
    position: relative;
    width: 100%;
    background-color: #2d8b3a;
    border: 3px solid rgba(0, 43, 54, 0.8);
    overflow: hidden;
    aspect-ratio: 3/2;
}

.zq-tactics-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.zq-tactics-presets {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.zq-preset-btn {
    padding: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    background-color: rgba(0, 43, 54, 0.7);
    color: #EEE8D5;
    border: 1px solid rgba(38, 139, 210, 0.25);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.zq-preset-btn:hover {
    background-color: rgba(38, 139, 210, 0.2);
    border-color: #268BD2;
}

/* --- APP下载页面 --- */
.zq-app-page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.zq-app-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
}

.zq-app-feature {
    text-align: center;
    padding: 24px;
    background-color: rgba(0, 43, 54, 0.6);
    border: 1px solid rgba(38, 139, 210, 0.2);
}

.zq-app-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.zq-app-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.zq-app-feature p {
    font-size: 0.9rem;
    color: rgba(238, 232, 213, 0.7);
}

/* --- 数据表格 --- */
.zq-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.zq-data-table th,
.zq-data-table td {
    padding: 10px 14px;
    border: 1px solid rgba(38, 139, 210, 0.2);
    text-align: left;
    white-space: nowrap;
}

.zq-data-table th {
    background-color: rgba(38, 139, 210, 0.15);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #268BD2;
}

.zq-data-table tr:hover {
    background-color: rgba(38, 139, 210, 0.05);
}

/* --- 淡入动画 --- */
.zq-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zq-fade-in.zq-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 768px 平板 --- */
@media (min-width: 768px) {
    .zq-container {
        padding: 0 24px;
    }

    .zq-hamburger {
        display: none;
    }

    .zq-nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        padding: 0;
        border: none;
        gap: 4px;
    }

    .zq-nav-links a {
        padding: 6px 12px;
        border-bottom: 2px solid transparent;
        font-size: 0.9rem;
    }

    .zq-nav-links a.zq-active {
        border-bottom-color: #CB4B16;
    }

    .zq-hero-section {
        min-height: 70vh;
    }

    .zq-hero-section h1 {
        font-size: 2.6rem;
    }

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

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

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

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

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

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

    .zq-section-title {
        font-size: 1.8rem;
    }
}

/* --- 1024px 小型笔记本 --- */
@media (min-width: 1024px) {
    .zq-hero-section {
        min-height: 80vh;
    }

    .zq-hero-section h1 {
        font-size: 3rem;
    }

    .zq-hero-section .zq-hero-slogan {
        font-size: 1.2rem;
    }

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

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

    .zq-nav-links a {
        font-size: 0.95rem;
        padding: 6px 16px;
    }

    .zq-section {
        padding: 64px 0;
    }

    .zq-section-title {
        font-size: 2rem;
    }
}

/* --- 1440px 桌面 --- */
@media (min-width: 1440px) {
    .zq-container {
        padding: 0 40px;
    }

    .zq-hero-section h1 {
        font-size: 3.4rem;
    }

    .zq-section {
        padding: 80px 0;
    }

    .zq-article-card-img {
        height: 240px;
    }
}
