* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #f5f0e6;
            color: #2d2a24;
            line-height: 1.75;
            font-size: 16px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        .nav {
            background: linear-gradient(135deg, #15803d 0%, #451a03 100%);
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(69, 26, 3, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 8px 28px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-links a {
            color: #f5f0e6;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #d4a853;
        }

        /* 区块通用 */
        .section {
            padding: 64px 24px;
        }
        .section:nth-child(even) {
            background: linear-gradient(180deg, #f5f0e6 0%, #eae0cc 100%);
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-size: 32px;
            color: #15803d;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #15803d, #d4a853);
            border-radius: 2px;
            margin: 10px auto 0;
        }
        .section-header p {
            color: #6b5b4e;
            font-size: 15px;
            margin-top: 8px;
        }
        .section-tag {
            display: inline-block;
            background: #15803d;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            text-decoration: none;
            margin-bottom: 10px;
            transition: background 0.3s;
        }
        .section-tag:hover {
            background: #451a03;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #15803d 0%, #2d6a1e 40%, #451a03 100%);
            padding: 80px 24px;
            text-align: center;
            color: #f5f0e6;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 20px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .hero .geo-desc {
            max-width: 900px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(0, 0, 0, 0.2);
            border-radius: 16px;
            padding: 24px 32px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .hero .hero-badge {
            display: inline-block;
            background: #d4a853;
            color: #451a03;
            font-size: 13px;
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        /* 数据统计 */
        .data-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 32px 20px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(69, 26, 3, 0.08);
            border-left: 5px solid #15803d;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(69, 26, 3, 0.14);
        }
        .stat-card .num {
            font-size: 42px;
            font-weight: 800;
            color: #15803d;
        }
        .stat-card .label {
            font-size: 14px;
            color: #6b5b4e;
            margin-top: 8px;
            font-weight: 500;
        }

        /* 核心优势 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .feature-card {
            background: #fff;
            border-radius: 14px;
            padding: 28px 24px;
            box-shadow: 0 4px 16px rgba(69, 26, 3, 0.08);
            border-top: 4px solid #15803d;
            transition: transform 0.3s;
            position: relative;
        }
        .feature-card:hover {
            transform: translateY(-4px);
        }
        .feature-card .icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        .feature-card h3 {
            font-size: 18px;
            color: #451a03;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .feature-card p {
            font-size: 14px;
            color: #5a4a3e;
            line-height: 1.65;
        }

        /* 品牌故事 */
        .story-wrap {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-wrap .story-text {
            flex: 1.2;
            min-width: 280px;
        }
        .story-wrap .story-img {
            flex: 1;
            min-width: 260px;
            text-align: center;
        }
        .story-wrap .story-img img {
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(69, 26, 3, 0.2);
        }
        .story-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #4a3a2e;
            margin-bottom: 16px;
        }
        .story-text h3 {
            font-size: 24px;
            color: #15803d;
            margin-bottom: 12px;
        }

        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .event-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(69, 26, 3, 0.08);
            transition: transform 0.3s;
        }
        .event-card:hover {
            transform: translateY(-5px);
        }
        .event-card img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        .event-card .info {
            padding: 18px 16px;
        }
        .event-card .info .league {
            font-size: 12px;
            color: #15803d;
            font-weight: 700;
            text-transform: uppercase;
        }
        .event-card .info .teams {
            font-size: 15px;
            font-weight: 700;
            color: #2d2a24;
            margin: 8px 0 4px;
        }
        .event-card .info .score {
            font-size: 22px;
            font-weight: 800;
            color: #451a03;
        }
        .event-card .info .status {
            font-size: 12px;
            color: #6b5b4e;
            margin-top: 6px;
        }

        /* 用户口碑 */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .testimonial-card {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(69, 26, 3, 0.06);
            border-left: 4px solid #d4a853;
        }
        .testimonial-card .quote {
            font-size: 14px;
            line-height: 1.7;
            color: #4a3a2e;
            font-style: italic;
            margin-bottom: 12px;
        }
        .testimonial-card .author {
            font-size: 14px;
            font-weight: 700;
            color: #15803d;
        }

        /* 下载中心 */
        .download-wrap {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-img {
            flex: 1;
            text-align: center;
            min-width: 240px;
        }
        .download-img img {
            max-width: 280px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(69, 26, 3, 0.3);
        }
        .download-info {
            flex: 1.2;
            min-width: 280px;
        }
        .download-info h3 {
            font-size: 28px;
            color: #15803d;
            margin-bottom: 12px;
        }
        .download-info p {
            font-size: 15px;
            color: #5a4a3e;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .download-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .download-btns a {
            display: inline-block;
            background: linear-gradient(135deg, #15803d, #451a03);
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .download-btns a:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(69, 26, 3, 0.3);
        }

        /* 新闻 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .news-card {
            background: #fff;
            border-radius: 14px;
            padding: 22px;
            box-shadow: 0 4px 16px rgba(69, 26, 3, 0.06);
            border-bottom: 3px solid #15803d;
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateY(-4px);
        }
        .news-card .date {
            font-size: 12px;
            color: #8a7a6d;
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
        }
        .news-card h3 {
            font-size: 17px;
            color: #2d2a24;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 14px;
            color: #5a4a3e;
            line-height: 1.65;
        }

        /* FAQ */
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 3px 12px rgba(69, 26, 3, 0.06);
            border-left: 5px solid #15803d;
        }
        .faq-item h3 {
            font-size: 17px;
            color: #451a03;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 14px;
            color: #4a3a2e;
            line-height: 1.7;
        }

        /* 页脚 */
        .footer {
            background: linear-gradient(135deg, #451a03 0%, #1c0a00 100%);
            color: #c9b8a5;
            padding: 48px 24px 24px;
            text-align: center;
            font-size: 14px;
        }
        .footer .footer-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 30px;
            margin-bottom: 20px;
        }
        .footer a {
            color: #d4a853;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: #fff;
        }
        .footer .footer-links {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .footer .copyright {
            margin-top: 20px;
            color: #8a7a6d;
            font-size: 13px;
        }

        @media (max-width: 992px) {
            .data-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .data-stats-grid,
            .features-grid,
            .events-grid,
            .testimonials-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 30px;
            }
            .nav-links {
                flex-direction: column;
                gap: 4px;
            }
            .section {
                padding: 40px 16px;
            }
        }