* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
            color: #f0e6ff;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航栏 */
        nav {
            background: rgba(26, 10, 46, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.3);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d946ef;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(217, 70, 239, 0.15);
            border-color: #d946ef;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0e6ff, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 40px 0 20px;
            text-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
        }
        /* 通用标题 */
        h2 {
            font-size: 2rem;
            color: #d946ef;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #d946ef, #a855f7);
            margin: 10px auto 0;
            border-radius: 2px;
        }
        /* 卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .card {
            background: rgba(26, 10, 46, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.3);
            border-radius: 16px;
            padding: 25px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.2);
            transform: translateY(-5px);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .card h3 {
            color: #d946ef;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .card p {
            color: #cbd5e1;
            font-size: 0.95rem;
        }
        /* CTA按钮 */
        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
        }
        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(217, 70, 239, 0.6);
        }
        /* FAQ */
        .faq-item {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: #d946ef;
        }
        .faq-item h3 {
            color: #d946ef;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #cbd5e1;
        }
        /* 新闻 */
        .news-item {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .news-item .date {
            color: #a855f7;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .news-item h3 {
            color: #f0e6ff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .news-item p {
            color: #cbd5e1;
        }
        /* 页脚 */
        footer {
            background: rgba(26, 10, 46, 0.95);
            border-top: 1px solid rgba(217, 70, 239, 0.2);
            padding: 40px 0 20px;
            margin-top: 60px;
            text-align: center;
        }
        footer .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
        }
        footer .footer-links a {
            color: #d946ef;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        footer .footer-links a:hover {
            color: #f0e6ff;
        }
        footer p {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        /* GEO区域 */
        .geo-text {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 40px;
            color: #cbd5e1;
            font-size: 1.05rem;
        }
        /* 统计数字 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: rgba(217, 70, 239, 0.08);
            border-radius: 16px;
            padding: 30px 20px;
            border: 1px solid rgba(217, 70, 239, 0.15);
        }
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-item .label {
            color: #94a3b8;
            margin-top: 8px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 15px; }
            .nav-links a { font-size: 14px; padding: 6px 15px; }
        }