* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #2d0a4e 30%, #4a0e6e 60%, #1a0a2e 100%);
            color: #f5e6ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff9a76;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(255, 107, 107, 0.15);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        nav {
            background: rgba(74, 14, 110, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 154, 118, 0.2);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-brand {
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff9a76, #ff6b6b, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            align-items: center;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            border-bottom-color: #ff9a76;
        }

        /* 区块通用 */
        .section {
            padding: 64px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 48px;
            background: linear-gradient(135deg, #ff9a76, #ff6b6b, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .card {
            background: linear-gradient(145deg, rgba(255, 154, 118, 0.08), rgba(192, 132, 252, 0.08));
            border: 1px solid rgba(255, 154, 118, 0.15);
            border-radius: 20px;
            padding: 28px 24px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(255, 107, 107, 0.2);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #ff9a76;
        }
        .card p {
            color: #d4c4e8;
            font-size: 0.95rem;
        }

        /* Hero */
        .hero {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(ellipse at top, rgba(255, 154, 118, 0.12), transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ff9a76, #ff6b6b, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            max-width: 720px;
            margin: 0 auto 32px;
            font-size: 1.1rem;
            color: #d4c4e8;
        }
        .hero-img {
            max-width: 600px;
            margin: 0 auto;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 107, 107, 0.06);
            border-radius: 16px;
            padding: 28px 16px;
            border: 1px solid rgba(255, 154, 118, 0.1);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff9a76, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            font-size: 1rem;
            color: #b8a0d0;
            margin-top: 8px;
        }

        /* 核心优势 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .advantage-item {
            background: linear-gradient(145deg, rgba(255, 154, 118, 0.06), rgba(192, 132, 252, 0.06));
            border-radius: 20px;
            padding: 28px 20px;
            border: 1px solid rgba(255, 154, 118, 0.1);
            text-align: center;
            transition: all 0.3s;
        }
        .advantage-item:hover {
            border-color: #ff9a76;
            box-shadow: 0 0 30px rgba(255, 154, 118, 0.1);
        }
        .advantage-icon {
            font-size: 2.8rem;
            margin-bottom: 16px;
        }
        .advantage-item h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #ff9a76;
        }

        /* 新闻 */
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .news-card {
            background: linear-gradient(145deg, rgba(255, 154, 118, 0.06), rgba(192, 132, 252, 0.06));
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 154, 118, 0.1);
            transition: all 0.3s;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
        }
        .news-date {
            font-size: 0.9rem;
            color: #c084fc;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .news-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #ff9a76;
        }
        .news-card p {
            color: #c4b0d8;
            font-size: 0.95rem;
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }
        .faq-item {
            background: rgba(255, 154, 118, 0.04);
            border-radius: 16px;
            padding: 24px 20px;
            border-left: 4px solid #ff9a76;
        }
        .faq-item h4 {
            font-size: 1.1rem;
            color: #ff9a76;
            margin-bottom: 12px;
        }
        .faq-item p {
            color: #c4b0d8;
            font-size: 0.95rem;
        }

        /* 品牌故事 */
        .story-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        .story-text {
            flex: 1 1 300px;
        }
        .story-text h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .story-text p {
            color: #d4c4e8;
        }
        .story-img {
            flex: 1 1 300px;
        }

        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .event-card {
            background: linear-gradient(145deg, rgba(255, 107, 107, 0.06), rgba(192, 132, 252, 0.06));
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 154, 118, 0.1);
            text-align: center;
        }
        .event-card h3 {
            font-size: 1.1rem;
            color: #ff9a76;
            margin-bottom: 8px;
        }

        /* 用户口碑 */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .testimonial-item {
            background: rgba(255, 154, 118, 0.04);
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 154, 118, 0.08);
            position: relative;
        }
        .testimonial-item::before {
            content: "“";
            font-size: 3rem;
            color: #ff9a76;
            opacity: 0.3;
            position: absolute;
            top: 8px;
            left: 16px;
        }
        .testimonial-item p {
            color: #d4c4e8;
            font-style: italic;
        }
        .testimonial-author {
            margin-top: 16px;
            font-weight: 700;
            color: #c084fc;
        }

        /* CTA */
        .cta {
            text-align: center;
            padding: 80px 0;
            background: radial-gradient(ellipse at bottom, rgba(255, 154, 118, 0.1), transparent 70%);
        }
        .cta h2 {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }
        .cta p {
            font-size: 1.1rem;
            color: #d4c4e8;
            margin-bottom: 32px;
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff9a76, #ff6b6b);
            color: #1a0a2e;
            font-weight: 700;
            padding: 16px 48px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(255, 107, 107, 0.5);
            color: #1a0a2e;
        }

        /* GEO */
        .geo-intro {
            background: linear-gradient(145deg, rgba(255, 154, 118, 0.04), rgba(192, 132, 252, 0.04));
            border-radius: 24px;
            padding: 40px 32px;
            margin-top: 40px;
        }
        .geo-intro p {
            color: #d4c4e8;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px 40px;
            padding: 20px 0;
        }
        .partner-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 154, 118, 0.05);
            padding: 12px 24px;
            border-radius: 40px;
            border: 1px solid rgba(255, 154, 118, 0.1);
        }
        .partner-item img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* 页脚 */
        footer {
            background: rgba(26, 10, 46, 0.9);
            border-top: 1px solid rgba(255, 154, 118, 0.1);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 16px;
            color: #ff9a76;
        }
        .footer-col a {
            display: block;
            color: #b8a0d0;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #ff9a76;
        }
        .footer-bottom {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 154, 118, 0.1);
            text-align: center;
            color: #8a7aa0;
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: #c084fc;
            margin: 0 8px;
        }
        .footer-bottom .friend-links {
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
        }
        .footer-bottom .friend-links a {
            color: #b8a0d0;
        }
        .footer-bottom .friend-links a:hover {
            color: #ff9a76;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .section-title { font-size: 1.7rem; }
            nav .container { flex-direction: column; align-items: stretch; }
            .nav-links { justify-content: center; }
            .story-content { flex-direction: column; }
        }