* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #14b8a6 100%);
            min-height: 100vh;
            color: #e2e8f0;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s ease;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 顶部导航 */
        .navbar {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(20, 184, 166, 0.3);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(90deg, #14b8a6, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .brand-logo img {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            -webkit-text-fill-color: initial;
        }
        .nav-links {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            color: #cbd5e1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all .3s;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #14b8a6, #a855f7);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
            transform: translateY(-2px);
        }

        /* HERO */
        .hero-section {
            padding: 60px 0 80px;
            position: relative;
        }
        .hero-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 42px;
            line-height: 1.3;
            font-weight: 800;
            background: linear-gradient(120deg, #ffffff 20%, #14b8a6 50%, #a855f7 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .hero-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #94a3b8;
            margin-bottom: 30px;
        }
        .hero-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
            transform: rotate(2deg);
            transition: all .5s;
        }
        .hero-img:hover {
            transform: rotate(0deg) scale(1.02);
        }
        .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 通用区块 */
        .section-pad {
            padding: 60px 0;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(90deg, #14b8a6, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        .section-sub {
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 40px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* GEO */
        .geo-intro-section {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(168, 85, 247, 0.05));
            border-radius: 24px;
            padding: 40px;
            margin: 30px 0;
            border: 1px solid rgba(20, 184, 166, 0.15);
        }
        .geo-intro-section h2 {
            font-size: 24px;
            color: #14b8a6;
            margin-bottom: 16px;
        }
        .geo-intro-section p {
            line-height: 1.9;
            font-size: 15px;
            color: #cbd5e1;
            text-indent: 2em;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all .4s;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(20, 184, 166, 0.1), transparent);
            animation: scan 4s infinite linear;
        }
        @keyframes scan {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        .stat-card:hover {
            transform: translateY(-6px);
            border-color: rgba(20, 184, 166, 0.4);
            box-shadow: 0 10px 40px rgba(20, 184, 166, 0.15);
        }
        .stat-num {
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(120deg, #14b8a6, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            font-size: 14px;
            color: #94a3b8;
            margin-top: 8px;
        }

        /* 核心优势 */
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
            border-radius: 20px;
            padding: 32px 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all .4s;
            position: relative;
        }
        .adv-card:hover {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
            transform: translateY(-4px);
        }
        .adv-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 16px;
            background: rgba(20, 184, 166, 0.15);
            border: 1px solid rgba(20, 184, 166, 0.3);
        }
        .adv-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #fff;
        }
        .adv-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #94a3b8;
        }

        /* 品牌故事 */
        .story-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .story-text h2 {
            font-size: 28px;
            margin-bottom: 16px;
            color: #14b8a6;
        }
        .story-text p {
            line-height: 1.8;
            color: #94a3b8;
            font-size: 15px;
            margin-bottom: 16px;
        }
        .story-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(168, 85, 247, 0.25);
        }
        .story-img img {
            width: 100%;
            display: block;
        }

        /* 时间线 */
        .timeline-wrap {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .timeline-wrap::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #14b8a6, #a855f7);
            transform: translateX(-50%);
        }
        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding: 20px 0;
            position: relative;
            width: 50%;
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            justify-content: flex-start;
        }
        .timeline-dot {
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #14b8a6;
            top: 30px;
            right: -8px;
            box-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
        }
        .timeline-item:nth-child(even) .timeline-dot {
            left: -8px;
            right: auto;
            background: #a855f7;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
        }
        .timeline-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 20px;
            width: 85%;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all .3s;
        }
        .timeline-card:hover {
            border-color: rgba(20, 184, 166, 0.4);
        }
        .timeline-card h4 {
            color: #14b8a6;
            margin-bottom: 6px;
            font-size: 16px;
        }
        .timeline-card p {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.5;
        }

        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            background: linear-gradient(145deg, rgba(20, 184, 166, 0.08), rgba(168, 85, 247, 0.04));
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all .4s;
            position: relative;
            overflow: hidden;
        }
        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            transition: all .5s;
        }
        .event-card:hover::before {
            left: 100%;
        }
        .event-card:hover {
            border-color: rgba(20, 184, 166, 0.3);
            transform: translateY(-4px);
        }
        .event-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            background: rgba(20, 184, 166, 0.2);
            color: #14b8a6;
            margin-bottom: 14px;
        }
        .event-card h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #fff;
        }
        .event-card p {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.6;
        }

        /* 游戏推荐 */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .game-card {
            border-radius: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all .4s;
        }
        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
            border-color: rgba(168, 85, 247, 0.3);
        }
        .game-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 16px;
        }
        .game-info h4 {
            font-size: 16px;
            margin-bottom: 6px;
            color: #fff;
        }
        .game-info p {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.5;
        }

        /* 新闻 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all .4s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-6px);
            border-color: rgba(20, 184, 166, 0.3);
            box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
        }
        .news-img {
            height: 160px;
            overflow: hidden;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .5s;
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-body {
            padding: 20px;
            flex: 1;
        }
        .news-date {
            font-size: 13px;
            color: #14b8a6;
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }
        .news-body h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #fff;
            line-height: 1.4;
        }
        .news-body p {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.7;
        }

        /* FAQ */
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 16px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.03);
            overflow: hidden;
            transition: all .3s;
        }
        .faq-item:hover {
            border-color: rgba(20, 184, 166, 0.3);
        }
        .faq-q {
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-q span {
            font-size: 20px;
            color: #14b8a6;
            transition: all .3s;
        }
        .faq-a {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all .4s;
            font-size: 14px;
            line-height: 1.8;
            color: #94a3b8;
            background: rgba(0, 0, 0, 0.1);
        }
        .faq-item.active .faq-a {
            padding: 16px 24px 24px;
            max-height: 500px;
        }
        .faq-item.active .faq-q span {
            transform: rotate(45deg);
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(168, 85, 247, 0.1));
            border-radius: 30px;
            padding: 50px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin: 30px 0;
        }
        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 12px;
            background: linear-gradient(90deg, #14b8a6, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-section p {
            color: #94a3b8;
            margin-bottom: 24px;
        }
        .cta-btn {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #14b8a6, #a855f7);
            box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
            transition: all .3s;
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
        }

        /* 页脚 */
        .footer {
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(20, 184, 166, 0.2);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 16px;
        }
        .footer p {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.7;
        }
        .footer-links a {
            display: block;
            color: #94a3b8;
            font-size: 13px;
            margin-bottom: 6px;
            transition: all .3s;
        }
        .footer-links a:hover {
            color: #14b8a6;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }

        /* 响应式 */
        @media(max-width:768px) {
            .hero-wrap,
            .story-wrap {
                grid-template-columns: 1fr;
            }
            .stats-grid,
            .adv-grid,
            .events-grid,
            .game-grid,
            .news-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .timeline-wrap::before {
                left: 20px;
            }
            .timeline-item,
            .timeline-item:nth-child(even) {
                width: 100%;
                left: 0;
                padding-left: 50px;
                justify-content: flex-start;
            }
            .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 12px;
                right: auto;
            }
        }
        @media(max-width:520px) {
            .stats-grid,
            .adv-grid,
            .events-grid,
            .game-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 28px;
            }
        }