*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }

        :root {
            --amber: #d97706;
            --dark-brown: #78350f;
            --light-amber: #f59e0b;
            --cream: #fdf6e9;
            --cream-dark: #f5e6cc;
            --white: #ffffff;
            --text: #1f2937;
            --text-light: #6b7280;
            --shadow: 0 8px 30px rgba(120, 53, 15, 0.12);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--cream);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }

        /* ---------- 导航栏 ---------- */
        .site-nav {
            background: linear-gradient(135deg, var(--dark-brown) 0%, #92400e 50%, var(--amber) 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #fef3c7;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 999px;
            transition: all 0.3s ease;
            font-size: 15px;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fffbeb;
            transform: translateY(-1px);
        }

        .nav-links a:first-child {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
        }

        /* ---------- Hero 区 ---------- */
        .hero-section {
            background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #d97706 100%);
            padding: 80px 24px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
        }

        .hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 42px;
            font-weight: 800;
            color: #fffbeb;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #fde68a;
            max-width: 700px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }

        .hero-img {
            width: 100%;
            max-width: 1000px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            border: 4px solid rgba(255, 255, 255, 0.15);
            margin-top: 24px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            padding: 12px 32px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: #fffbeb;
            padding: 12px 32px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fffbeb;
        }

        /* ---------- GEO 介绍 ---------- */
        .geo-intro {
            padding: 70px 24px;
            background: var(--white);
        }

        .geo-container {
            max-width: 960px;
            margin: 0 auto;
        }

        .geo-container h2 {
            font-size: 28px;
            color: var(--dark-brown);
            margin-bottom: 20px;
            text-align: center;
            font-weight: 700;
        }

        .geo-container p {
            font-size: 17px;
            color: var(--text);
            line-height: 1.9;
            text-align: left;
            text-indent: 2em;
        }

        /* ---------- 数据统计 ---------- */
        .data-stats {
            padding: 70px 24px;
            background: linear-gradient(135deg, #fdf6e9, #f5e6cc);
        }

        .stats-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .stat-card {
            background: var(--white);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--amber);
        }

        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(120, 53, 15, 0.2);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--amber), var(--dark-brown));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-light);
            margin-top: 8px;
            font-weight: 500;
        }

        /* ---------- 核心优势 ---------- */
        .core-advantages {
            padding: 70px 24px;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            color: var(--dark-brown);
            margin-bottom: 16px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 16px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .advantages-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .advantage-card {
            background: linear-gradient(145deg, #fffdf5, #fdf6e9);
            border-radius: 20px;
            padding: 36px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 1px solid rgba(217, 119, 6, 0.1);
        }

        .advantage-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 16px 50px rgba(120, 53, 15, 0.15);
            border-color: rgba(217, 119, 6, 0.3);
        }

        .advantage-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .advantage-card h3 {
            font-size: 20px;
            color: var(--dark-brown);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .advantage-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ---------- 品牌故事 ---------- */
        .brand-story {
            padding: 70px 24px;
            background: linear-gradient(135deg, #78350f, #b45309);
            color: #fff;
        }

        .story-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .story-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: #fffbeb;
            margin-bottom: 20px;
        }

        .story-content p {
            color: #fde68a;
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 16px;
        }

        .story-img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* ---------- 焦点赛事 ---------- */
        .featured-events {
            padding: 70px 24px;
            background: var(--cream);
        }

        .events-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .event-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 50px rgba(120, 53, 15, 0.2);
        }

        .event-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .event-info {
            padding: 28px;
        }

        .event-info h3 {
            font-size: 20px;
            color: var(--dark-brown);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .event-info p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
        }

        .event-tag {
            display: inline-block;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        /* ---------- 热门排行 ---------- */
        .rankings {
            padding: 70px 24px;
            background: var(--white);
        }

        .rankings-container {
            max-width: 960px;
            margin: 0 auto;
        }

        .rank-list {
            list-style: none;
        }

        .rank-item {
            display: flex;
            align-items: center;
            padding: 20px 24px;
            background: #fdf6e9;
            border-radius: 16px;
            margin-bottom: 14px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--amber);
        }

        .rank-item:hover {
            background: #fffbeb;
            transform: translateX(6px);
        }

        .rank-num {
            font-size: 24px;
            font-weight: 800;
            color: var(--amber);
            width: 50px;
            text-align: center;
        }

        .rank-info {
            flex: 1;
        }

        .rank-info h4 {
            font-size: 18px;
            color: var(--dark-brown);
            font-weight: 600;
        }

        .rank-info span {
            font-size: 14px;
            color: var(--text-light);
        }

        .rank-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--amber);
        }

        /* ---------- 新闻列表 ---------- */
        .news-list {
            padding: 70px 24px;
            background: linear-gradient(135deg, #fdf6e9, #f5e6cc);
        }

        .news-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: var(--white);
            border-radius: 20px;
            padding: 28px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 1px solid rgba(217, 119, 6, 0.08);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 45px rgba(120, 53, 15, 0.15);
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .news-tag {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            letter-spacing: 0.5px;
        }

        .news-time {
            font-size: 13px;
            color: #9a7b4f;
            font-weight: 500;
        }

        .news-card h3 {
            font-size: 18px;
            color: var(--dark-brown);
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .news-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            flex-grow: 1;
        }

        .news-link {
            color: var(--amber);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-top: 16px;
            display: inline-block;
            transition: color 0.3s;
        }

        .news-link:hover {
            color: var(--dark-brown);
        }

        /* ---------- FAQ ---------- */
        .faq {
            padding: 70px 24px;
            background: var(--white);
        }

        .faq-container {
            max-width: 960px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fdf6e9;
            border-radius: 16px;
            padding: 28px 32px;
            margin-bottom: 20px;
            border-left: 4px solid var(--amber);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: #fffbeb;
            border-left-width: 6px;
        }

        .faq-item h3 {
            font-size: 18px;
            color: var(--dark-brown);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .faq-item p {
            font-size: 15px;
            color: var(--text);
            line-height: 1.8;
        }

        /* ---------- CTA ---------- */
        .cta {
            padding: 80px 24px;
            background: linear-gradient(135deg, #78350f, #b45309, #d97706);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-inner {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 800;
            color: #fffbeb;
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 17px;
            color: #fde68a;
            margin-bottom: 32px;
            line-height: 1.8;
        }

        /* ---------- 页脚 ---------- */
        .site-footer {
            background: #1f1307;
            color: #d4a574;
            padding: 50px 24px 30px;
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .footer-brand h3 {
            color: #f59e0b;
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-links h4 {
            color: #f59e0b;
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-links a {
            display: block;
            color: #d4a574;
            text-decoration: none;
            font-size: 14px;
            padding: 4px 0;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #fffbeb;
        }

        .footer-contact h4 {
            color: #f59e0b;
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-contact p {
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 13px;
            color: #a08462;
        }

        .footer-bottom a {
            color: #d4a574;
            text-decoration: none;
            margin: 0 8px;
        }

        .footer-bottom a:hover {
            color: #fffbeb;
        }

        /* ---------- 响应式 ---------- */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 28px;
            }

            .story-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .nav-links {
                justify-content: center;
            }
        }