* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            background: #0b0b0f;
            color: #f5f0e8;
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        span,
        div,
        section,
        nav,
        footer,
        article,
        li,
        ul,
        blockquote,
        input,
        button,
        label {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        a {
            color: #fde047;
            text-decoration: none;
            transition: all .3s;
        }
        a:hover {
            color: #f97316;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navbar */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: linear-gradient(180deg, #431407 0%, rgba(67, 20, 7, 0.96) 80%);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(249, 115, 22, 0.25);
            box-shadow: 0 4px 30px rgba(249, 115, 22, 0.15);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #fde047;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img {
            height: 36px;
            width: auto;
            border-radius: 8px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links a {
            color: #ffedd5;
            font-size: 15px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all .3s;
        }
        .nav-links a:hover {
            background: rgba(249, 115, 22, 0.2);
            color: #fde047;
            transform: translateY(-2px);
        }

        /* Hero */
        .hero {
            position: relative;
            padding: 160px 0 100px;
            background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.25), transparent 60%),
                linear-gradient(160deg, #431407 0%, #1c0a03 55%, #0b0b0f 100%);
            text-align: center;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fde047, #f97316, #fde047);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .subtitle {
            max-width: 760px;
            margin: 0 auto 30px;
            font-size: 18px;
            color: #d1d5db;
            text-align: center;
        }
        .hero-img {
            margin: 40px auto 0;
            max-width: 900px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .hero-btn {
            display: inline-block;
            margin-top: 24px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            padding: 14px 36px;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
            transition: all .3s;
        }
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
            color: #fff;
        }

        /* geo-intro */
        .geo-intro {
            padding: 70px 0;
            background: #0b0b0f;
        }
        .geo-intro .card {
            background: linear-gradient(145deg, rgba(249, 115, 22, 0.08), rgba(67, 20, 7, 0.2));
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 20px;
            padding: 40px 42px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .geo-intro p {
            font-size: 16.5px;
            color: #e7e5e4;
            line-height: 1.85;
        }

        /* Section general */
        .section-pad {
            padding: 70px 0;
        }
        .section-title {
            text-align: center;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #fff;
        }
        .section-sub {
            text-align: center;
            color: #9ca3af;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 16px;
        }
        .title-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #f97316, #fde047);
            border-radius: 4px;
            margin: 0 auto 20px;
        }

        /* Data stats */
        .data-stats {
            background: linear-gradient(160deg, #0b0b0f, #1c0a03);
            padding: 70px 0;
            position: relative;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .stat-card {
            background: linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(67, 20, 7, 0.3));
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 16px;
            padding: 32px 20px;
            text-align: center;
            transition: transform .3s, box-shadow .3s;
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent);
            border-radius: 50%;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
        }
        .stat-num {
            font-size: 48px;
            font-weight: 800;
            color: #fde047;
            line-height: 1.2;
        }
        .stat-label {
            color: #a8a29e;
            font-size: 14px;
            margin-top: 8px;
            letter-spacing: 1px;
        }

        /* Advantages */
        .advantages {
            background: #0b0b0f;
            padding: 70px 0;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .adv-card {
            background: linear-gradient(160deg, #1c0a03, rgba(67, 20, 7, 0.6));
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: 18px;
            padding: 36px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all .4s;
        }
        .adv-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #f97316, #fde047, transparent);
        }
        .adv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
        }
        .adv-icon {
            font-size: 42px;
            margin-bottom: 16px;
        }
        .adv-card h3 {
            font-size: 18px;
            color: #fde047;
            margin-bottom: 10px;
        }
        .adv-card p {
            font-size: 14px;
            color: #a8a29e;
            line-height: 1.6;
        }

        /* Story */
        .story {
            background: linear-gradient(160deg, #0b0b0f, #1a0903);
            padding: 80px 0;
        }
        .story-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .story-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
        }
        .story-text h2 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 20px;
        }
        .story-text p {
            color: #d6d3d1;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        /* Featured events */
        .featured-events {
            background: #0b0b0f;
            padding: 70px 0;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .event-card {
            background: linear-gradient(145deg, rgba(249, 115, 22, 0.08), rgba(67, 20, 7, 0.3));
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: 18px;
            overflow: hidden;
            transition: transform .3s;
        }
        .event-card:hover {
            transform: translateY(-6px);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .event-info {
            padding: 24px;
        }
        .event-info h3 {
            font-size: 20px;
            color: #fde047;
            margin-bottom: 6px;
        }
        .event-info .teams {
            font-size: 16px;
            color: #e7e5e4;
            margin-bottom: 12px;
        }
        .event-info .meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: #9ca3af;
        }

        /* Live stream */
        .live-stream {
            background: linear-gradient(160deg, #1c0a03, #0b0b0f);
            padding: 70px 0;
            position: relative;
        }
        .live-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .live-info h2 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 20px;
        }
        .live-info p {
            color: #d6d3d1;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .live-info ul {
            list-style: none;
            margin: 16px 0;
        }
        .live-info li {
            padding: 6px 0;
            color: #e7e5e4;
            font-size: 15px;
        }
        .live-info li::before {
            content: '⚡';
            margin-right: 10px;
            color: #fde047;
        }
        .live-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
        }

        /* Standings */
        .standings {
            background: #0b0b0f;
            padding: 70px 0;
        }
        .stand-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .stand-card {
            background: linear-gradient(145deg, rgba(249, 115, 22, 0.07), rgba(67, 20, 7, 0.25));
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: 18px;
            padding: 28px;
        }
        .stand-card h3 {
            font-size: 20px;
            color: #fde047;
            margin-bottom: 18px;
            border-bottom: 1px solid rgba(249, 115, 22, 0.2);
            padding-bottom: 12px;
        }
        .stand-card ul {
            list-style: none;
        }
        .stand-card li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            color: #e7e5e4;
            font-size: 14px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
        }
        .stand-card li span {
            font-weight: 700;
            color: #f97316;
        }
        .stand-card a {
            display: inline-block;
            margin-top: 16px;
            font-size: 14px;
            color: #fde047;
            font-weight: 600;
        }

        /* News */
        .news {
            background: linear-gradient(160deg, #0b0b0f, #1c0a03);
            padding: 70px 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-card {
            background: linear-gradient(145deg, rgba(249, 115, 22, 0.06), rgba(67, 20, 7, 0.2));
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: 18px;
            overflow: hidden;
            transition: transform .3s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
        .news-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .news-body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-tag {
            display: inline-block;
            align-self: flex-start;
            background: rgba(249, 115, 22, 0.15);
            color: #fde047;
            font-size: 12px;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .news-date {
            font-size: 13px;
            color: #f97316;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .news-card h3 {
            font-size: 17px;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.45;
        }
        .news-card p {
            font-size: 14px;
            color: #b0aca8;
            line-height: 1.65;
            flex: 1;
        }
        .news-more {
            margin-top: 14px;
            font-size: 14px;
            color: #fde047;
            font-weight: 600;
        }

        /* Testimonials */
        .testimonials {
            background: #0b0b0f;
            padding: 70px 0;
        }
        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .test-card {
            background: linear-gradient(145deg, rgba(249, 115, 22, 0.06), rgba(67, 20, 7, 0.18));
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: 18px;
            padding: 30px;
            position: relative;
        }
        .test-card .stars {
            color: #fde047;
            font-size: 18px;
            margin-bottom: 14px;
        }
        .test-card blockquote {
            color: #d6d3d1;
            font-size: 15px;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .test-card .user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .test-card .user span {
            font-size: 14px;
            color: #f97316;
            font-weight: 600;
        }

        /* FAQ */
        .faq {
            background: linear-gradient(160deg, #1c0a03, #0b0b0f);
            padding: 70px 0;
        }
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(249, 115, 22, 0.04);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: 14px;
            margin-bottom: 16px;
            overflow: hidden;
        }
        .faq-q {
            padding: 20px 26px;
            font-size: 17px;
            font-weight: 600;
            color: #fde047;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-a {
            padding: 0 26px 22px;
            color: #c8c4c0;
            line-height: 1.75;
            font-size: 15px;
        }

        /* CTA */
        .cta {
            background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.25), transparent 70%),
                linear-gradient(160deg, #431407, #0b0b0f);
            padding: 80px 0;
            text-align: center;
        }
        .cta h2 {
            font-size: 36px;
            color: #fff;
            margin-bottom: 16px;
        }
        .cta p {
            color: #d1d5db;
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 16px;
        }
        .cta .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta .btn {
            display: inline-block;
            background: linear-gradient(135deg, #f97316, #ea580c);
            padding: 14px 40px;
            border-radius: 50px;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            transition: all .3s;
        }
        .cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
            color: #fff;
        }
        .cta .btn-outline {
            background: transparent;
            border: 2px solid #fde047;
            color: #fde047;
        }
        .cta .btn-outline:hover {
            background: rgba(253, 224, 71, 0.1);
            color: #fde047;
        }

        /* Footer */
        .footer {
            background: #0b0b0f;
            border-top: 1px solid rgba(249, 115, 22, 0.15);
            padding: 50px 0 20px;
        }
        .footer-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-brand h3 {
            font-size: 22px;
            color: #fde047;
            margin-bottom: 10px;
        }
        .footer-brand p {
            color: #9ca3af;
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-links h4,
        .footer-contact h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 16px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #9ca3af;
            font-size: 14px;
        }
        .footer-links a:hover {
            color: #fde047;
        }
        .footer-contact p {
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #6b7280;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-bottom a {
            color: #9ca3af;
            font-size: 14px;
        }
        .footer-bottom a:hover {
            color: #fde047;
        }

        @media (max-width: 768px) {
            .nav-inner {
                flex-direction: column;
                height: auto;
                padding: 12px 0;
                gap: 10px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 4px;
            }
            .nav-links a {
                font-size: 14px;
                padding: 6px 12px;
            }
            .hero {
                padding: 130px 0 60px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .stats-grid,
            .adv-grid,
            .events-grid,
            .stand-grid,
            .news-grid,
            .test-grid {
                grid-template-columns: 1fr;
            }
            .story-wrap,
            .live-wrap {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-wrap {
                grid-template-columns: 1fr;
            }
        }