* {
            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-color: #fdf8f0;
            color: #3b2a0a;
            line-height: 1.7;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Navigation ===== */
        .navbar {
            background: linear-gradient(90deg, #78350f 0%, #b45309 100%);
            padding: 14px 24px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.35);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 1280px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            color: #fef3e2;
            font-size: 15px;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 24px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background: rgba(253, 248, 240, 0.18);
            border-color: rgba(253, 248, 240, 0.3);
            transform: translateY(-2px);
        }

        /* ===== Hero ===== */
        .hero {
            background: linear-gradient(135deg, #d97706 0%, #92400e 55%, #78350f 100%);
            padding: 64px 24px 48px;
            color: #fdf8f0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.35;
            color: #ffffff;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }
        .hero-intro {
            max-width: 960px;
            margin: 0 auto 36px;
            font-size: 17px;
            line-height: 1.9;
            color: #fef3e2;
            text-align: justify;
            text-align-last: center;
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .btn-primary {
            background: #fff;
            color: #78350f;
            padding: 12px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }
        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.75);
            color: #fff;
            padding: 12px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            background: transparent;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            transform: translateY(-3px);
        }
        .hero-img-wrap {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
        }
        .hero-img-wrap img {
            width: 100%;
            display: block;
            height: auto;
            max-height: 420px;
            object-fit: cover;
        }

        /* ===== Section common ===== */
        .section {
            padding: 64px 24px;
        }
        .section-alt {
            background: #f7eee2;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: #78350f;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        .section-sub {
            text-align: center;
            color: #9a7a52;
            font-size: 16px;
            margin-bottom: 44px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-divider {
            width: 72px;
            height: 4px;
            background: linear-gradient(90deg, #d97706, #78350f);
            border-radius: 4px;
            margin: 0 auto 40px;
        }

        /* ===== Stats ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .stat-card {
            background: linear-gradient(145deg, #fffbf2, #fef3e2);
            border-radius: 20px;
            padding: 36px 20px;
            text-align: center;
            box-shadow: 0 4px 18px rgba(120, 53, 15, 0.08);
            border: 1px solid rgba(217, 119, 6, 0.15);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(120, 53, 15, 0.15);
        }
        .stat-num {
            font-size: 44px;
            font-weight: 800;
            color: #d97706;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 15px;
            color: #8a6b45;
            margin-top: 10px;
            letter-spacing: 1px;
        }

        /* ===== Advantages ===== */
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .adv-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.06);
            border: 1px solid #f3e3cc;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .adv-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d97706, #78350f);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .adv-card:hover::after {
            opacity: 1;
        }
        .adv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 32px rgba(120, 53, 15, 0.12);
        }
        .adv-icon {
            font-size: 48px;
            margin-bottom: 16px;
            display: block;
        }
        .adv-card h3 {
            font-size: 20px;
            color: #78350f;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .adv-card p {
            font-size: 14px;
            color: #8a6b45;
            line-height: 1.7;
        }

        /* ===== Brand story ===== */
        .brand-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .brand-story-text h3 {
            font-size: 24px;
            color: #78350f;
            margin-bottom: 16px;
            font-weight: 700;
        }
        .brand-story-text p {
            font-size: 15px;
            line-height: 1.9;
            color: #6b4e2e;
            margin-bottom: 16px;
        }
        .brand-story-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(120, 53, 15, 0.15);
        }
        .brand-story-img img {
            width: 100%;
            display: block;
            height: 360px;
            object-fit: cover;
        }

        /* ===== Live Stream ===== */
        .live-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .live-card {
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.07);
            transition: all 0.3s ease;
            border: 1px solid #f3e3cc;
        }
        .live-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 36px rgba(120, 53, 15, 0.14);
        }
        .live-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .live-card-body {
            padding: 24px;
        }
        .live-card-body h3 {
            font-size: 18px;
            color: #78350f;
            margin-bottom: 8px;
        }
        .live-card-body p {
            font-size: 14px;
            color: #8a6b45;
            line-height: 1.6;
        }
        .live-status {
            display: inline-block;
            background: #dc2626;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            margin-bottom: 8px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        /* ===== Results ===== */
        .results-wrap {
            max-width: 1100px;
            margin: 0 auto;
        }
        .result-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 2px 12px rgba(120, 53, 15, 0.05);
            border: 1px solid #f3e3cc;
            transition: all 0.3s ease;
            flex-wrap: wrap;
        }
        .result-item:hover {
            box-shadow: 0 8px 24px rgba(120, 53, 15, 0.1);
            border-color: #d97706;
        }
        .result-tag {
            background: #fef3c7;
            color: #92400e;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 12px;
            white-space: nowrap;
        }
        .result-teams {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 18px;
            font-weight: 700;
            color: #3b2a0a;
        }
        .result-score {
            background: linear-gradient(135deg, #d97706, #92400e);
            color: #fff;
            padding: 6px 18px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 800;
        }
        .result-link {
            margin-left: auto;
            color: #d97706;
            font-weight: 600;
            font-size: 14px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
        }
        .result-link:hover {
            border-color: #d97706;
        }

        /* ===== Featured Events ===== */
        .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .event-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.07);
            border: 1px solid #f3e3cc;
            transition: all 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 38px rgba(120, 53, 15, 0.15);
        }
        .event-card img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            display: block;
        }
        .event-body {
            padding: 26px;
        }
        .event-body h3 {
            font-size: 19px;
            color: #78350f;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .event-body p {
            font-size: 14px;
            color: #8a6b45;
            line-height: 1.65;
            margin-bottom: 14px;
        }
        .event-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #a08a6a;
            flex-wrap: wrap;
        }

        /* ===== News List ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .news-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.06);
            border: 1px solid #f3e3cc;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 34px rgba(120, 53, 15, 0.14);
            border-color: #d97706;
        }
        .news-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
        }
        .news-body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-tag-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .news-tag {
            background: linear-gradient(135deg, #d97706, #78350f);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 16px;
        }
        .news-date {
            font-size: 13px;
            color: #a08a6a;
            font-weight: 500;
        }
        .news-title {
            font-size: 17px;
            font-weight: 700;
            color: #3b2a0a;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .news-card p.news-summary {
            font-size: 14px;
            color: #6b4e2e;
            line-height: 1.7;
            flex: 1;
        }
        .news-link {
            display: inline-block;
            margin-top: 16px;
            color: #d97706;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }
        .news-link:hover {
            padding-left: 6px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, #b45309, #78350f);
            text-align: center;
            padding: 60px 24px;
            color: #fdf8f0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #fff;
        }
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 32px;
            font-size: 17px;
            color: #fef3e2;
            line-height: 1.8;
        }

        /* ===== Download ===== */
        .download-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        .download-info h3 {
            font-size: 24px;
            color: #78350f;
            margin-bottom: 14px;
        }
        .download-info p {
            font-size: 15px;
            color: #6b4e2e;
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .download-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .download-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(120, 53, 15, 0.18);
        }
        .download-img img {
            width: 100%;
            display: block;
            max-height: 360px;
            object-fit: cover;
        }

        /* ===== Testimonials ===== */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testi-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.06);
            border: 1px solid #f3e3cc;
            text-align: center;
            transition: all 0.3s ease;
        }
        .testi-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 32px rgba(120, 53, 15, 0.12);
        }
        .testi-avatar {
            font-size: 56px;
            margin-bottom: 16px;
            display: block;
        }
        .testi-card p {
            font-size: 15px;
            color: #6b4e2e;
            font-style: italic;
            line-height: 1.75;
            margin-bottom: 18px;
        }
        .testi-name {
            font-weight: 700;
            color: #78350f;
            font-size: 16px;
        }
        .testi-role {
            font-size: 13px;
            color: #a08a6a;
        }

        /* ===== Partners ===== */
        .partners-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .partner-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 20px 32px;
            font-size: 18px;
            font-weight: 700;
            color: #8a6b45;
            box-shadow: 0 2px 12px rgba(120, 53, 15, 0.05);
            border: 1px solid #f3e3cc;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .partner-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(120, 53, 15, 0.12);
            border-color: #d97706;
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #ffffff;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid #f3e3cc;
            box-shadow: 0 2px 10px rgba(120, 53, 15, 0.04);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 6px 20px rgba(120, 53, 15, 0.1);
        }
        .faq-question {
            padding: 22px 28px;
            font-size: 17px;
            font-weight: 700;
            color: #78350f;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        .faq-question::after {
            content: "＋";
            font-size: 22px;
            color: #d97706;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .faq-item.open .faq-question::after {
            content: "−";
        }
        .faq-answer {
            padding: 0 28px 24px;
            font-size: 15px;
            color: #6b4e2e;
            line-height: 1.8;
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #78350f, #451a03);
            color: #fdf8f0;
            padding: 56px 24px 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #fbbf24;
        }
        .footer-col p {
            font-size: 14px;
            line-height: 1.8;
            color: #d6c5a9;
        }
        .footer-col a {
            font-size: 14px;
            color: #d6c5a9;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        .footer-col a:hover {
            color: #fbbf24;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
            color: #d6c5a9;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-bottom a {
            color: #fbbf24;
            margin: 0 8px;
            transition: opacity 0.3s;
        }
        .footer-bottom a:hover {
            opacity: 0.8;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 26px;
            }
            .hero-intro {
                font-size: 15px;
            }
            .section {
                padding: 44px 16px;
            }
            .section-title {
                font-size: 26px;
            }
            .brand-story-grid,
            .download-grid {
                grid-template-columns: 1fr;
            }
            .result-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .result-link {
                margin-left: 0;
            }
            .nav-links {
                gap: 6px;
            }
            .nav-links a {
                font-size: 13px;
                padding: 6px 12px;
            }
        }