*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: linear-gradient(160deg, #f5f0e8 0%, #f8f4ec 40%, #f0e6d6 100%);
            color: #1f1b16;
            line-height: 1.75;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #78350f;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 头部导航 */
        .site-header {
            background: linear-gradient(90deg, #78350f 0%, #d97706 50%, #78350f 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.35);
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #fdf6ec;
            letter-spacing: 2px;
            background: rgba(0, 0, 0, 0.2);
            padding: 4px 16px;
            border-radius: 8px;
        }
        .nav-links {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            color: #fdf6ec;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* 主区块 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        section {
            padding: 64px 0;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            color: #78350f;
            letter-spacing: 2px;
        }
        .section-subtitle {
            text-align: center;
            color: #9a7b5a;
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #78350f 0%, #b45309 40%, #d97706 70%, #f59e0b 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
            background-size: 40px 40px;
        }
        .hero .container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1 1 480px;
            color: #fdf6ec;
        }
        .hero-text h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1.3;
            color: #fff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .hero-text p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.92);
            margin-top: 16px;
        }
        .hero-image {
            flex: 0 1 380px;
            text-align: center;
        }
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        /* 数据统计 */
        .stats-section {
            background: linear-gradient(180deg, #faf5ec 0%, #f0e6d6 100%);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: #fff9f2;
            border: 1px solid rgba(215, 119, 6, 0.15);
            border-radius: 16px;
            padding: 32px 20px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(120, 53, 15, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(120, 53, 15, 0.15);
        }
        .stat-card .num {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(135deg, #d97706, #78350f);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-card .label {
            font-size: 14px;
            color: #9a7b5a;
            margin-top: 8px;
        }

        /* 核心优势 */
        .advantages-section {
            background: linear-gradient(135deg, #f8f4ec 0%, #fdf6ec 50%, #f0e6d6 100%);
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: #fff9f2;
            border-radius: 16px;
            padding: 36px 28px;
            border: 1px solid rgba(215, 119, 6, 0.12);
            box-shadow: 0 4px 20px rgba(120, 53, 15, 0.06);
            text-align: center;
            transition: transform 0.3s;
        }
        .adv-card:hover {
            transform: translateY(-4px);
        }
        .adv-card .icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .adv-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #78350f;
            margin-bottom: 12px;
        }
        .adv-card p {
            font-size: 14px;
            color: #6b5540;
            line-height: 1.7;
        }

        /* 品牌故事 */
        .brand-section {
            background: linear-gradient(135deg, #78350f 0%, #b45309 100%);
            color: #fdf6ec;
        }
        .brand-section .section-title {
            color: #f59e0b;
        }
        .brand-section .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        .brand-flex {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .brand-flex img {
            flex: 0 1 380px;
            border-radius: 20px;
            border: 3px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }
        .brand-text {
            flex: 1 1 400px;
        }
        .brand-text h3 {
            font-size: 28px;
            margin-bottom: 16px;
            color: #f59e0b;
        }
        .brand-text p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 焦点赛事 */
        .events-section {
            background: #faf5ec;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            background: #fff9f2;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(215, 119, 6, 0.12);
            box-shadow: 0 6px 20px rgba(120, 53, 15, 0.06);
            transition: transform 0.3s;
        }
        .event-card:hover {
            transform: translateY(-4px);
        }
        .event-card .event-img {
            height: 180px;
            object-fit: cover;
            width: 100%;
        }
        .event-card .event-info {
            padding: 20px;
        }
        .event-card h3 {
            font-size: 18px;
            color: #78350f;
            margin-bottom: 8px;
        }
        .event-card p {
            font-size: 14px;
            color: #6b5540;
        }

        /* 游戏推荐 */
        .game-section {
            background: linear-gradient(160deg, #f0e6d6 0%, #f8f4ec 50%, #fdf6ec 100%);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .game-card {
            background: #fff9f2;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid rgba(215, 119, 6, 0.12);
            box-shadow: 0 6px 20px rgba(120, 53, 15, 0.06);
            text-align: center;
            transition: transform 0.3s;
        }
        .game-card:hover {
            transform: translateY(-4px);
        }
        .game-card img {
            border-radius: 12px;
            margin-bottom: 16px;
            max-height: 120px;
            object-fit: cover;
            width: 100%;
        }
        .game-card h3 {
            font-size: 20px;
            color: #78350f;
            margin-bottom: 8px;
        }
        .game-card p {
            font-size: 14px;
            color: #6b5540;
        }

        /* 赛事直播 */
        .live-section {
            background: linear-gradient(135deg, #1f1b16 0%, #3a2e22 100%);
            color: #fdf6ec;
        }
        .live-section .section-title {
            color: #f59e0b;
        }
        .live-flex {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .live-info {
            flex: 1 1 380px;
        }
        .live-info h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #f59e0b;
        }
        .live-info p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }
        .live-image {
            flex: 0 1 400px;
        }
        .live-image img {
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        /* 新闻 */
        .news-section {
            background: #faf5ec;
        }
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .news-tag {
            background: linear-gradient(135deg, #d97706, #b45309);
            color: #fff;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .news-card {
            background: #fff9f2;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(215, 119, 6, 0.1);
            box-shadow: 0 4px 16px rgba(120, 53, 15, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(120, 53, 15, 0.12);
        }
        .news-card .date {
            font-size: 13px;
            color: #b45309;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        .news-card h3 {
            font-size: 18px;
            color: #78350f;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 14px;
            color: #6b5540;
            line-height: 1.7;
        }

        /* FAQ */
        .faq-section {
            background: linear-gradient(180deg, #fdf6ec 0%, #f0e6d6 100%);
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: #fff9f2;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid rgba(215, 119, 6, 0.12);
            box-shadow: 0 4px 16px rgba(120, 53, 15, 0.04);
        }
        .faq-item h3 {
            font-size: 17px;
            color: #78350f;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .faq-item p {
            font-size: 15px;
            color: #6b5540;
            line-height: 1.75;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #78350f 100%);
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='20' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
            background-size: 40px 40px;
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        .cta-section h2 {
            font-size: 36px;
            color: #fff;
            margin-bottom: 16px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 16px;
            margin-bottom: 32px;
        }
        .btn-cta {
            display: inline-block;
            background: #fff;
            color: #78350f;
            padding: 14px 40px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            color: #78350f;
        }

        /* 合作伙伴 */
        .partners-section {
            background: #faf5ec;
            padding: 48px 0;
        }
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            align-items: center;
        }
        .partner-item {
            background: #fff;
            border-radius: 12px;
            padding: 16px 28px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            font-size: 16px;
            font-weight: 600;
            color: #78350f;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 页脚 */
        .site-footer {
            background: linear-gradient(90deg, #1f1b16 0%, #3a2e22 100%);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0 20px;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-col h4 {
            color: #f59e0b;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .footer-col p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        .footer-col a:hover {
            color: #f59e0b;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            margin: 0 4px;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .stats-grid,
            .advantages-grid,
            .events-grid,
            .game-grid {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero .container {
                flex-direction: column;
            }
            .hero-text h1 {
                font-size: 30px;
            }
            .section-title {
                font-size: 26px;
            }
            .nav-links {
                justify-content: center;
                margin-top: 8px;
            }
        }