* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #2e1065 40%, #4c1d95 70%, #7e22ce 100%);
            color: #f0e6ff;
            min-height: 100vh;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 14px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #d946ef, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .nav-links a {
            color: #e9d5ff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(217, 70, 239, 0.2);
            border-color: #d946ef;
            color: #fff;
            box-shadow: 0 0 16px rgba(217, 70, 239, 0.3);
        }
        /* 卡片 & 区块 */
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(217, 70, 239, 0.1);
        }
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f0e6ff, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #d946ef;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #d946ef, #f472b6);
            margin: 12px auto 0;
            border-radius: 10px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }
        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 20px;
            padding: 28px 20px;
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.1);
        }
        .card:hover {
            transform: translateY(-6px);
            border-color: #d946ef;
            box-shadow: 0 0 40px rgba(217, 70, 239, 0.3), inset 0 0 30px rgba(217, 70, 239, 0.1);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 16px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #f0e6ff;
        }
        .card p {
            color: #cbd5e1;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px 16px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            color: #a78bfa;
            margin-top: 8px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            border-left: 4px solid #d946ef;
            border-radius: 16px;
            padding: 24px 22px;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .faq-item:hover {
            background: rgba(217, 70, 239, 0.08);
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.15);
        }
        .faq-item strong {
            color: #d946ef;
            display: block;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .news-item {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 20px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .news-item .date {
            color: #f472b6;
            font-size: 0.9rem;
            margin-bottom: 6px;
            display: inline-block;
            background: rgba(217, 70, 239, 0.15);
            padding: 2px 12px;
            border-radius: 40px;
        }
        .news-item h3 {
            color: #f0e6ff;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #b0b8d1;
        }
        .btn-ghost {
            display: inline-block;
            padding: 12px 32px;
            border: 1px solid #d946ef;
            border-radius: 40px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            background: transparent;
        }
        .btn-ghost:hover {
            background: #d946ef;
            color: #1a0a2e;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
        }
        .geo-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
            color: #e2d9f0;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .geo-text p {
            margin-bottom: 16px;
        }
        footer {
            background: rgba(12, 2, 26, 0.8);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(217, 70, 239, 0.2);
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 20px;
        }
        footer a {
            color: #a78bfa;
            text-decoration: none;
            transition: 0.3s;
        }
        footer a:hover {
            color: #d946ef;
        }
        footer .copyright {
            text-align: center;
            color: #7a6b9a;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .partner-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 32px;
            padding: 20px 0;
        }
        .partner-links a {
            color: #c4b5fd;
            font-size: 1rem;
        }
        .hero-section {
            padding: 80px 0 60px;
            text-align: center;
        }
        .hero-section p {
            max-width: 720px;
            margin: 0 auto 30px;
            font-size: 1.15rem;
            color: #cbd5e1;
        }
        .hero-img {
            max-width: 100%;
            border-radius: 24px;
            margin: 30px auto 0;
            display: block;
            max-height: 420px;
            object-fit: cover;
            border: 1px solid rgba(217, 70, 239, 0.3);
            box-shadow: 0 0 50px rgba(217, 70, 239, 0.2);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            .nav-inner { flex-direction: column; align-items: center; }
        }