*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            background: #f0fdf4;
            color: #1f2937;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        span,
        div,
        ul,
        li,
        button,
        input,
        textarea,
        nav,
        footer,
        section,
        article,
        blockquote {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        /* ===== 导航栏 ===== */
        .nav-bar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            box-shadow: 0 2px 20px rgba(6, 95, 70, 0.08);
            padding: 0 5%;
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        }
        .nav-container {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .nav-brand {
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(135deg, #10b981, #065f46);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: #374151;
            position: relative;
            padding: 4px 0;
        }
        .nav-links a:hover {
            color: #10b981;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #10b981, #065f46);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        /* ===== Hero 区域 ===== */
        .hero-section {
            padding: 160px 5% 80px;
            background: linear-gradient(135deg, #065f46 0%, #10b981 55%, #34d399 100%);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -30%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-content {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .hero-section h1 {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
            letter-spacing: 2px;
            line-height: 1.3;
        }
        .hero-subtitle {
            font-size: 18px;
            opacity: 0.92;
            margin-bottom: 36px;
            font-weight: 400;
        }
        .hero-buttons {
            display: flex;
            gap: 18px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-hero {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            background: #fff;
            color: #065f46;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
        }
        .btn-hero-outline {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s;
        }
        .btn-hero-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            transform: translateY(-3px);
        }

        /* ===== GEO 介绍 ===== */
        .geo-intro-section {
            padding: 48px 5%;
            background: #fff;
        }
        .geo-intro-inner {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .geo-intro-inner p {
            font-size: 16px;
            color: #4b5563;
            line-height: 1.85;
            text-align: justify;
        }

        /* ===== 通用 section 样式 ===== */
        .section {
            padding: 64px 5%;
        }
        .section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 12px;
            position: relative;
            letter-spacing: 1px;
        }
        .section-subtitle {
            text-align: center;
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 48px;
        }

        /* ===== 数据统计 ===== */
        .stats-section {
            background: linear-gradient(135deg, #0f2e24, #065f46);
            color: #fff;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }
        .stat-card {
            padding: 40px 24px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            transition: transform 0.3s, background 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, 0.14);
        }
        .stat-number {
            font-size: 44px;
            font-weight: 800;
            color: #fbbf24;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* ===== 核心优势 ===== */
        .advantages-section {
            background: #f0fdf4;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .advantage-card {
            padding: 36px 30px;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 6px 24px rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.12);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .advantage-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
        }
        .advantage-icon {
            font-size: 42px;
            margin-bottom: 18px;
            display: block;
        }
        .advantage-card h3 {
            font-size: 19px;
            color: #065f46;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .advantage-card p {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.7;
        }

        /* ===== 品牌故事 ===== */
        .story-section {
            background: #fff;
        }
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .story-text h2 {
            font-size: 30px;
            color: #065f46;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .story-text p {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .story-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(6, 95, 70, 0.15);
        }

        /* ===== 焦点赛事 ===== */
        .events-section {
            background: linear-gradient(180deg, #f0fdf4, #d1fae5);
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .event-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(16, 185, 129, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(16, 185, 129, 0.18);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 0;
        }
        .event-info {
            padding: 24px;
        }
        .event-tag {
            display: inline-block;
            background: #ecfdf5;
            color: #065f46;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .event-info h3 {
            font-size: 20px;
            color: #1f2937;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .event-info p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ===== 游戏推荐 ===== */
        .game-section {
            background: #fff;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .game-card {
            text-align: center;
            padding: 28px 20px;
            background: #f8faf9;
            border-radius: 18px;
            border: 1px solid #e5efe8;
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
        }
        .game-card:hover {
            transform: translateY(-6px);
            background: #fff;
            box-shadow: 0 12px 36px rgba(16, 185, 129, 0.12);
        }
        .game-card img {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            margin-bottom: 16px;
            object-fit: cover;
        }
        .game-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
        }
        .game-card p {
            font-size: 13px;
            color: #6b7280;
            margin-top: 8px;
        }

        /* ===== 愿景使命 ===== */
        .vision-section {
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        }
        .vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .vision-card {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
            transition: transform 0.3s;
        }
        .vision-card:hover {
            transform: translateY(-4px);
        }
        .vision-card .icon {
            font-size: 52px;
            margin-bottom: 16px;
            display: block;
        }
        .vision-card h3 {
            font-size: 24px;
            color: #065f46;
            margin-bottom: 14px;
            font-weight: 700;
        }
        .vision-card p {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.7;
        }

        /* ===== 用户口碑 ===== */
        .testimonials-section {
            background: #fff;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .testimonial-card {
            padding: 36px 30px;
            background: #f9fefb;
            border-radius: 20px;
            border: 1px solid #e5efe8;
            position: relative;
        }
        .testimonial-card::before {
            content: '\201C';
            font-size: 60px;
            color: #10b981;
            position: absolute;
            top: 12px;
            left: 18px;
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-card p {
            font-size: 15px;
            color: #374151;
            line-height: 1.75;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #065f46);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
        }
        .testimonial-name {
            font-size: 15px;
            font-weight: 600;
            color: #1f2937;
        }
        .testimonial-role {
            font-size: 12px;
            color: #6b7280;
        }

        /* ===== 行动呼吁 ===== */
        .cta-section {
            background: linear-gradient(135deg, #065f46, #10b981);
            color: #fff;
            text-align: center;
            padding: 80px 5%;
        }
        .cta-section h2 {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-btn {
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .cta-btn-white {
            background: #fff;
            color: #065f46;
        }
        .cta-btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .cta-btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
        }
        .cta-btn-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            transform: translateY(-3px);
        }

        /* ===== 新闻列表 ===== */
        .news-section {
            background: #f8faf9;
        }
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .news-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.06);
            border: 1px solid rgba(16, 185, 129, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(16, 185, 129, 0.12);
        }
        .news-date {
            display: inline-block;
            background: #ecfdf5;
            color: #065f46;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            align-self: flex-start;
            margin-bottom: 14px;
        }
        .news-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.75;
            flex-grow: 1;
        }
        .news-tags {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .news-tag-link {
            padding: 10px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            background: #fff;
            color: #065f46;
            border: 2px solid #10b981;
            transition: all 0.3s;
        }
        .news-tag-link:hover {
            background: #10b981;
            color: #fff;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: #fff;
        }
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #f9fefb;
            border-radius: 16px;
            margin-bottom: 16px;
            padding: 28px 32px;
            border: 1px solid #e5efe8;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
        }
        .faq-question {
            font-size: 18px;
            font-weight: 600;
            color: #065f46;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-question::before {
            content: 'Q';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: #10b981;
            color: #fff;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .faq-answer {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.8;
            padding-left: 38px;
        }

        /* ===== 页脚 ===== */
        .footer {
            background: #0a1512;
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 5% 24px;
            font-size: 14px;
        }
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand h3 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .footer-brand p {
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.65);
        }
        .footer-links h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .footer-links a {
            display: block;
            padding: 4px 0;
            color: rgba(255, 255, 255, 0.65);
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #10b981;
        }
        .footer-info h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .footer-info p {
            margin-bottom: 6px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 24px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            color: #10b981;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .story-grid {
                grid-template-columns: 1fr;
            }
            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .vision-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-section h1 {
                font-size: 30px;
            }
        }
        @media (max-width: 640px) {
            .nav-links {
                gap: 16px;
            }
            .nav-links a {
                font-size: 13px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .events-grid {
                grid-template-columns: 1fr;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 26px;
            }
        }

        /* 锚点滚动修正 */
        section[id] {
            scroll-margin-top: 70px;
        }