* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            color: #1f2937;
            background: #f0fdf4;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .site-header {
            background: linear-gradient(135deg, #10b981, #065f46);
            padding: 14px 0;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo img {
            height: 36px;
            width: auto;
        }
        .logo span {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #facc15;
        }

        /* Hero / GEO */
        .geo-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
            padding: 60px 0 50px;
        }
        .geo-inner {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .geo-text {
            flex: 1;
            min-width: 300px;
        }
        .geo-text h1 {
            font-size: 2rem;
            font-weight: 800;
            color: #065f46;
            margin-bottom: 16px;
            line-height: 1.3;
            border-left: 5px solid #10b981;
            padding-left: 18px;
        }
        .geo-text p {
            font-size: 1rem;
            color: #374151;
            margin-bottom: 10px;
        }
        .geo-img {
            flex: 0 0 320px;
        }
        .geo-img img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(6, 95, 70, 0.25);
        }
        .geo-badge {
            display: inline-block;
            background: #065f46;
            color: #facc15;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 18px;
        }

        /* Section common */
        .section {
            padding: 50px 0;
        }
        .section-title {
            text-align: center;
            font-size: 1.7rem;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 10px;
            position: relative;
        }
        .section-subtitle {
            text-align: center;
            color: #6b7280;
            font-size: 0.95rem;
            margin-bottom: 36px;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #facc15);
            margin: 12px auto 0;
            border-radius: 3px;
        }

        /* Stats */
        .stats-section {
            background: linear-gradient(135deg, #065f46, #10b981);
            padding: 50px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 32px 16px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #facc15;
        }
        .stat-item .label {
            color: #d1fae5;
            font-size: 0.9rem;
            margin-top: 6px;
        }

        /* Advantages */
        .adv-section {
            background: #fff;
            padding: 50px 0;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: #ecfdf5;
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            border: 1px solid #d1fae5;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .adv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
        }
        .adv-card .icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
        .adv-card h3 {
            font-size: 1.05rem;
            color: #065f46;
            margin-bottom: 8px;
        }
        .adv-card p {
            font-size: 0.9rem;
            color: #4b5563;
        }

        /* Brand Story */
        .story-section {
            background: #ecfdf5;
            padding: 50px 0;
        }
        .story-inner {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-img {
            flex: 0 0 360px;
        }
        .story-img img {
            width: 100%;
            border-radius: 16px;
        }
        .story-text {
            flex: 1;
            min-width: 280px;
        }
        .story-text h2 {
            font-size: 1.7rem;
            color: #065f46;
            margin-bottom: 14px;
        }
        .story-text p {
            color: #374151;
            margin-bottom: 12px;
        }

        /* Featured Events */
        .events-section {
            background: #fff;
            padding: 50px 0;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            background: linear-gradient(145deg, #f0fdf4, #ecfdf5);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            transition: transform 0.3s;
        }
        .event-card:hover {
            transform: scale(1.02);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-info {
            padding: 20px;
        }
        .event-info h3 {
            font-size: 1.1rem;
            color: #065f46;
            margin-bottom: 6px;
        }
        .event-info p {
            font-size: 0.9rem;
            color: #6b7280;
        }

        /* Game Recommend */
        .game-recommend-section {
            background: linear-gradient(135deg, #f8fafc, #ecfdf5);
            padding: 50px 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .game-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .game-card img {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            margin-bottom: 12px;
        }
        .game-card h3 {
            font-size: 1rem;
            color: #065f46;
            margin-bottom: 6px;
        }
        .game-card p {
            font-size: 0.85rem;
            color: #6b7280;
        }

        /* Coverage */
        .coverage-section {
            background: #065f46;
            padding: 50px 0;
            color: #ecfdf5;
        }
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .coverage-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .coverage-item .icon {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        /* Partners */
        .partners-section {
            background: #fff;
            padding: 50px 0;
        }
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            align-items: center;
        }
        .partner-logo {
            background: #f8fafc;
            border-radius: 12px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #4b5563;
            border: 1px solid #e5e7eb;
        }
        .partner-logo img {
            height: 30px;
            width: auto;
        }

        /* News */
        .news-section {
            background: #ecfdf5;
            padding: 50px 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .news-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
        }
        .news-date {
            display: inline-block;
            background: #10b981;
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            align-self: flex-start;
            margin-bottom: 12px;
        }
        .news-card h3 {
            font-size: 1.15rem;
            color: #065f46;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 0.9rem;
            color: #4b5563;
            flex: 1;
        }
        .news-more {
            text-align: center;
            margin-top: 30px;
        }
        .news-more a {
            display: inline-block;
            background: #065f46;
            color: #fff;
            padding: 10px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        .news-more a:hover {
            background: #10b981;
        }

        /* FAQ */
        .faq-section {
            background: #fff;
            padding: 50px 0;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: #f8fafc;
            border-radius: 14px;
            padding: 24px 28px;
            border: 1px solid #e5e7eb;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover {
            box-shadow: 0 6px 20px rgba(6, 95, 70, 0.08);
        }
        .faq-item h3 {
            font-size: 1rem;
            color: #065f46;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item h3::after {
            content: '+';
            font-size: 1.4rem;
            color: #10b981;
            transition: transform 0.3s;
        }
        .faq-item h3:hover::after {
            transform: rotate(45deg);
        }
        .faq-item p {
            font-size: 0.9rem;
            color: #4b5563;
            line-height: 1.8;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #065f46, #10b981);
            padding: 60px 0;
            text-align: center;
            color: #fff;
        }
        .cta-section h2 {
            font-size: 1.8rem;
            margin-bottom: 14px;
            color: #facc15;
        }
        .cta-section p {
            font-size: 1.05rem;
            margin-bottom: 28px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-buttons a {
            display: inline-block;
            background: #fff;
            color: #065f46;
            padding: 12px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-buttons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        .cta-buttons a.download {
            background: #facc15;
            color: #065f46;
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 20px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-brand img {
            height: 36px;
            margin-bottom: 10px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .footer-brand p {
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .footer-links h4,
        .footer-contact h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 14px;
        }
        .footer-links a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .footer-links a:hover {
            color: #facc15;
        }
        .footer-contact p {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-bottom: 6px;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            font-size: 0.8rem;
            color: #64748b;
        }
        .footer-bottom a {
            color: #94a3b8;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #facc15;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 10px;
            }
            .geo-inner,
            .story-inner {
                flex-direction: column;
            }
            .stats-grid,
            .adv-grid,
            .game-grid,
            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .coverage-grid {
                grid-template-columns: 1fr;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid,
            .adv-grid,
            .game-grid,
            .events-grid {
                grid-template-columns: 1fr;
            }
        }