/* ===== 全局重置与字体强制 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #f0fdf4;
    color: #1a2e2a;
    line-height: 1.65;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
p {
    margin-bottom: 10px;
}

/* ===== 导航栏 ===== */
.navbar {
    background: linear-gradient(90deg, #065f46, #10b981);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(6, 95, 70, 0.35);
}
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar .logo img {
    height: 36px;
    width: auto;
}
.navbar .logo span {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}
.nav-links a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* ===== 容器 ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 60px 0;
}

/* ===== Hero/GEO区块 ===== */
.hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    text-align: center;
    padding: 70px 20px 50px;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 42px;
    color: #065f46;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #065f46, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .geo-desc {
    max-width: 850px;
    margin: 20px auto 0;
    font-size: 16px;
    color: #285e4a;
    text-align: left;
    line-height: 1.8;
    background: rgba(255,255,255,0.75);
    border-radius: 16px;
    padding: 20px 26px;
    box-shadow: 0 2px 12px rgba(6,95,70,0.06);
    font-weight: 500;
}

/* ===== 区块标题 ===== */
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 36px;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #10b981, #fbbf24);
    margin: 12px auto 0;
}

/* ===== 数据统计 ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #d1fae5;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.20);
}
.stat-card .num {
    font-size: 40px;
    font-weight: 900;
    color: #065f46;
    display: block;
}
.stat-card .label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== 核心优势 ===== */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.adv-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 8px 28px rgba(6, 95, 70, 0.08);
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}
.adv-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.15);
}
.adv-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.adv-card h3 {
    font-size: 18px;
    color: #065f46;
}
.adv-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

/* ===== 焦点赛事 ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.event-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(6, 95, 70, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e7f5ef;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(6, 95, 70, 0.15);
}
.event-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.event-card .body {
    padding: 18px 14px;
}
.event-card .league {
    font-size: 12px;
    background: #ecfdf5;
    color: #065f46;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
}
.event-card .teams {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e2a;
    margin-bottom: 6px;
}
.event-card .status {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

/* ===== 品牌故事 ===== */
.story-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(6,95,70,0.06);
}
.story-wrap img {
    width: 360px;
    border-radius: 18px;
    flex-shrink: 0;
}
.story-wrap .text h3 {
    color: #065f46;
    font-size: 22px;
}
.story-wrap .text p {
    color: #3f4f4a;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ===== 精彩集锦 ===== */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.highlight-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6,95,70,0.08);
    border: 1px solid #e7f5ef;
    transition: all 0.3s ease;
}
.highlight-card:hover {
    box-shadow: 0 12px 30px rgba(16,185,129,0.14);
}
.highlight-card img {
    width: 200px;
    object-fit: cover;
    flex-shrink: 0;
}
.highlight-card .content {
    padding: 20px;
}
.highlight-card .tag {
    font-size: 12px;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
}
.highlight-card h4 {
    font-size: 18px;
    color: #1a2e2a;
    margin-bottom: 6px;
}
.highlight-card p {
    font-size: 14px;
    color: #6b7280;
}

/* ===== 新闻列表 ===== */
.news-section {
    background: linear-gradient(180deg, #ffffff, #f0fdf4);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(6,95,70,0.07);
    border: 1px solid #d1fae5;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(16,185,129,0.14);
}
.news-card .date {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 8px;
    background: #ecfdf5;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    align-self: flex-start;
}
.news-card h3 {
    font-size: 17px;
    color: #1a2e2a;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 48px;
}
.news-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    flex-grow: 1;
}
.news-card .read-more {
    font-size: 14px;
    color: #065f46;
    font-weight: 700;
    margin-top: 16px;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    align-self: flex-end;
}
.news-card .read-more:hover {
    border-color: #065f46;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(6,95,70,0.06);
    border-left: 4px solid #10b981;
    transition: background 0.3s ease;
}
.faq-item:hover {
    background: #f8fffc;
}
.faq-item h3 {
    font-size: 17px;
    color: #065f46;
    margin-bottom: 10px;
}
.faq-item p {
    font-size: 14px;
    color: #3f4f4a;
    line-height: 1.75;
}

/* ===== 行动呼吁 ===== */
.cta-section {
    background: linear-gradient(135deg, #065f46, #10b981);
    text-align: center;
    padding: 70px 20px;
    border-radius: 0;
    position: relative;
    color: #ffffff;
}
.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}
.cta-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btns a {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary {
    background: #ffffff;
    color: #065f46 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff !important;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}
.cta-section img {
    width: 160px;
    margin: 20px auto 0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== 合作伙伴 ===== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.partner-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(6,95,70,0.06);
    border: 1px solid #e7f5ef;
    transition: all 0.3s ease;
}
.partner-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(16,185,129,0.14);
}
.partner-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: 12px;
}
.partner-card h4 {
    font-size: 16px;
    color: #1a2e2a;
    font-weight: 700;
}
.partner-card p {
    font-size: 13px;
    color: #6b7280;
}

/* ===== 服务覆盖 ===== */
.coverage-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(6,95,70,0.06);
}
.coverage-wrap img {
    width: 320px;
    border-radius: 16px;
    flex-shrink: 0;
}
.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    flex-grow: 1;
}
.coverage-list li {
    background: #f0fdf4;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}
.coverage-list li:hover {
    background: #d1fae5;
}

/* ===== 页脚 ===== */
.footer {
    background: #064e3b;
    color: #e0f2f1;
    padding: 50px 20px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.footer-col h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 6px;
    color: #c1d9d0;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: #c1d9d0;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: #10b981;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #9cd4be;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom .beian {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-bottom a {
    color: #9cd4be;
    margin: 0 6px;
}
.footer-bottom a:hover {
    color: #ffffff;
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-wrap {
        flex-direction: column;
    }
    .story-wrap img {
        width: 100%;
    }
    .highlight-card {
        flex-direction: column;
    }
    .highlight-card img {
        width: 100%;
        height: 120px;
    }
    .coverage-wrap {
        flex-direction: column;
    }
    .coverage-wrap img {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .nav-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .stats-grid,
    .events-grid,
    .news-grid,
    .partner-grid,
    .adv-grid,
    .coverage-list {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 30px;
    }
    .cta-section h2 {
        font-size: 26px;
    }
    .section-title {
        font-size: 25px;
    }
}