*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        html,
        body,
        div,
        span,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        button,
        input,
        textarea,
        nav,
        header,
        footer,
        section,
        article,
        li,
        ul,
        ol,
        table,
        th,
        td,
        figure,
        figcaption,
        blockquote,
        img,
        em,
        strong,
        small {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        body {
            background: linear-gradient(145deg, #f8fafc 0%, #e0f2fe 50%, #f0f9ff 100%);
            color: #1e293b;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        .site-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(224, 242, 254, 0.9);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(14, 165, 233, 0.06);
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.35rem;
            color: #0284c7;
            letter-spacing: 1px;
        }
        .nav-brand img {
            width: 36px;
            height: 36px;
            border-radius: 8px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #334155;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: #e0f2fe;
            color: #0284c7;
        }

        /* Hero */
        .hero {
            padding: 72px 24px 48px;
            text-align: center;
            background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0c4a6e;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: 1px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-sub {
            font-size: 1.15rem;
            color: #475569;
            max-width: 780px;
            margin: 0 auto 32px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 24px rgba(14, 165, 233, 0.08);
            backdrop-filter: blur(8px);
        }
        .hero-img {
            max-width: 400px;
            margin: 24px auto 0;
            border-radius: 20px;
            box-shadow: 0 8px 40px rgba(14, 165, 233, 0.15);
        }

        /* GEO */
        .geo-intro {
            padding: 48px 24px;
            background: #ffffff;
        }
        .geo-intro p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.05rem;
            color: #334155;
            text-align: justify;
        }

        /* Section通用 */
        .section {
            padding: 56px 24px;
        }
        .section-alt {
            background: rgba(255, 255, 255, 0.65);
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-subtitle {
            text-align: center;
            color: #475569;
            font-size: 1.02rem;
            margin-bottom: 36px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 数据统计 */
        .data-stats {
            padding: 56px 24px;
            background: linear-gradient(135deg, #e0f2fe, #f8fafc);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 4px 24px rgba(14, 165, 233, 0.08);
            border: 1px solid rgba(224, 242, 254, 0.9);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0284c7;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #64748b;
            margin-top: 8px;
        }

        /* 核心优势 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .advantage-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 24px rgba(14, 165, 233, 0.06);
            border: 1px solid rgba(224, 242, 254, 0.9);
            text-align: center;
            transition: transform 0.3s;
        }
        .advantage-card:hover {
            transform: translateY(-6px);
        }
        .advantage-icon {
            font-size: 2.6rem;
            margin-bottom: 14px;
        }
        .advantage-card h3 {
            font-size: 1.12rem;
            color: #0c4a6e;
            margin-bottom: 10px;
        }
        .advantage-card p {
            font-size: 0.95rem;
            color: #475569;
        }

        /* 品牌故事 */
        .brand-story {
            padding: 56px 24px;
            background: #ffffff;
        }
        .story-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .story-text p {
            margin-bottom: 16px;
            color: #334155;
            text-align: justify;
        }
        .story-image img {
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
            width: 100%;
        }
        @media(max-width:768px) {
            .story-layout {
                grid-template-columns: 1fr;
            }
        }

        /* 时间线 */
        .timeline-section {
            padding: 56px 24px;
            background: linear-gradient(180deg, #f8fafc, #e0f2fe);
        }
        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding-left: 40px;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #0284c7, #38bdf8, transparent);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 32px;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 14px;
            box-shadow: 0 2px 16px rgba(14, 165, 233, 0.06);
            border: 1px solid rgba(224, 242, 254, 0.8);
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -34px;
            top: 26px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #0284c7;
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
        }
        .timeline-item h3 {
            color: #0c4a6e;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        .timeline-item p {
            color: #475569;
            font-size: 0.95rem;
        }

        /* 游戏推荐 */
        .game-recommend {
            padding: 56px 24px;
            background: #f8fafc;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .game-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.06);
            border: 1px solid rgba(224, 242, 254, 0.8);
            transition: all 0.3s;
        }
        .game-card:hover {
            transform: scale(1.02);
        }
        .game-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 14px;
        }
        .game-card h3 {
            font-size: 1.02rem;
            color: #0c4a6e;
            margin-bottom: 6px;
        }
        .game-card p {
            font-size: 0.88rem;
            color: #64748b;
        }

        /* 焦点赛事 */
        .featured-events {
            padding: 56px 24px;
            background: linear-gradient(135deg, #e0f2fe, #f8fafc);
        }
        .event-card {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.9);
            text-align: center;
        }
        .event-card h3 {
            font-size: 1.4rem;
            color: #0c4a6e;
            margin-bottom: 10px;
        }
        .event-card p {
            color: #475569;
            margin-bottom: 16px;
        }
        .event-btn {
            display: inline-block;
            background: #0284c7;
            color: #fff;
            padding: 10px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .event-btn:hover {
            background: #0369a1;
        }

        /* 用户口碑 */
        .testimonials {
            padding: 56px 24px;
            background: #ffffff;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testi-card {
            background: rgba(248, 250, 252, 0.8);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(224, 242, 254, 0.9);
            box-shadow: 0 2px 16px rgba(14, 165, 233, 0.04);
        }
        .testi-card .quote {
            font-size: 1rem;
            color: #334155;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .testi-card .author {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 600;
        }

        /* 合作伙伴 */
        .partners {
            padding: 56px 24px;
            background: #f8fafc;
        }
        .partner-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        .partner-item {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 14px 24px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #475569;
            border: 1px solid rgba(224, 242, 254, 0.9);
            box-shadow: 0 2px 12px rgba(14, 165, 233, 0.04);
        }

        /* 新闻 */
        .news-list {
            padding: 56px 24px;
            background: linear-gradient(180deg, #f0f9ff, #ffffff);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.06);
            border: 1px solid rgba(224, 242, 254, 0.9);
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
        }
        .news-date {
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: 600;
            margin-bottom: 8px;
            display: inline-block;
            background: #f0f9ff;
            padding: 3px 12px;
            border-radius: 20px;
        }
        .news-card h3 {
            font-size: 1.05rem;
            color: #0c4a6e;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-card h3 a:hover {
            color: #0284c7;
        }
        .news-card p {
            font-size: 0.92rem;
            color: #475569;
            flex-grow: 1;
        }
        .read-more {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #0284c7;
        }
        .read-more:hover {
            color: #0369a1;
            text-decoration: underline;
        }

        /* FAQ */
        .faq {
            padding: 56px 24px;
            background: #f8fafc;
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 14px;
            padding: 24px 28px;
            margin-bottom: 16px;
            box-shadow: 0 2px 16px rgba(14, 165, 233, 0.05);
            border: 1px solid rgba(224, 242, 254, 0.8);
            transition: background 0.3s;
        }
        .faq-item:hover {
            background: #ffffff;
        }
        .faq-item h3 {
            font-size: 1.08rem;
            color: #0c4a6e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-item p {
            font-size: 0.95rem;
            color: #334155;
            line-height: 1.7;
        }

        /* CTA */
        .cta {
            padding: 64px 24px;
            background: linear-gradient(135deg, #0c4a6e, #0284c7);
            text-align: center;
        }
        .cta h2 {
            font-size: 2rem;
            color: #f0f9ff;
            margin-bottom: 12px;
        }
        .cta p {
            font-size: 1.1rem;
            color: #bae6fd;
            margin-bottom: 28px;
        }
        .cta-btn {
            display: inline-block;
            background: #ffffff;
            color: #0284c7;
            padding: 12px 36px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s;
        }
        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
        }

        /* 页脚 */
        .site-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 48px 24px 24px;
            font-size: 0.92rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 10px;
        }
        .footer-brand img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
        }
        .footer-desc {
            line-height: 1.6;
            font-size: 0.9rem;
        }
        .footer-contact p {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .footer-links a {
            display: inline-block;
            margin-right: 14px;
            color: #94a3b8;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #e0f2fe;
        }
        .footer-bottom {
            border-top: 1px solid rgba(148, 163, 184, 0.2);
            padding-top: 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.88rem;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: #7dd3fc;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }

        @media(max-width:768px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                width: 100%;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
        }