* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        body {
            background: #fdf8f5;
            color: #1a1a1a;
            line-height: 1.75;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        /* 导航 */
        .header-nav {
            background: linear-gradient(135deg, #f97316, #9a3412);
            padding: 14px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 6px 16px;
            border-radius: 24px;
            transition: background 0.3s, transform 0.2s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        /* 通用容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 30px;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #fdf0e6, #ffe8d9, #ffd9c0);
            text-align: center;
            padding: 60px 30px 40px;
            border-bottom: 4px solid #f97316;
        }
        .hero h1 {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(135deg, #9a3412, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .geo-text {
            max-width: 900px;
            margin: 0 auto;
            font-size: 17px;
            color: #4a3b32;
            text-align: justify;
            line-height: 2;
            background: rgba(255, 255, 255, 0.55);
            border-radius: 16px;
            padding: 24px 30px;
            box-shadow: 0 4px 24px rgba(255, 140, 66, 0.1);
        }

        /* 区块标题 */
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 14px;
            color: #9a3412;
            letter-spacing: 1px;
        }
        .section-sub {
            text-align: center;
            color: #6b5a4e;
            font-size: 15px;
            margin-bottom: 40px;
        }

        /* 数据统计 */
        .data-stats {
            background: #fff;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stat-card {
            background: linear-gradient(135deg, #fff7f0, #ffe8d9);
            border-radius: 20px;
            padding: 36px 16px;
            box-shadow: 0 6px 24px rgba(249, 115, 22, 0.12);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
        }
        .stat-num {
            font-size: 42px;
            font-weight: 800;
            color: #f97316;
        }
        .stat-label {
            font-size: 15px;
            color: #7a6248;
            margin-top: 8px;
        }

        /* 核心优势 */
        .core-advantages {
            background: linear-gradient(180deg, #fdf8f5, #fff);
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 22px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-top: 4px solid #f97316;
            transition: transform 0.3s;
        }
        .adv-card:hover {
            transform: scale(1.03);
        }
        .adv-icon {
            font-size: 40px;
            margin-bottom: 14px;
        }
        .adv-card h3 {
            font-size: 18px;
            color: #9a3412;
            margin-bottom: 10px;
        }
        .adv-card p {
            font-size: 14px;
            color: #6b5a4e;
        }

        /* 品牌故事 */
        .brand-story {
            background: #fdf8f5;
        }
        .story-wrap {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-img {
            flex: 1;
            min-width: 280px;
            text-align: center;
        }
        .story-img img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .story-text {
            flex: 1;
            min-width: 280px;
        }
        .story-text h3 {
            font-size: 24px;
            color: #9a3412;
            margin-bottom: 16px;
        }
        .story-text p {
            font-size: 15px;
            color: #4a3b32;
            margin-bottom: 14px;
        }

        /* 游戏推荐 */
        .game-recommend {
            background: #fff;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .game-card {
            background: linear-gradient(135deg, #fff7f0, #fde7d7);
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 6px 24px rgba(249, 115, 22, 0.1);
            transition: transform 0.3s;
        }
        .game-card:hover {
            transform: translateY(-6px) rotate(1deg);
        }
        .game-card img {
            max-width: 120px;
            margin-bottom: 16px;
        }
        .game-card h3 {
            font-size: 18px;
            color: #9a3412;
        }
        .game-card p {
            font-size: 14px;
            color: #6b5a4e;
            margin-top: 8px;
        }

        /* 用户口碑 */
        .testimonials {
            background: linear-gradient(180deg, #fdf8f5, #fff);
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testi-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #f97316;
        }
        .testi-card .avatar {
            font-size: 36px;
            margin-bottom: 10px;
        }
        .testi-card p {
            font-size: 14px;
            color: #4a3b32;
            margin-bottom: 12px;
            font-style: italic;
        }
        .testi-card .name {
            font-weight: 700;
            color: #9a3412;
            font-size: 14px;
        }

        /* 合作伙伴 */
        .partners {
            background: #fff;
        }
        .partner-grid {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }
        .partner-grid img {
            max-height: 50px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .partner-grid img:hover {
            opacity: 1;
        }

        /* 新闻列表 */
        .news-list {
            background: linear-gradient(180deg, #fdf8f5, #f8ede5);
        }
        .news-wrap {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .news-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            display: flex;
            gap: 18px;
            transition: transform 0.2s;
            border: 1px solid #f0e0d0;
        }
        .news-card:hover {
            transform: translateX(4px);
        }
        .news-date {
            display: inline-block;
            background: linear-gradient(135deg, #f97316, #9a3412);
            color: #fff;
            font-size: 13px;
            border-radius: 20px;
            padding: 2px 12px;
            margin-bottom: 8px;
            font-weight: 600;
            white-space: nowrap;
        }
        .news-card h3 {
            font-size: 17px;
            color: #2a2a2a;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .news-card p {
            font-size: 14px;
            color: #6b5a4e;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* FAQ */
        .faq {
            background: #fff;
        }
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 16px;
            border-radius: 16px;
            border: 1px solid #f0e0d0;
            background: #fdfaf7;
            padding: 24px 28px;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
        }
        .faq-item h3 {
            font-size: 17px;
            color: #9a3412;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .faq-item p {
            font-size: 15px;
            color: #4a3b32;
            line-height: 1.8;
        }

        /* 页脚 */
        .site-footer {
            background: #1a1a1a;
            color: #b0a090;
            padding: 40px 30px 20px;
            text-align: center;
            font-size: 14px;
        }
        .site-footer a {
            color: #f97316;
        }
        .footer-info {
            max-width: 900px;
            margin: 0 auto;
            line-height: 2;
        }
        .footer-links a {
            margin: 0 8px;
        }
        .footer-copyright {
            margin-top: 20px;
            border-top: 1px solid #333;
            padding-top: 16px;
            font-size: 13px;
            color: #7a6a5e;
        }

        /* 响应式 */
        @media (max-width: 900px) {
            .stats-grid,
            .adv-grid,
            .testi-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-grid,
            .news-wrap {
                grid-template-columns: 1fr;
            }
            .story-wrap {
                flex-direction: column;
            }
        }
        @media (max-width: 560px) {
            .stats-grid,
            .adv-grid,
            .testi-grid,
            .partner-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 12px;
            }
            .hero h1 {
                font-size: 28px;
            }
        }