* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        :root {
            --primary: #d97706;
            --primary-dark: #78350f;
            --cream: #fef3c7;
            --card-bg: #fffbeb;
            --text-dark: #451a03;
            --text-light: #fef3c7;
        }
        body {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        /* 顶部导航 */
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), #92400e, var(--primary));
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(120, 53, 15, .4);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            object-fit: cover;
        }
        .brand span {
            color: var(--text-light);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .1);
            transition: background .3s, transform .2s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, .25);
            transform: translateY(-2px);
        }
        /* GEO 区块 */
        .geo-intro {
            padding: 80px 0 60px;
            background: linear-gradient(180deg, var(--primary-dark) 0%, #92400e 60%, #d97706 100%);
            color: var(--text-light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .geo-intro .geo-badge {
            display: inline-block;
            background: rgba(255, 255, 255, .2);
            padding: 4px 20px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .geo-intro h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
            margin-bottom: 24px;
        }
        .geo-intro p {
            max-width: 900px;
            margin: 0 auto 32px;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .95);
            background: rgba(255, 255, 255, .1);
            padding: 20px 28px;
            border-radius: 16px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, .15);
        }
        .geo-intro .geo-gallery {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .geo-intro .geo-gallery img {
            width: 200px;
            height: 140px;
            object-fit: cover;
            border-radius: 16px;
            border: 3px solid rgba(255, 255, 255, .3);
            transition: transform .3s;
        }
        .geo-intro .geo-gallery img:hover {
            transform: scale(1.05);
        }
        /* 通用区块 */
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: linear-gradient(180deg, #fef3c7, #fde68a);
        }
        .section-dark {
            background: linear-gradient(135deg, #78350f, #92400e);
            color: var(--text-light);
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            border-radius: 4px;
            background: var(--primary);
            margin: 12px auto 0;
        }
        .section-header p {
            color: #8b5e34;
            font-size: 15px;
            max-width: 600px;
            margin: 12px auto 0;
        }
        .section-dark .section-header h2 {
            color: var(--text-light);
        }
        .section-dark .section-header p {
            color: rgba(255, 255, 255, .8);
        }
        /* 卡片通用 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(217, 119, 6, .2);
            box-shadow: 0 8px 24px rgba(120, 53, 15, .08);
            transition: transform .3s, box-shadow .3s;
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(120, 53, 15, .15);
        }
        .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #d97706, #fbbf24, #d97706);
        }
        .card .icon {
            font-size: 40px;
            margin-bottom: 16px;
            display: block;
        }
        .card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        .card p {
            font-size: 14px;
            color: #8b5e34;
            line-height: 1.6;
        }
        .card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px 20px;
            box-shadow: 0 8px 24px rgba(120, 53, 15, .08);
            border: 1px solid rgba(217, 119, 6, .15);
        }
        .stat-item .num {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #d97706, #78350f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-item .label {
            font-size: 14px;
            color: #8b5e34;
            margin-top: 8px;
        }
        /* 品牌故事 */
        .brand-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .brand-story-grid img {
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(120, 53, 15, .2);
        }
        .brand-story-text h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }
        .brand-story-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #8b5e34;
            margin-bottom: 16px;
        }
        /* 焦点赛事 */
        .event-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(120, 53, 15, .1);
            border: 1px solid rgba(217, 119, 6, .15);
            transition: transform .3s, box-shadow .3s;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(120, 53, 15, .2);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-card .event-body {
            padding: 24px;
        }
        .event-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .event-card p {
            font-size: 13px;
            color: #8b5e34;
        }
        .event-tag {
            display: inline-block;
            background: #d97706;
            color: #fff;
            font-size: 12px;
            padding: 2px 12px;
            border-radius: 12px;
            margin-top: 12px;
        }
        /* 赛事直播 */
        .live-section {
            background: linear-gradient(135deg, #78350f, #92400e, #d97706);
            color: var(--text-light);
            padding: 80px 0;
            text-align: center;
        }
        .live-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        .live-item {
            background: rgba(255, 255, 255, .1);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, .15);
            backdrop-filter: blur(4px);
        }
        .live-item .live-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        /* 热门排行 */
        .rank-list {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(120, 53, 15, .08);
        }
        .rank-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #fde68a;
            gap: 16px;
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-num {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #d97706, #78350f);
            color: #fff;
            font-weight: 700;
            border-radius: 8px;
            font-size: 14px;
            flex-shrink: 0;
        }
        .rank-name {
            flex: 1;
            font-weight: 600;
            font-size: 15px;
        }
        .rank-hot {
            font-size: 13px;
            color: #d97706;
        }
        /* 用户口碑 */
        .testimonial-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 8px 24px rgba(120, 53, 15, .08);
            text-align: center;
            border: 1px solid rgba(217, 119, 6, .15);
        }
        .testimonial-card .quote {
            font-size: 28px;
            color: #d97706;
            margin-bottom: 12px;
        }
        .testimonial-card p {
            font-size: 14px;
            color: #8b5e34;
            font-style: italic;
            line-height: 1.7;
        }
        .testimonial-card .author {
            margin-top: 16px;
            font-weight: 700;
            color: var(--text-dark);
            font-size: 15px;
        }
        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #d97706, #fbbf24);
            text-align: center;
            padding: 80px 0;
        }
        .cta-section h2 {
            font-size: 36px;
            color: #fff;
            font-weight: 800;
            text-shadow: 0 2px 12px rgba(0, 0, 0, .2);
        }
        .cta-section p {
            color: #fff;
            font-size: 16px;
            margin: 16px 0 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn-group {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-btn {
            display: inline-block;
            background: var(--primary-dark);
            color: #fff;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 4px 16px rgba(120, 53, 15, .3);
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(120, 53, 15, .4);
        }
        .cta-btn-light {
            background: #fff;
            color: var(--primary-dark);
        }
        /* 新闻 */
        .news-list-section {
            background: #fffbeb;
        }
        .news-card {
            display: flex;
            gap: 24px;
            background: var(--card-bg);
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 24px;
            box-shadow: 0 8px 24px rgba(120, 53, 15, .06);
            border: 1px solid rgba(217, 119, 6, .1);
            transition: transform .2s;
        }
        .news-card:hover {
            transform: translateX(4px);
        }
        .news-date {
            flex-shrink: 0;
            background: linear-gradient(135deg, #d97706, #78350f);
            color: #fff;
            padding: 12px 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
            height: fit-content;
            min-width: 90px;
        }
        .news-content {
            flex: 1;
        }
        .news-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        .news-content p {
            font-size: 14px;
            color: #8b5e34;
            line-height: 1.7;
        }
        .news-tag {
            display: inline-block;
            background: #d97706;
            color: #fff;
            font-size: 12px;
            padding: 2px 12px;
            border-radius: 12px;
            margin-top: 12px;
        }
        @media (max-width: 768px) {
            .news-card {
                flex-direction: column;
            }
            .brand-story-grid {
                grid-template-columns: 1fr;
            }
            .geo-intro h1 {
                font-size: 28px;
            }
        }
        /* FAQ */
        .faq-section {
            padding: 80px 0;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 12px;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(120, 53, 15, .06);
            border: 1px solid rgba(217, 119, 6, .12);
            overflow: hidden;
            transition: box-shadow .3s;
        }
        .faq-item:hover {
            box-shadow: 0 8px 24px rgba(120, 53, 15, .1);
        }
        .faq-item summary {
            padding: 20px 24px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            list-style: none;
            position: relative;
            padding-right: 48px;
            color: var(--text-dark);
            background: linear-gradient(90deg, rgba(217, 119, 6, .08), transparent);
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: #d97706;
            transition: transform .3s;
        }
        .faq-item details[open] summary::after {
            transform: translateY(-50%) rotate(45deg);
        }
        .faq-item .faq-answer {
            padding: 0 24px 20px;
            font-size: 14px;
            color: #8b5e34;
            line-height: 1.7;
        }
        /* 页脚 */
        .site-footer {
            background: linear-gradient(135deg, #451a03, #78350f);
            color: rgba(255, 255, 255, .8);
            padding: 48px 0 24px;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .footer-col p,
        .footer-col a {
            color: rgba(255, 255, 255, .7);
            font-size: 14px;
            line-height: 1.8;
            text-decoration: none;
            display: block;
        }
        .footer-col a:hover {
            color: #fbbf24;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, .7);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #fbbf24;
        }