* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(145deg, #121212 0%, #1a1a1a 40%, #0d0d0d 100%);
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #eab308;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #fde047;
            text-shadow: 0 0 8px rgba(234, 179, 8, 0.6);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航栏 ===== */
        .site-header {
            background: rgba(10, 10, 10, 0.92);
            border-bottom: 2px solid #eab308;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 24px rgba(234, 179, 8, 0.25);
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
        }
        .brand-icon {
            font-size: 28px;
            margin-right: 6px;
            filter: drop-shadow(0 0 8px #eab308);
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
            font-size: 16px;
        }
        .nav-links a:hover {
            border-bottom-color: #eab308;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            padding: 90px 0 70px;
            background: radial-gradient(ellipse at 80% 20%, rgba(234, 179, 8, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(234, 179, 8, 0.1) 0%, transparent 40%);
            border-bottom: 1px solid #2a2a2a;
            text-align: center;
        }
        .hero h1 {
            font-size: 52px;
            line-height: 1.2;
            font-weight: 800;
            background: linear-gradient(135deg, #fde047 0%, #eab308 50%, #facc15 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
            letter-spacing: 2px;
        }
        .hero .tagline {
            max-width: 760px;
            margin: 0 auto 24px;
            font-size: 18px;
            color: #d4d4d4;
        }
        .hero .hero-img {
            max-width: 220px;
            margin: 28px auto 0;
        }
        .hero .hero-img img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(234, 179, 8, 0.4));
        }

        /* ===== GEO简介 ===== */
        .geo-intro {
            padding: 60px 0;
            background: linear-gradient(180deg, #111 0%, #161616 100%);
            border-bottom: 1px solid #2a2a2a;
        }
        .geo-intro .intro-text {
            max-width: 960px;
            margin: 0 auto;
            font-size: 18px;
            color: #bbb;
            text-align: center;
        }

        /* ===== 数据统计 ===== */
        .data-stats {
            padding: 70px 0;
            background: #0f0f0f;
            border-bottom: 1px solid #2a2a2a;
        }
        .section-title {
            font-size: 34px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 12px;
            color: #fde047;
            letter-spacing: 1px;
        }
        .section-sub {
            text-align: center;
            color: #999;
            margin-bottom: 40px;
            font-size: 15px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .stat-card {
            background: #1a1a1a;
            border: 1px solid rgba(234, 179, 8, 0.3);
            box-shadow: 0 0 18px rgba(234, 179, 8, 0.15);
            padding: 32px 20px;
            text-align: center;
            clip-path: polygon(100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 0);
        }
        .stat-card .num {
            font-size: 42px;
            font-weight: 900;
            color: #eab308;
            line-height: 1.2;
        }
        .stat-card .label {
            color: #aaa;
            font-size: 14px;
            margin-top: 8px;
            letter-spacing: 1px;
        }

        /* ===== 核心优势 ===== */
        .core-advantages {
            padding: 70px 0;
            background: linear-gradient(135deg, #141414 0%, #101010 100%);
            border-bottom: 1px solid #2a2a2a;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: #1b1b1b;
            border-left: 4px solid #eab308;
            padding: 28px 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
        }
        .adv-card:hover {
            transform: translateY(-4px);
        }
        .adv-card h3 {
            color: #fde047;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .adv-card p {
            color: #bbb;
            font-size: 15px;
        }

        /* ===== 品牌故事 ===== */
        .brand-story {
            padding: 70px 0;
            background: #111;
            border-bottom: 1px solid #2a2a2a;
        }
        .story-wrap {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-media {
            flex: 1 1 300px;
            text-align: center;
        }
        .story-media img {
            max-width: 260px;
            border: 2px solid #eab308;
            box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
        }
        .story-content {
            flex: 2 1 400px;
        }
        .story-content h2 {
            color: #fde047;
            font-size: 30px;
            margin-bottom: 16px;
        }
        .story-content p {
            color: #aaa;
            font-size: 16px;
            margin-bottom: 14px;
        }

        /* ===== 焦点赛事 & 赛事直播 ===== */
        .featured-events, .live-stream {
            padding: 70px 0;
            background: #0f0f0f;
            border-bottom: 1px solid #2a2a2a;
        }
        .live-stream {
            background: #131313;
        }
        .event-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            background: #1c1c1c;
            border: 1px solid rgba(234, 179, 8, 0.25);
            padding: 24px;
            box-shadow: 0 0 15px rgba(234, 179, 8, 0.1);
            display: flex;
            gap: 14px;
            align-items: center;
        }
        .event-card img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border: 1px solid #333;
        }
        .event-info .league {
            color: #eab308;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .event-info .match {
            font-size: 17px;
            font-weight: 700;
            color: #eee;
            margin: 4px 0;
        }
        .event-info .status {
            color: #888;
            font-size: 13px;
        }

        /* ===== 游戏推荐 ===== */
        .game-recommend {
            padding: 70px 0;
            background: #0e0e0e;
            border-bottom: 1px solid #2a2a2a;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .game-card {
            background: #1a1a1a;
            text-align: center;
            padding: 24px 16px;
            border-bottom: 3px solid #eab308;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .game-card img {
            width: 72px;
            height: 72px;
            object-fit: cover;
            margin-bottom: 12px;
        }
        .game-card h4 {
            color: #eee;
            font-size: 16px;
        }
        .game-card p {
            color: #888;
            font-size: 13px;
            margin-top: 6px;
        }

        /* ===== 用户口碑 ===== */
        .testimonials {
            padding: 70px 0;
            background: #121212;
            border-bottom: 1px solid #2a2a2a;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testi-card {
            background: #1a1a1a;
            padding: 24px;
            border: 1px solid #2a2a2a;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        .testi-card .stars {
            color: #eab308;
            font-size: 18px;
            letter-spacing: 4px;
        }
        .testi-card p {
            color: #bbb;
            font-size: 14px;
            font-style: italic;
            margin: 14px 0;
        }
        .testi-card .author {
            color: #eab308;
            font-size: 14px;
            font-weight: 700;
        }

        /* ===== 新闻板块 ===== */
        .news-list {
            padding: 70px 0;
            background: #0f0f0f;
            border-bottom: 1px solid #2a2a2a;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .news-card {
            background: #1a1a1a;
            padding: 28px;
            border: 1px solid rgba(234, 179, 8, 0.2);
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
            transition: border-color 0.3s;
        }
        .news-card:hover {
            border-color: #eab308;
        }
        .news-tag {
            display: inline-block;
            background: rgba(234, 179, 8, 0.15);
            color: #eab308;
            font-size: 12px;
            padding: 4px 12px;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .news-date {
            font-size: 13px;
            color: #777;
            margin-left: 10px;
        }
        .news-card h3 {
            font-size: 22px;
            color: #eee;
            margin: 8px 0 12px;
        }
        .news-card p {
            color: #999;
            font-size: 15px;
        }
        .news-link {
            margin-top: 16px;
            display: inline-block;
            font-weight: 600;
            font-size: 14px;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 70px 0;
            background: #111;
            border-bottom: 1px solid #2a2a2a;
        }
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #1a1a1a;
            border-left: 4px solid #eab308;
            margin-bottom: 20px;
            padding: 24px 28px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }
        .faq-item h3 {
            color: #fde047;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #aaa;
            font-size: 15px;
        }

        /* ===== CTA ===== */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            text-align: center;
        }
        .cta h2 {
            font-size: 36px;
            color: #fde047;
            margin-bottom: 16px;
        }
        .cta p {
            color: #bbb;
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 17px;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 700;
            background: #eab308;
            color: #111;
            border: none;
            box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn:hover {
            background: #fde047;
            box-shadow: 0 0 30px rgba(234, 179, 8, 0.7);
            color: #000;
        }
        .btn-dark {
            background: transparent;
            border: 2px solid #eab308;
            color: #eab308;
        }
        .btn-dark:hover {
            background: rgba(234, 179, 8, 0.1);
            color: #fde047;
            box-shadow: 0 0 25px rgba(234, 179, 8, 0.3);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #0a0a0a;
            padding: 40px 0 20px;
            border-top: 2px solid #eab308;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #eab308;
            font-size: 18px;
            margin-bottom: 12px;
        }
        .footer-col p, .footer-col a {
            color: #888;
            font-size: 14px;
            line-height: 1.8;
        }
        .footer-bottom {
            border-top: 1px solid #1e1e1e;
            padding-top: 20px;
            text-align: center;
            color: #555;
            font-size: 13px;
        }
        .footer-bottom a {
            color: #eab308;
            margin: 0 8px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .nav-wrap {
                flex-direction: column;
                padding: 14px 0;
            }
            .nav-links {
                gap: 12px;
                justify-content: center;
            }
            .hero h1 {
                font-size: 32px;
            }
            .stats-grid, .adv-grid, .event-grid, .game-grid, .testi-grid {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
        }