:root {
            --iron-gray: #64748b;
            --dark-gray: #1e293b;
            --darker-gray: #0f172a;
            --dark-red: #991b1b;
            --dark-red-hover: #7f1d1d;
            --silver: #cbd5e1;
            --silver-dark: #94a3b8;
            --text-light: #f8fafc;
            --text-main: #e2e8f0;
            --text-muted: #94a3b8;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--iron-gray) 100%);
            color: var(--text-main);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--text-light);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section {
            padding: 64px 0;
        }
        .section-title {
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }
        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--dark-red), var(--iron-gray));
            margin: 0 auto 40px;
            border-radius: 2px;
        }
        .btn {
            display: inline-block;
            padding: 12px 36px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn-primary {
            background: linear-gradient(145deg, var(--dark-red), var(--dark-red-hover));
            color: var(--text-light);
            box-shadow: 0 4px 16px rgba(153, 27, 27, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(153, 27, 27, 0.6);
            color: var(--text-light);
        }
        .btn-silver {
            background: linear-gradient(145deg, var(--silver), var(--silver-dark));
            color: var(--dark-gray);
            box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
        }
        .btn-silver:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(100, 116, 139, 0.5);
            color: var(--dark-gray);
        }
        .card {
            background: linear-gradient(145deg, #334155, var(--dark-gray));
            border: 1px solid rgba(100, 116, 139, 0.4);
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        /* 导航 */
        .site-header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--iron-gray);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 14px 0;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: var(--silver);
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 4px;
            border: 1px solid transparent;
            transition: all 0.3s;
            font-size: 15px;
        }
        .nav-links a:hover {
            background: rgba(100, 116, 139, 0.2);
            border-color: rgba(100, 116, 139, 0.5);
            color: var(--text-light);
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8)), url('/img/poke.webp') center/cover no-repeat;
            border-bottom: 3px solid var(--iron-gray);
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(transparent, rgba(15, 23, 42, 0.6));
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 40px 20px;
        }
        .hero-content h2 {
            font-size: 52px;
            font-weight: 900;
            color: var(--text-light);
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
            letter-spacing: 3px;
        }
        .hero-content p {
            font-size: 18px;
            color: var(--silver);
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* GEO */
        .geo-intro {
            background: linear-gradient(145deg, var(--dark-gray), #283548);
            border-bottom: 1px solid rgba(100, 116, 139, 0.3);
        }
        .geo-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .geo-grid h1 {
            font-size: 40px;
            font-weight: 900;
            color: var(--text-light);
            line-height: 1.3;
            margin-bottom: 20px;
        }
        .geo-grid p {
            color: var(--text-main);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 16px;
            text-align: justify;
        }
        .geo-img {
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--iron-gray);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .geo-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 数据统计 */
        .data-stats {
            background: linear-gradient(145deg, #1a2534, var(--dark-gray));
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: linear-gradient(145deg, #283548, var(--dark-gray));
            border: 1px solid rgba(100, 116, 139, 0.4);
            border-radius: 8px;
            padding: 32px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            border-color: var(--dark-red);
            transform: translateY(-4px);
        }
        .stat-num {
            font-size: 40px;
            font-weight: 900;
            color: var(--text-light);
            display: block;
            margin-bottom: 8px;
            text-shadow: 0 2px 12px rgba(153, 27, 27, 0.3);
        }
        .stat-label {
            font-size: 14px;
            color: var(--silver);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* 核心优势 */
        .core-advantages {
            background: linear-gradient(145deg, var(--dark-gray), #2a3648);
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .advantage-card {
            text-align: center;
            padding: 36px 24px;
        }
        .advantage-card .icon {
            font-size: 48px;
            margin-bottom: 16px;
            display: block;
        }
        .advantage-card h3 {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        .advantage-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        /* 品牌故事 */
        .brand-story {
            background: linear-gradient(145deg, #1a2534, var(--dark-gray));
        }
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }
        .story-img {
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--iron-gray);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .story-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .story-text h3 {
            font-size: 28px;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        .story-text p {
            color: var(--text-main);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 16px;
            text-align: justify;
        }

        /* 焦点赛事 */
        .featured-events {
            background: linear-gradient(145deg, var(--dark-gray), #2a3648);
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            padding: 28px;
            text-align: center;
            position: relative;
        }
        .event-card .event-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }
        .event-card h3 {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .event-card .event-info {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .event-card .event-badge {
            display: inline-block;
            background: linear-gradient(145deg, var(--dark-red), var(--dark-red-hover));
            color: var(--text-light);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
        }

        /* 比分直播 */
        .live-scores {
            background: linear-gradient(145deg, #1a2534, var(--dark-gray));
        }
        .scores-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
        .score-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: linear-gradient(145deg, #283548, var(--dark-gray));
            border: 1px solid rgba(100, 116, 139, 0.3);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .score-item:hover {
            border-color: var(--dark-red);
        }
        .score-players {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--text-light);
        }
        .score-players .vs {
            color: var(--text-muted);
            font-size: 14px;
        }
        .score-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-light);
            background: rgba(100, 116, 139, 0.2);
            padding: 4px 16px;
            border-radius: 4px;
        }
        .score-status {
            font-size: 13px;
            color: var(--silver);
            padding: 4px 12px;
            background: rgba(153, 27, 27, 0.3);
            border-radius: 20px;
        }

        /* 游戏推荐 */
        .game-recommend {
            background: linear-gradient(145deg, var(--dark-gray), #2a3648);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .game-card {
            text-align: center;
            padding: 28px 20px;
        }
        .game-card .game-icon {
            font-size: 56px;
            margin-bottom: 16px;
            display: block;
        }
        .game-card h3 {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .game-card p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        /* 新闻 */
        .news-list {
            background: linear-gradient(145deg, #1a2534, var(--dark-gray));
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .news-card {
            display: flex;
            flex-direction: column;
        }
        .news-date {
            display: inline-block;
            background: linear-gradient(145deg, var(--dark-red), var(--dark-red-hover));
            color: var(--text-light);
            font-size: 13px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 4px;
            margin-bottom: 12px;
            align-self: flex-start;
            letter-spacing: 1px;
        }
        .news-card h3 {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .news-card p {
            color: var(--text-main);
            font-size: 14px;
            line-height: 1.7;
            flex-grow: 1;
        }
        .news-card .news-link {
            margin-top: 14px;
            font-size: 14px;
            color: var(--silver);
            font-weight: 600;
        }
        .news-card .news-link:hover {
            color: var(--text-light);
        }

        /* FAQ */
        .faq {
            background: linear-gradient(145deg, var(--dark-gray), #2a3648);
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: linear-gradient(145deg, #283548, var(--dark-gray));
            border: 1px solid rgba(100, 116, 139, 0.3);
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .faq-item:hover {
            border-color: var(--dark-red);
        }
        .faq-item summary {
            padding: 18px 24px;
            font-weight: 700;
            color: var(--text-light);
            font-size: 16px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: "+";
            font-size: 24px;
            color: var(--silver);
            transition: transform 0.3s;
        }
        .faq-item[open] summary::after {
            content: "−";
        }
        .faq-item .faq-answer {
            padding: 0 24px 20px;
            color: var(--text-main);
            font-size: 14px;
            line-height: 1.8;
        }

        /* CTA */
        .cta {
            background: linear-gradient(135deg, rgba(153, 27, 27, 0.9), rgba(15, 23, 42, 0.95)), url('/img/download.webp') center/cover no-repeat;
            text-align: center;
            padding: 80px 0;
            border-top: 3px solid var(--dark-red);
        }
        .cta h2 {
            font-size: 36px;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        .cta p {
            color: var(--silver);
            font-size: 18px;
            margin-bottom: 30px;
        }
        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* 页脚 */
        .site-footer {
            background: rgba(15, 23, 42, 0.98);
            border-top: 2px solid var(--iron-gray);
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: var(--text-light);
            font-size: 18px;
            margin-bottom: 16px;
            border-left: 3px solid var(--dark-red);
            padding-left: 12px;
        }
        .footer-col p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 6px;
        }
        .footer-col a {
            display: block;
            color: var(--silver);
            font-size: 14px;
            padding: 4px 0;
        }
        .footer-col a:hover {
            color: var(--text-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(100, 116, 139, 0.3);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--silver);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .geo-grid,
            .story-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid,
            .advantages-grid,
            .events-grid,
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h2 {
                font-size: 32px;
            }
            .nav-links {
                gap: 8px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 13px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid,
            .advantages-grid,
            .events-grid,
            .game-grid {
                grid-template-columns: 1fr;
            }
        }