* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #10b981;
            --primary-dark: #065f46;
            --accent: #fbbf24;
            --white: #ffffff;
            --bg-light: #ecfdf5;
            --card-shadow: 0 8px 32px rgba(6, 95, 70, 0.12);
            --radius: 16px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 40%, #a7f3d0 100%);
            color: #064e3b;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        h1,
        h2,
        h3,
        h4 {
            color: var(--primary-dark);
            line-height: 1.3;
        }
        h1 {
            font-size: 36px;
            font-weight: 800;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 32px;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            margin-top: 8px;
        }
        /* 导航 */
        .nav {
            background: linear-gradient(135deg, #065f46 0%, #059669 60%, #10b981 100%);
            padding: 14px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 24px rgba(6, 95, 70, 0.35);
            position: sticky;
            top: 0;
            z-index: 999;
            flex-wrap: wrap;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo img {
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        .nav-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 18px;
            border-radius: 30px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        /* Hero */
        .hero {
            position: relative;
            padding: 80px 0 60px;
            text-align: center;
            background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #059669 100%);
            overflow: hidden;
            border-radius: 0 0 50px 50px;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-30px);
            }
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            color: var(--white);
            font-size: 42px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 24px;
        }
        .geo-intro {
            max-width: 900px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 32px 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: left;
        }
        .geo-intro p {
            color: #ecfdf5;
            font-size: 16px;
            line-height: 1.8;
        }
        .hero-img {
            max-width: 100%;
            border-radius: 24px;
            box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        .hero-img:hover {
            transform: scale(1.01);
            box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
        }
        /* 数据统计 */
        .data-stats {
            padding: 80px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        .stat-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            border-bottom: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(6, 95, 70, 0.2);
        }
        .stat-num {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-dark);
            display: block;
        }
        .stat-label {
            font-size: 15px;
            color: #065f46;
            margin-top: 8px;
            font-weight: 500;
        }
        /* 核心优势 */
        .core-advantages {
            padding: 80px 0;
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .adv-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .adv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(6, 95, 70, 0.15);
        }
        .adv-icon {
            font-size: 32px;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 12px;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .adv-card h3 {
            font-size: 18px;
            margin-bottom: 6px;
        }
        .adv-card p {
            font-size: 14px;
            color: #065f46;
        }
        /* 品牌故事 */
        .brand-story {
            padding: 80px 0;
        }
        .story-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .story-img {
            border-radius: 24px;
            box-shadow: var(--card-shadow);
            max-width: 100%;
        }
        .story-text p {
            margin-bottom: 16px;
            font-size: 15px;
            color: #065f46;
            line-height: 1.9;
        }
        /* 荣誉时间线 */
        .awards {
            padding: 80px 0;
            background: linear-gradient(135deg, #065f46 0%, #059669 100%);
        }
        .awards h2 {
            color: var(--white);
        }
        .awards h2::after {
            background: linear-gradient(90deg, var(--accent), var(--white));
        }
        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding: 24px 0;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            transform: translateX(-50%);
        }
        .timeline-item {
            display: flex;
            justify-content: flex-start;
            padding: 24px 0;
            position: relative;
        }
        .timeline-item:nth-child(even) {
            justify-content: flex-end;
        }
        .timeline-item .tl-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 24px 32px;
            max-width: 45%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ecfdf5;
            transition: var(--transition);
        }
        .timeline-item .tl-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }
        .timeline-item .tl-card h3 {
            color: var(--accent);
            font-size: 18px;
            margin-bottom: 8px;
        }
        .timeline-item .tl-card p {
            font-size: 14px;
            line-height: 1.6;
        }
        /* 焦点赛事 */
        .featured-events {
            padding: 80px 0;
        }
        .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .event-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(6, 95, 70, 0.18);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .event-info {
            padding: 24px;
        }
        .event-info h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .event-info p {
            font-size: 14px;
            color: #065f46;
        }
        .event-tag {
            display: inline-block;
            background: linear-gradient(135deg, #10b981, #059669);
            color: var(--white);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            margin-top: 12px;
            font-weight: 600;
        }
        /* 热门排行 */
        .rankings {
            padding: 80px 0;
            background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
        }
        .rank-table {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        .rank-row {
            display: grid;
            grid-template-columns: 80px 1fr 120px 120px;
            padding: 16px 24px;
            border-bottom: 1px solid #e5e7eb;
            align-items: center;
            transition: var(--transition);
        }
        .rank-row:last-child {
            border-bottom: none;
        }
        .rank-row:hover {
            background: #ecfdf5;
        }
        .rank-row.header {
            background: linear-gradient(135deg, #065f46, #059669);
            color: var(--white);
            font-weight: 700;
        }
        .rank-num {
            font-weight: 800;
            font-size: 18px;
            color: var(--primary-dark);
        }
        .rank-team {
            font-weight: 600;
        }
        .rank-wins,
        .rank-points {
            text-align: center;
            color: #065f46;
        }
        /* 赛事直播 */
        .live-stream {
            padding: 80px 0;
        }
        .live-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
            background: linear-gradient(135deg, #065f46, #059669);
            border-radius: 24px;
            padding: 40px;
            color: var(--white);
        }
        .live-main img {
            border-radius: 16px;
            width: 100%;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        .live-main h3 {
            color: var(--accent);
            font-size: 24px;
            margin-bottom: 16px;
        }
        .live-main p {
            font-size: 15px;
            line-height: 1.8;
        }
        .live-btn {
            display: inline-block;
            background: var(--accent);
            color: var(--primary-dark);
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 24px;
            transition: var(--transition);
        }
        .live-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
        }
        /* 游戏推荐 */
        .game-recommend {
            padding: 80px 0;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .game-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }
        .game-card img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 16px;
            height: 140px;
            object-fit: cover;
        }
        .game-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .game-card p {
            font-size: 14px;
            color: #065f46;
        }
        /* 新闻 */
        .news-list {
            padding: 80px 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }
        .news-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(6, 95, 70, 0.15);
        }
        .news-card .news-date {
            display: inline-block;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .news-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 14px;
            color: #065f46;
            line-height: 1.7;
        }
        /* FAQ */
        .faq {
            padding: 80px 0;
            background: linear-gradient(135deg, #d1fae5, #ecfdf5);
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white);
            border-radius: 16px;
            padding: 28px 32px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(6, 95, 70, 0.08);
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(6, 95, 70, 0.12);
            transform: translateX(4px);
        }
        .faq-item h3 {
            font-size: 17px;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }
        .faq-item p {
            font-size: 14px;
            color: #064e3b;
            line-height: 1.8;
        }
        /* 页脚 */
        .footer {
            background: linear-gradient(135deg, #022c22, #064e3b, #065f46);
            color: #a7f3d0;
            padding: 60px 0 24px;
            text-align: center;
        }
        .footer a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 8px;
            transition: var(--transition);
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer-info {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-info span {
            font-size: 14px;
        }
        .footer-copy {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            font-size: 13px;
            color: #6ee7b7;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                padding: 12px 16px;
            }
            .nav-links {
                justify-content: center;
                margin-top: 8px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .geo-intro {
                padding: 20px;
            }
            .story-wrap {
                grid-template-columns: 1fr;
            }
            .live-main {
                grid-template-columns: 1fr;
            }
            .timeline::before {
                left: 8px;
            }
            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 40px;
            }
            .timeline-item .tl-card {
                max-width: 100%;
            }
            .rank-row {
                grid-template-columns: 40px 1fr 60px 60px;
                padding: 12px 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 24px;
            }
            .geo-intro {
                padding: 16px;
            }
        }
        /* 滚动条美化 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #ecfdf5;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #10b981, #065f46);
            border-radius: 4px;
        }