* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            background: linear-gradient(135deg, #1a0b02 0%, #431407 50%, #1a0b02 100%);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(26, 11, 2, 0.88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(249, 115, 22, 0.3);
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #fde047;
            text-shadow: 0 0 24px rgba(249, 115, 22, 0.5);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(249, 115, 22, 0.12);
            border: 1px solid transparent;
            white-space: nowrap;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            border-color: rgba(249, 115, 22, 0.6);
            box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
            transform: translateY(-2px);
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 20px 80px;
            overflow: hidden;
        }
        .hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.45;
            filter: brightness(0.55) contrast(1.1);
            z-index: -1;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 160px;
            background: linear-gradient(to top, #1a0b02, transparent);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 820px;
        }
        .hero-content h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fde047 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 60px rgba(249, 115, 22, 0.3);
        }
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        .btn-primary {
            display: inline-block;
            padding: 16px 44px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border: 1px solid rgba(253, 224, 71, 0.4);
            box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
            transition: all 0.3s ease;
            margin: 8px 8px;
        }
        .btn-secondary {
            display: inline-block;
            padding: 16px 44px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            margin: 8px 8px;
        }
        .btn-primary:hover,
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
        }

        /* Geo */
        .geo-section {
            padding: 80px 20px;
            background: rgba(249, 115, 22, 0.05);
            border-top: 1px solid rgba(249, 115, 22, 0.15);
            border-bottom: 1px solid rgba(249, 115, 22, 0.15);
        }
        .geo-content {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 17px;
            color: rgba(255, 255, 255, 0.92);
            text-align: center;
            line-height: 1.9;
        }
        .geo-content strong {
            color: #fde047;
        }

        /* Stats */
        .stats-section {
            padding: 80px 20px;
        }
        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fde047, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto 48px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .stat-card {
            background: linear-gradient(145deg, #2d1508, #431407);
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: 20px;
            padding: 36px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .stat-card:hover {
            border-color: #f97316;
            box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #fde047;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Advantages */
        .advantages-section {
            padding: 80px 20px;
            background: rgba(0, 0, 0, 0.2);
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .advantage-card {
            background: linear-gradient(145deg, #431407, #2d1508);
            border: 1px solid rgba(249, 115, 22, 0.25);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #f97316, transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .advantage-card:hover::before {
            opacity: 1;
        }
        .advantage-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
        }
        .advantage-icon {
            font-size: 44px;
            margin-bottom: 16px;
            display: block;
        }
        .advantage-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #fde047;
            margin-bottom: 12px;
        }
        .advantage-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.82);
        }

        /* Story */
        .story-section {
            padding: 80px 20px;
        }
        .story-content {
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .story-content img {
            width: 420px;
            max-width: 100%;
            border-radius: 20px;
            border: 1px solid rgba(249, 115, 22, 0.3);
            box-shadow: 0 8px 40px rgba(249, 115, 22, 0.2);
        }
        .story-content p {
            font-size: 16px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Events */
        .events-section {
            padding: 80px 20px;
            background: rgba(0, 0, 0, 0.25);
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .event-card {
            background: linear-gradient(145deg, #2d1508, #1a0b02);
            border: 1px solid rgba(249, 115, 22, 0.25);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, 0.25);
            border-color: #f97316;
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .event-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #fde047;
            padding: 18px 20px 8px;
        }
        .event-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
            padding: 0 20px 20px;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 20px;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: linear-gradient(145deg, #431407, #2d1508);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 20px;
            padding: 30px;
            position: relative;
        }
        .testimonial-card::after {
            content: '❝';
            position: absolute;
            top: 16px;
            right: 24px;
            font-size: 52px;
            color: rgba(249, 115, 22, 0.3);
            line-height: 1;
        }
        .testimonial-card p {
            font-size: 15px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 16px;
        }
        .testimonial-author {
            font-size: 14px;
            color: #fde047;
            font-weight: 500;
        }

        /* CTA */
        .cta-section {
            padding: 100px 20px;
            text-align: center;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(253, 224, 71, 0.05)), url('/img/play.webp') center/cover no-repeat;
            position: relative;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(26, 11, 2, 0.72);
            z-index: 0;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            color: #fde047;
            margin-bottom: 16px;
            text-shadow: 0 4px 30px rgba(249, 115, 22, 0.3);
        }
        .cta-section p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }

        /* News */
        .news-section {
            padding: 80px 20px;
            background: rgba(0, 0, 0, 0.15);
        }
        .news-list {
            max-width: 950px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 26px;
        }
        .news-item {
            background: linear-gradient(145deg, #2d1508, #1a0b02);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 20px;
            padding: 28px 32px;
            transition: all 0.3s ease;
        }
        .news-item:hover {
            border-color: #f97316;
            box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
            transform: translateX(6px);
        }
        .news-item h3 {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-meta {
            font-size: 13px;
            color: #fde047;
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .news-meta .tag {
            background: rgba(249, 115, 22, 0.2);
            padding: 2px 12px;
            border-radius: 10px;
            font-size: 12px;
            color: #fde047;
        }
        .news-item p {
            font-size: 15px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.82);
        }

        /* FAQ */
        .faq-section {
            padding: 80px 20px;
        }
        .faq-list {
            max-width: 950px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .faq-item {
            background: linear-gradient(145deg, #431407, #2d1508);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 20px;
            padding: 28px 32px;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 4px 24px rgba(249, 115, 22, 0.2);
            border-color: rgba(249, 115, 22, 0.4);
        }
        .faq-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: #fde047;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .faq-item p {
            font-size: 15px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Footer */
        .site-footer {
            background: #120803;
            border-top: 1px solid rgba(249, 115, 22, 0.3);
            padding: 50px 20px 20px;
        }
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fde047;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 8px;
        }
        .footer-links {
            text-align: right;
            font-size: 14px;
        }
        .footer-links a {
            color: #f97316;
            text-decoration: none;
            transition: color 0.3s;
            margin: 0 4px;
        }
        .footer-links a:hover {
            color: #fde047;
        }
        .footer-copyright {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .events-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .story-content {
                flex-direction: column;
                text-align: center;
            }
            .story-content img {
                width: 100%;
                max-width: 480px;
            }
            .hero-content h1 {
                font-size: 38px;
            }
            .header-inner {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                justify-content: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-links {
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 30px;
            }
            .hero-subtitle {
                font-size: 16px;
            }
            .btn-primary,
            .btn-secondary {
                display: block;
                margin: 12px auto;
                max-width: 240px;
            }
            .stat-number {
                font-size: 32px;
            }
        }