* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2d1810 100%);
            color: #e5e7eb;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(180, 83, 9, 0.2);
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header .tag {
            display: inline-block;
            background: linear-gradient(90deg, #b45309, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(90deg, #fbbf24, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        .section-header p {
            color: #9ca3af;
            font-size: 15px;
            max-width: 640px;
            margin: 0 auto;
        }

        /* 导航 */
        .navbar {
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid #b45309;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .brand {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(90deg, #fbbf24, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d1d5db;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s, text-shadow 0.3s;
        }
        .nav-links a:hover {
            color: #fbbf24;
            text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
        }
        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
                gap: 10px;
            }
            .nav-links {
                gap: 16px;
            }
        }

        /* Hero */
        #hero {
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at 70% 20%, rgba(180, 83, 9, 0.4), transparent 60%);
        }
        #hero .hero-wrap {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1;
            min-width: 280px;
        }
        .hero-text .hero-badge {
            display: inline-block;
            background: rgba(180, 83, 9, 0.2);
            border: 1px solid #b45309;
            color: #fbbf24;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 16px;
        }
        .hero-text h2 {
            font-size: 44px;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #fbbf24, #fff7ed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-text p {
            color: #b0a89f;
            font-size: 16px;
            margin-bottom: 24px;
            max-width: 520px;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, #b45309, #fbbf24);
            color: #0d0d0d;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.45);
        }
        .btn-outline {
            border: 1px solid #b45309;
            color: #fbbf24;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            transition: background 0.3s;
        }
        .btn-outline:hover {
            background: rgba(180, 83, 9, 0.2);
        }
        .hero-img {
            flex: 1;
            min-width: 260px;
            text-align: center;
        }
        .hero-img img {
            border: 2px solid #b45309;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        /* GEO */
        #geo-intro {
            padding: 70px 0;
        }
        #geo-intro h1 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 24px;
            line-height: 1.3;
            background: linear-gradient(90deg, #fbbf24, #fff7ed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        #geo-intro p {
            color: #b8b0a8;
            font-size: 16px;
            max-width: 850px;
            margin: 0 auto;
            text-align: center;
            line-height: 1.9;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        .stat-card {
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.12), rgba(26, 26, 26, 0.9));
            border: 1px solid rgba(180, 83, 9, 0.4);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            border-color: #fbbf24;
            box-shadow: 0 4px 30px rgba(180, 83, 9, 0.2);
        }
        .stat-num {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(90deg, #fbbf24, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #9ca3af;
            font-size: 14px;
        }

        /* 核心优势 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .advantage-card {
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.15), rgba(26, 26, 26, 0.9));
            border: 1px solid rgba(180, 83, 9, 0.35);
            border-radius: 16px;
            padding: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #b45309, #fbbf24);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .advantage-card:hover::before {
            opacity: 1;
        }
        .advantage-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        .advantage-icon {
            font-size: 36px;
            margin-bottom: 16px;
        }
        .advantage-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #fbbf24;
        }
        .advantage-card p {
            color: #9ca3af;
            font-size: 14px;
            line-height: 1.7;
        }

        /* 品牌故事 */
        #brand-story .story-wrap {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-text {
            flex: 1;
            min-width: 280px;
        }
        .story-text h3 {
            font-size: 26px;
            margin-bottom: 16px;
            color: #fbbf24;
        }
        .story-text p {
            color: #9ca3af;
            margin-bottom: 14px;
            line-height: 1.8;
        }
        .story-img {
            flex: 1;
            min-width: 260px;
        }
        .story-img img {
            border: 2px solid rgba(180, 83, 9, 0.5);
        }

        /* 时间线 */
        .timeline-list {
            position: relative;
            padding-left: 30px;
            max-width: 700px;
            margin: 0 auto;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #b45309, #fbbf24);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            background: rgba(180, 83, 9, 0.08);
            border: 1px solid rgba(180, 83, 9, 0.25);
            border-radius: 12px;
            padding: 20px 24px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -28px;
            top: 26px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fbbf24;
            box-shadow: 0 0 10px #fbbf24;
        }
        .timeline-item h4 {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 6px;
        }
        .timeline-item p {
            color: #9ca3af;
            font-size: 14px;
        }

        /* 焦点赛事 */
        #featured-events .section-header a {
            color: #fbbf24;
            font-size: 14px;
            border-bottom: 1px solid #b45309;
        }
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        .match-card {
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.1), rgba(26, 26, 26, 0.85));
            border: 1px solid rgba(180, 83, 9, 0.3);
            border-radius: 14px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .match-teams {
            flex: 1;
        }
        .match-teams .team {
            font-weight: 600;
            color: #e5e7eb;
            margin-bottom: 4px;
        }
        .match-teams .vs {
            color: #fbbf24;
            font-weight: 700;
        }
        .match-info {
            text-align: right;
            color: #9ca3af;
            font-size: 14px;
        }
        .match-info .score {
            font-size: 24px;
            font-weight: 800;
            color: #fbbf24;
        }
        .match-card a {
            color: #fbbf24;
            font-size: 13px;
            border-bottom: 1px dashed #b45309;
        }

        /* 颁奖 */
        #timeline .section-header {
            margin-bottom: 30px;
        }

        /* 赛事直播 */
        .live-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .live-item {
            background: rgba(13, 13, 13, 0.7);
            border: 1px solid #b45309;
            border-radius: 14px;
            padding: 20px;
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fbbf24;
            animation: pulse 1.5s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
            }
        }
        .live-item .live-text {
            color: #9ca3af;
            font-size: 14px;
        }
        .live-item .live-text strong {
            color: #fbbf24;
        }

        /* 新闻 */
        #news-list {
            background: rgba(13, 13, 13, 0.4);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
        }
        .news-card {
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.08), rgba(26, 26, 26, 0.7));
            border: 1px solid rgba(180, 83, 9, 0.3);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 0;
        }
        .news-body {
            padding: 20px;
        }
        .news-meta {
            display: flex;
            gap: 14px;
            align-items: center;
            margin-bottom: 8px;
            font-size: 13px;
            color: #b45309;
        }
        .news-meta .date {
            color: #fbbf24;
            font-weight: 600;
        }
        .news-body h3 {
            font-size: 18px;
            margin-bottom: 8px;
            line-height: 1.4;
            color: #e5e7eb;
        }
        .news-body h3 a {
            color: inherit;
        }
        .news-body h3 a:hover {
            color: #fbbf24;
        }
        .news-body p {
            color: #9ca3af;
            font-size: 14px;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-body .read-more {
            display: inline-block;
            margin-top: 10px;
            color: #fbbf24;
            font-size: 14px;
            border-bottom: 1px dashed #b45309;
        }

        /* 游戏推荐 */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        .game-card {
            text-align: center;
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.12), rgba(26, 26, 26, 0.8));
            border: 1px solid rgba(180, 83, 9, 0.3);
            border-radius: 16px;
            padding: 30px 20px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            border-color: #fbbf24;
            box-shadow: 0 4px 30px rgba(180, 83, 9, 0.2);
        }
        .game-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto 16px;
        }
        .game-card h4 {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .game-card p {
            color: #9ca3af;
            font-size: 13px;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.08), rgba(26, 26, 26, 0.6));
            border: 1px solid rgba(180, 83, 9, 0.2);
            border-radius: 12px;
            padding: 22px 24px;
            margin-bottom: 16px;
        }
        .faq-item h4 {
            color: #fbbf24;
            font-size: 16px;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #b0a89f;
            font-size: 14px;
            line-height: 1.8;
        }

        /* 合作伙伴 */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            align-items: center;
        }
        .partner-item {
            background: rgba(13, 13, 13, 0.5);
            border: 1px solid rgba(180, 83, 9, 0.2);
            border-radius: 10px;
            padding: 20px 10px;
            text-align: center;
            color: #9ca3af;
            font-size: 15px;
            font-weight: 600;
            transition: border-color 0.3s;
        }
        .partner-item:hover {
            border-color: #b45309;
        }
        .partner-item img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin: 0 auto 8px;
        }
        .partner-item span {
            display: block;
        }

        /* 下载中心 */
        #download {
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.2), transparent);
        }
        .download-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            text-align: center;
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #b45309, #fbbf24);
            color: #0d0d0d;
            padding: 16px 40px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 6px 30px rgba(251, 191, 36, 0.3);
            transition: transform 0.3s;
        }
        .download-btn:hover {
            transform: scale(1.03);
        }
        .download-wrap img {
            width: 120px;
            height: 120px;
            object-fit: contain;
        }

        /* 客服支持 */
        .support-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .support-card {
            background: rgba(13, 13, 13, 0.6);
            border: 1px solid #b45309;
            border-radius: 14px;
            padding: 24px;
            text-align: center;
        }
        .support-card .icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        .support-card h4 {
            color: #fbbf24;
            margin-bottom: 8px;
        }
        .support-card p {
            color: #9ca3af;
            font-size: 14px;
        }

        /* 页脚 */
        footer#about {
            background: #0a0a0a;
            padding: 60px 0 30px;
            border-top: 2px solid #b45309;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 12px;
        }
        .footer-col p,
        .footer-col a {
            color: #9ca3af;
            font-size: 14px;
            display: block;
            margin-bottom: 6px;
            line-height: 1.7;
        }
        .footer-col a:hover {
            color: #fbbf24;
        }
        .footer-bottom {
            border-top: 1px solid rgba(180, 83, 9, 0.3);
            padding-top: 20px;
            text-align: center;
            color: #6b7280;
            font-size: 13px;
        }
        .footer-bottom a {
            color: #b45309;
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            color: #fbbf24;
        }