* { 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%, #4a1a6f 100%); color: #f0e6ff; min-height: 100vh; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(26,10,46,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(74,26,111,0.3); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }
        .nav-links { display: flex; gap: 32px; }
        .nav-links a { color: #d4b8ff; text-decoration: none; font-weight: 500; font-size: 16px; transition: 0.3s; letter-spacing: 0.5px; }
        .nav-links a:hover { color: #b388ff; text-shadow: 0 0 12px rgba(179,136,255,0.5); }
        .nav-brand { font-size: 22px; font-weight: 700; background: linear-gradient(135deg, #b388ff, #e0b0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* 毛玻璃卡片 */
        .glass-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 32px; margin-bottom: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s; }
        .glass-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(74,26,111,0.4); }
        /* H1 */
        h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; background: linear-gradient(135deg, #e0b0ff, #b388ff, #7c4dff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
        h2 { font-size: 32px; font-weight: 700; margin-bottom: 24px; color: #d4b8ff; border-left: 4px solid #b388ff; padding-left: 16px; }
        /* 图片 */
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 24px 0; }
        .img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(179,136,255,0.2); transition: 0.4s; }
        .img-grid img:hover { transform: scale(1.02); filter: brightness(1.1); }
        /* 新闻卡片 */
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
        .news-item { background: rgba(255,255,255,0.05); border-radius: 20px; padding: 24px; border: 1px solid rgba(179,136,255,0.15); transition: 0.3s; }
        .news-item:hover { background: rgba(179,136,255,0.08); border-color: #b388ff; }
        .news-date { color: #b388ff; font-size: 14px; margin-bottom: 8px; }
        .news-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: #e0b0ff; }
        .news-summary { color: #b0a0c0; font-size: 15px; }
        /* FAQ */
        .faq-item { margin-bottom: 20px; padding: 20px; background: rgba(255,255,255,0.04); border-radius: 16px; border: 1px solid rgba(179,136,255,0.08); }
        .faq-q { font-weight: 600; color: #e0b0ff; font-size: 18px; margin-bottom: 8px; }
        .faq-a { color: #c0b0d0; font-size: 15px; }
        /* 统计卡片 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
        .stat-item { text-align: center; padding: 24px; background: rgba(255,255,255,0.04); border-radius: 20px; }
        .stat-number { font-size: 40px; font-weight: 800; color: #b388ff; }
        .stat-label { color: #a090b0; font-size: 16px; margin-top: 8px; }
        /* 按钮 */
        .btn-primary { display: inline-block; background: linear-gradient(135deg, #7c4dff, #b388ff); color: #fff; padding: 14px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 18px; transition: 0.3s; border: none; cursor: pointer; }
        .btn-primary:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(124,77,255,0.4); }
        /* 页脚 */
        footer { background: rgba(10,4,20,0.8); backdrop-filter: blur(12px); border-top: 1px solid rgba(74,26,111,0.3); padding: 40px 0; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 24px; }
        .footer-col h4 { color: #d4b8ff; margin-bottom: 16px; font-size: 18px; }
        .footer-col a { color: #a090b0; text-decoration: none; display: block; margin-bottom: 8px; font-size: 14px; }
        .footer-col a:hover { color: #b388ff; }
        .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); color: #807090; font-size: 14px; }
        .footer-bottom a { color: #b388ff; text-decoration: none; }
        .footer-bottom a:hover { text-decoration: underline; }
        .friend-links { margin: 16px 0; }
        .friend-links a { color: #b388ff; }
        /* GEO 区域 */
        .geo-text { font-size: 16px; color: #c0b0d0; max-width: 900px; margin: 0 auto 20px; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 32px; }
            .nav-links { gap: 16px; flex-wrap: wrap; }
            .nav-links a { font-size: 14px; }
            .glass-card { padding: 20px; }
        }
        /* 光泽效果 */
        .shimmer { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent); background-size: 200% 100%; animation: shimmer 3s infinite; }
        @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
        .hero-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
        .hero-sub { font-size: 20px; color: #d4b8ff; margin-bottom: 32px; }
        .trust-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(179,136,255,0.12); padding: 8px 20px; border-radius: 50px; font-size: 14px; color: #b388ff; }