* {
            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(180deg, #1a1a1a 0%, #141414 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 导航 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(18, 18, 18, 0.96);
            border-bottom: 2px solid #eab308;
            backdrop-filter: blur(12px);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.5px;
            padding: 8px 0;
            position: relative;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: #eab308;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #eab308;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* 主体容器 */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero区 */
        .hero-section {
            padding: 140px 0 70px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a1e00 60%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid #eab308;
        }

        .hero-section::before {
            content: "⚡";
            position: absolute;
            top: 20%;
            left: 5%;
            font-size: 120px;
            opacity: 0.08;
            transform: rotate(-15deg);
        }

        .hero-section::after {
            content: "⚡";
            position: absolute;
            bottom: 10%;
            right: 8%;
            font-size: 90px;
            opacity: 0.06;
            transform: rotate(20deg);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text .badge {
            display: inline-block;
            background: #eab308;
            color: #1a1a1a;
            font-weight: 700;
            padding: 4px 16px;
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-text h2 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 18px;
        }

        .hero-text h2 span {
            color: #eab308;
        }

        .hero-text p {
            font-size: 17px;
            color: #b0b0b0;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #eab308;
            color: #1a1a1a;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 36px;
            border: 2px solid #eab308;
            transition: all 0.3s;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background: transparent;
            color: #eab308;
            box-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 14px 36px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: #eab308;
            color: #eab308;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border: 2px solid rgba(234, 179, 8, 0.3);
            box-shadow: 0 0 60px rgba(234, 179, 8, 0.15);
            border-radius: 0;
        }

        .hero-image .float-card {
            position: absolute;
            bottom: -18px;
            left: -18px;
            background: rgba(20, 20, 20, 0.95);
            border: 1px solid #eab308;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }

        /* 区块通用 */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .tag {
            display: inline-block;
            background: rgba(234, 179, 8, 0.12);
            color: #eab308;
            font-size: 13px;
            font-weight: 700;
            padding: 4px 18px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
            border-left: 3px solid #eab308;
        }

        .section-header h2 {
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }

        .section-header p {
            color: #999;
            font-size: 16px;
            max-width: 640px;
            margin: 12px auto 0;
        }

        /* GEO */
        .geo-section {
            padding: 70px 0;
            background: #131313;
            border-bottom: 1px solid rgba(234, 179, 8, 0.15);
        }

        .geo-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .geo-content h1 {
            font-size: 42px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 24px;
        }

        .geo-content h1 span {
            color: #eab308;
        }

        .geo-content p {
            font-size: 17px;
            color: #aaa;
            line-height: 1.9;
            text-align: left;
            text-indent: 2em;
            margin-top: 20px;
        }

        /* 数据统计 */
        .stats-section {
            background: linear-gradient(135deg, #131313, #1f1a0a);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 44px 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(234, 179, 8, 0.2);
            border-radius: 0;
            box-shadow: 0 0 25px rgba(234, 179, 8, 0.05);
            transition: all 0.3s;
            position: relative;
        }

        .stat-card:hover {
            border-color: #eab308;
            box-shadow: 0 0 35px rgba(234, 179, 8, 0.15);
            transform: translateY(-4px);
        }

        .stat-card .icon {
            font-size: 38px;
            margin-bottom: 14px;
        }

        .stat-card .num {
            font-size: 48px;
            font-weight: 800;
            color: #eab308;
            line-height: 1.1;
        }

        .stat-card .label {
            font-size: 15px;
            color: #999;
            margin-top: 8px;
        }

        /* 核心优势 */
        .advantages-section {
            background: #131313;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .advantage-card {
            padding: 38px 28px;
            background: linear-gradient(145deg, #181818, #1e1e1e);
            border: 1px solid rgba(234, 179, 8, 0.25);
            border-radius: 0;
            position: relative;
            transition: all 0.3s;
        }

        .advantage-card::before {
            content: "⚡";
            position: absolute;
            top: 16px;
            right: 18px;
            font-size: 22px;
            color: #eab308;
            opacity: 0.4;
        }

        .advantage-card:hover {
            border-color: #eab308;
            box-shadow: 0 0 30px rgba(234, 179, 8, 0.1);
        }

        .advantage-card .icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .advantage-card h3 {
            font-size: 20px;
            color: #fff;
            margin-bottom: 10px;
        }

        .advantage-card p {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
        }

        /* 品牌故事 */
        .story-section {
            background: linear-gradient(135deg, #141414, #1c1710);
        }

        .story-flex {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: center;
        }

        .story-text h2 {
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
        }

        .story-text h2 span {
            color: #eab308;
        }

        .story-text p {
            font-size: 15px;
            color: #aaa;
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .story-image img {
            border: 2px solid rgba(234, 179, 8, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        /* 焦点赛事 */
        .events-section {
            background: #131313;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .event-card {
            background: linear-gradient(145deg, #181818, #1e1e1e);
            border: 1px solid rgba(234, 179, 8, 0.2);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }

        .event-card:hover {
            border-color: #eab308;
            box-shadow: 0 0 30px rgba(234, 179, 8, 0.1);
            transform: translateY(-4px);
        }

        .event-card .event-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .event-card .event-body {
            padding: 24px;
        }

        .event-card .event-body .league {
            font-size: 13px;
            color: #eab308;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .event-card .event-body h3 {
            font-size: 20px;
            color: #fff;
            margin: 8px 0;
        }

        .event-card .event-body .teams {
            font-size: 16px;
            color: #ccc;
            margin-bottom: 12px;
        }

        .event-card .event-body .meta {
            font-size: 13px;
            color: #888;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 12px;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .event-card .event-body .meta .live-tag {
            background: rgba(234, 179, 8, 0.15);
            color: #eab308;
            font-size: 12px;
            font-weight: 700;
            padding: 2px 10px;
        }

        /* 新闻 */
        .news-section {
            background: linear-gradient(135deg, #131313, #1a1510);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(234, 179, 8, 0.15);
            border-radius: 0;
            padding: 28px;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            border-color: #eab308;
            box-shadow: 0 0 25px rgba(234, 179, 8, 0.08);
        }

        .news-card .news-date {
            font-size: 13px;
            color: #eab308;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
            background: rgba(234, 179, 8, 0.08);
            display: inline-block;
            padding: 2px 12px;
            align-self: flex-start;
        }

        .news-card h3 {
            font-size: 18px;
            color: #fff;
            line-height: 1.4;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .news-card p {
            font-size: 14px;
            color: #aaa;
            line-height: 1.7;
            flex: 1;
        }

        .news-card .news-link {
            margin-top: 16px;
            font-size: 14px;
            font-weight: 600;
            color: #eab308;
            border-bottom: 1px solid transparent;
            display: inline-block;
        }

        .news-card .news-link:hover {
            border-color: #eab308;
        }

        /* 用户口碑 */
        .testimonials-section {
            background: #131313;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            padding: 30px;
            background: linear-gradient(145deg, #181818, #1e1e1e);
            border: 1px solid rgba(234, 179, 8, 0.15);
            border-radius: 0;
            position: relative;
        }

        .testimonial-card .quote {
            font-size: 30px;
            color: #eab308;
            line-height: 1;
            margin-bottom: 10px;
        }

        .testimonial-card p {
            font-size: 14px;
            color: #bbb;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-card .user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-card .user .avatar {
            width: 40px;
            height: 40px;
            background: #eab308;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            border-radius: 0;
        }

        .testimonial-card .user .name {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }

        .testimonial-card .user .role {
            font-size: 12px;
            color: #888;
        }

        /* 合作伙伴 */
        .partners-section {
            background: linear-gradient(135deg, #131313, #1c1710);
        }

        .partners-flex {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .partner-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(234, 179, 8, 0.12);
            padding: 14px 22px;
            transition: all 0.3s;
        }

        .partner-item:hover {
            border-color: #eab308;
            box-shadow: 0 0 20px rgba(234, 179, 8, 0.08);
        }

        .partner-item img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        .partner-item span {
            font-size: 14px;
            font-weight: 600;
            color: #bbb;
        }

        /* FAQ */
        .faq-section {
            background: #131313;
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(234, 179, 8, 0.15);
            border-radius: 0;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: #eab308;
        }

        .faq-item summary {
            font-size: 17px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            padding: 14px 0;
            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: 22px;
            color: #eab308;
        }

        .faq-item[open] summary::after {
            content: "−";
        }

        .faq-item .answer {
            font-size: 14px;
            color: #aaa;
            line-height: 1.8;
            padding-bottom: 20px;
            border-top: 1px solid rgba(234, 179, 8, 0.1);
            padding-top: 14px;
        }

        /* CTA */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a, #2a1e00, #1a1a1a);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "⚡⚡⚡";
            font-size: 20px;
            letter-spacing: 20px;
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.3;
            color: #eab308;
        }

        .cta-section h2 {
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }

        .cta-section h2 span {
            color: #eab308;
        }

        .cta-section p {
            color: #aaa;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* 页脚 */
        .footer {
            background: #0d0d0d;
            padding: 50px 0 30px;
            border-top: 3px solid #eab308;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-col h4::before {
            content: "⚡ ";
            color: #eab308;
        }

        .footer-col p {
            font-size: 14px;
            color: #888;
            line-height: 1.7;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: #888;
            padding: 4px 0;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: #eab308;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #666;
        }

        .footer-bottom .links {
            margin-bottom: 12px;
        }

        .footer-bottom .links a {
            color: #888;
            margin: 0 8px;
            font-weight: 600;
        }

        .footer-bottom .links a:hover {
            color: #eab308;
        }

        .footer-bottom .copyright {
            color: #555;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid,
            .advantages-grid,
            .events-grid,
            .news-grid,
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }

            .story-flex,
            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .stats-grid,
            .advantages-grid,
            .events-grid,
            .news-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 12px;
                font-size: 13px;
                flex-wrap: wrap;
            }

            .html-hero h2 {
                font-size: 34px;
            }
        }