* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0f0b1a;
            color: #e2dff5;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #d946ef;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #f5b3ff;
            text-shadow: 0 0 10px #d946ef;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: rgba(26, 10, 46, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.3);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(217, 70, 239, 0.1);
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .logo {
            font-weight: 800;
            font-size: 1.6rem;
            background: linear-gradient(135deg, #d946ef, #a21caf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-links a:hover {
            border-bottom-color: #d946ef;
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            background: linear-gradient(135deg, #f0abfc, #d946ef, #a21caf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 50px 0 20px;
            line-height: 1.3;
            text-shadow: 0 0 40px rgba(217, 70, 239, 0.3);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #e9d5ff, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        /* 卡片通用 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 30px 0;
        }
        .card {
            background: rgba(26, 10, 46, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 24px;
            padding: 28px 22px;
            backdrop-filter: blur(6px);
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.05);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 35px rgba(217, 70, 239, 0.25), inset 0 0 20px rgba(217, 70, 239, 0.05);
            transform: translateY(-4px);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #f5d0fe;
        }
        .card p {
            color: #c4b5e3;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            margin-top: 16px;
            padding: 10px 28px;
            border-radius: 40px;
            background: linear-gradient(135deg, #d946ef, #a21caf);
            color: #fff;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(217, 70, 239, 0.5);
        }
        /* 新闻 & FAQ */
        .news-item, .faq-item {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.15);
            border-radius: 20px;
            padding: 22px 26px;
            margin-bottom: 22px;
            transition: 0.3s;
        }
        .news-item:hover, .faq-item:hover {
            border-color: #d946ef;
            box-shadow: 0 0 25px rgba(217, 70, 239, 0.1);
        }
        .news-date {
            color: #a78bfa;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
        }
        /* 统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            text-align: center;
        }
        .stat-card {
            background: rgba(217, 70, 239, 0.08);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 20px;
            padding: 30px 10px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            margin-top: 20px;
        }
        .partner-logos img {
            height: 60px;
            width: auto;
            border-radius: 12px;
            filter: brightness(0.8) grayscale(0.3);
            transition: 0.3s;
        }
        .partner-logos img:hover {
            filter: brightness(1) grayscale(0);
            transform: scale(1.05);
        }
        /* 页脚 */
        footer {
            background: rgba(26, 10, 46, 0.95);
            border-top: 1px solid rgba(217, 70, 239, 0.2);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            display: block;
            margin: 6px 0;
            color: #a78bfa;
        }
        .footer-bottom {
            border-top: 1px solid rgba(217, 70, 239, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #7c6ea0;
        }
        .footer-bottom a {
            color: #d946ef;
            margin: 0 10px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            nav .container { flex-direction: column; align-items: stretch; }
            .nav-links { justify-content: center; gap: 16px; }
        }
        .section {
            margin: 60px 0;
            scroll-margin-top: 80px;
        }
        .geo-text {
            font-size: 1.1rem;
            color: #c4b5e3;
            max-width: 900px;
            margin: 0 auto 30px;
            text-align: center;
            line-height: 1.9;
        }
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d946ef, transparent);
            margin: 30px 0;
        }
        .flex-center {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }