* {
            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: #fdf6f0;
            color: #2d2a26;
            line-height: 1.75;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        body,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        div,
        section,
        footer,
        nav,
        span,
        small,
        li,
        ul {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }

        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航栏 ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(135deg, #7f1d1d 0%, #ea580c 100%);
            box-shadow: 0 4px 30px rgba(127, 29, 29, 0.35);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 68px;
        }
        .logo {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fde68a;
        }
        .nav-links {
            display: flex;
            gap: 4px;
        }
        .nav-links a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            padding: 8px 18px;
            font-size: 14.5px;
            font-weight: 500;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #fde68a;
            transform: translateY(-1px);
        }

        /* ===== Hero ===== */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(155deg, #7f1d1d 0%, #c2410c 40%, #ea580c 70%, #fbbf24 100%);
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: -50%;
            right: -30%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        .hero h1 {
            font-size: 44px;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
            position: relative;
            z-index: 2;
            letter-spacing: 1px;
        }
        .hero .hero-desc {
            max-width: 760px;
            margin: 0 auto 36px;
            font-size: 16.5px;
            color: rgba(255, 255, 255, 0.92);
            position: relative;
            z-index: 2;
        }
        .hero-btn {
            display: inline-block;
            background: #fff;
            color: #c2410c;
            text-decoration: none;
            padding: 14px 38px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 36px rgba(0, 0, 0, 0.25);
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        /* ===== 通用区块 ===== */
        .section {
            padding: 72px 0;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            color: #7f1d1d;
            margin-bottom: 12px;
            position: relative;
            letter-spacing: 1px;
        }
        .section-subtitle {
            text-align: center;
            font-size: 15px;
            color: #8a8178;
            margin-bottom: 44px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== GEO Intro ===== */
        .geo-intro {
            background: #fff;
            padding: 56px 0;
            border-bottom: 1px solid #f0e5dd;
        }
        .geo-intro .container {
            max-width: 960px;
        }
        .geo-intro p {
            font-size: 16px;
            color: #3a3530;
            text-align: center;
            line-height: 1.9;
        }

        /* ===== 数据统计 ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .stat-card {
            background: linear-gradient(145deg, #fff, #fef3c7);
            border-radius: 20px;
            padding: 36px 20px;
            text-align: center;
            box-shadow: 0 6px 24px rgba(127, 29, 29, 0.07);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transition: left 0.6s;
        }
        .stat-card:hover::before {
            left: 200%;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(127, 29, 29, 0.14);
        }
        .stat-card .num {
            font-size: 42px;
            font-weight: 900;
            background: linear-gradient(135deg, #ea580c, #7f1d1d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 14px;
            color: #6f675f;
            margin-top: 8px;
            font-weight: 500;
        }

        /* ===== 核心优势 ===== */
        .section-bg-cream {
            background: #fdf6f0;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .advantage-card {
            background: #fff;
            border-radius: 20px;
            padding: 36px 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border-top: 4px solid #ea580c;
            transition: all 0.3s ease;
        }
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(234, 88, 12, 0.12);
        }
        .advantage-card .icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .advantage-card h3 {
            font-size: 18px;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .advantage-card p {
            font-size: 14px;
            color: #757575;
            line-height: 1.7;
        }

        /* ===== 品牌故事 ===== */
        .story-wrap {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .story-text {
            flex: 1;
        }
        .story-text h3 {
            font-size: 26px;
            font-weight: 800;
            color: #7f1d1d;
            margin-bottom: 20px;
        }
        .story-text p {
            font-size: 15.5px;
            color: #4a4540;
            margin-bottom: 16px;
            line-height: 1.85;
        }
        .story-img {
            flex: 1;
            text-align: center;
        }
        .story-img img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(127, 29, 29, 0.12);
            max-height: 380px;
            object-fit: cover;
        }

        /* ===== 热门排行 ===== */
        .rank-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            border-radius: 16px;
            padding: 16px 24px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            border-left: 5px solid #ea580c;
        }
        .rank-item:hover {
            transform: translateX(6px);
            box-shadow: 0 6px 24px rgba(234, 88, 12, 0.1);
        }
        .rank-number {
            font-size: 24px;
            font-weight: 900;
            color: #c2410c;
            width: 50px;
            text-align: center;
        }
        .rank-icon {
            font-size: 34px;
        }
        .rank-name {
            flex: 1;
            font-size: 17px;
            font-weight: 600;
            color: #1a1a1a;
        }
        .rank-desc {
            font-size: 13px;
            color: #8a8178;
        }

        /* ===== 游戏推荐 ===== */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .game-card {
            background: linear-gradient(150deg, #fff, #fef3c7);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(234, 88, 12, 0.12);
        }
        .game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .game-info {
            padding: 24px;
        }
        .game-info h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }
        .game-info p {
            font-size: 14px;
            color: #6f675f;
            line-height: 1.6;
        }

        /* ===== 新手引导 ===== */
        .steps-wrap {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .step-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            width: calc(25% - 18px);
            min-width: 200px;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border-bottom: 4px solid #ea580c;
        }
        .step-card .step-num {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ea580c, #7f1d1d);
            color: #fff;
            font-weight: 800;
            font-size: 16px;
            margin-bottom: 16px;
        }
        .step-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .step-card p {
            font-size: 14px;
            color: #757575;
        }

        /* ===== 用户口碑 ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            position: relative;
        }
        .testimonial-card::before {
            content: "\201C";
            font-size: 72px;
            color: #ea580c;
            position: absolute;
            top: 8px;
            right: 20px;
            opacity: 0.15;
            font-weight: 900;
        }
        .testimonial-card p {
            font-size: 14.5px;
            color: #4a4540;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 16px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-author .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ea580c, #7f1d1d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
        }
        .testimonial-author .name {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* ===== 合作伙伴 ===== */
        .partners-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 20px 0;
        }
        .partner-item {
            background: #fff;
            border-radius: 16px;
            padding: 20px 32px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            font-weight: 600;
            color: #4a4540;
            transition: all 0.3s ease;
        }
        .partner-item:hover {
            box-shadow: 0 8px 28px rgba(234, 88, 12, 0.1);
            transform: translateY(-3px);
        }
        .partner-item img {
            max-height: 32px;
            width: auto;
            border-radius: 6px;
        }

        /* ===== 深度内容 ===== */
        .deep-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .deep-card {
            background: #fff;
            border-radius: 20px;
            padding: 36px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border-left: 6px solid #ea580c;
        }
        .deep-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            color: #1a1a1a;
        }
        .deep-card p {
            font-size: 14.5px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 12px;
        }
        .deep-card .meta {
            font-size: 13px;
            color: #9a928a;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, #7f1d1d, #ea580c);
            padding: 64px 0;
            text-align: center;
            color: #fff;
        }
        .cta-section h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 14px;
        }
        .cta-section p {
            font-size: 16px;
            max-width: 640px;
            margin: 0 auto 28px;
            opacity: 0.95;
        }
        .cta-btn {
            display: inline-block;
            background: #fff;
            color: #c2410c;
            text-decoration: none;
            padding: 14px 40px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .cta-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
        }

        /* ===== 新闻列表 ===== */
        .news-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        .news-item {
            display: flex;
            gap: 20px;
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border-left: 4px solid #ea580c;
        }
        .news-item:hover {
            box-shadow: 0 8px 30px rgba(234, 88, 12, 0.1);
        }
        .news-item img {
            width: 150px;
            height: 100px;
            object-fit: cover;
            border-radius: 12px;
            flex-shrink: 0;
        }
        .news-content {
            flex: 1;
        }
        .news-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
            line-height: 1.4;
        }
        .news-title .news-date {
            font-size: 13px;
            font-weight: 400;
            color: #9a928a;
            margin-left: 10px;
            background: #fdf6f0;
            padding: 2px 10px;
            border-radius: 20px;
            white-space: nowrap;
            display: inline-block;
        }
        .news-excerpt {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-more {
            color: #ea580c;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            margin-top: 8px;
            display: inline-block;
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 840px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            padding: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            overflow: hidden;
        }
        .faq-question {
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: background 0.3s;
            color: #1a1a1a;
        }
        .faq-question:hover {
            background: #fdf6f0;
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ea580c, #7f1d1d);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            transition: transform 0.3s;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            font-size: 14.5px;
            color: #555;
            line-height: 1.8;
            border-top: 0 solid #f0e5dd;
        }
        .faq-item.open .faq-answer {
            max-height: 600px;
            padding: 0 24px 20px;
            border-top-width: 1px;
            padding-top: 16px;
        }

        /* ===== 页脚 ===== */
        .footer {
            background: linear-gradient(160deg, #1c0a0a, #3b1313);
            color: #c9b8b4;
            padding: 56px 0 0;
            font-size: 14px;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            padding-bottom: 28px;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            color: #fde68a;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .footer-col p,
        .footer-col span {
            display: block;
            line-height: 2;
            color: #b5a29e;
        }
        .footer-col a {
            color: #d3b8b2;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-col a:hover {
            color: #fde68a;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: #8a7270;
        }
        .footer-bottom a {
            color: #c9b8b4;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #fde68a;
        }

        /* ===== 响应式 ===== */
        @media(max-width:768px) {
            .hero h1 {
                font-size: 30px;
            }
            .stats-grid,
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .story-wrap {
                flex-direction: column;
            }
            .nav-links a {
                padding: 6px 12px;
                font-size: 13px;
            }
            .news-item {
                flex-direction: column;
            }
            .news-item img {
                width: 100%;
                height: 160px;
            }
        }
        @media(max-width:480px) {
            .stats-grid,
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .step-card {
                width: 100%;
            }
        }