* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%); color: #f5f0ff; line-height: 1.7; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        .navbar { background: rgba(26, 10, 46, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #d9b3ff, #b57cff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #d9c5f0; text-decoration: none; font-size: 1rem; font-weight: 500; transition: all 0.2s; border-bottom: 2px solid transparent; padding-bottom: 4px; }
        .nav-links a:hover { color: #f0e6ff; border-bottom-color: #b57cff; }
        /* 通用卡片毛玻璃 */
        .glass-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 32px; margin: 32px 0; transition: transform 0.2s; }
        .glass-card:hover { transform: translateY(-2px); }
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 24px; background: linear-gradient(135deg, #f0e6ff, #d9b3ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        img { max-width: 100%; height: auto; border-radius: 16px; display: block; margin: 16px 0; }
        .btn { display: inline-block; padding: 12px 32px; background: linear-gradient(135deg, #7b2dbf, #9f5adf); border: none; border-radius: 40px; color: #fff; font-weight: 600; text-decoration: none; transition: all 0.3s; cursor: pointer; }
        .btn:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(123,45,191,0.4); }
        /* 新闻 */
        .news-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
        .news-item:last-child { border-bottom: none; }
        .news-date { color: #b79ddb; font-size: 0.9rem; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: #f0e6ff; }
        .news-summary { color: #c7b3e3; line-height: 1.7; }
        /* FAQ */
        .faq-item { margin-bottom: 20px; }
        .faq-q { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: #e6d4ff; }
        .faq-a { color: #c7b3e3; padding-left: 8px; border-left: 3px solid #7b2dbf; padding-left: 16px; }
        /* 页脚 */
        .footer { background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); padding: 40px 0; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer a { color: #b79ddb; text-decoration: none; margin: 0 6px; }
        .footer a:hover { color: #f0e6ff; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 16px 0; }
        .footer-info { text-align: center; color: #9a82b8; font-size: 0.9rem; line-height: 2; }
        /* 响应式 */
        @media (max-width: 768px) {
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .nav-links { gap: 16px; margin-top: 10px; }
            .navbar .container { flex-direction: column; align-items: flex-start; }
        }
        /* 光泽效果 */
        .shimmer { position: relative; overflow: hidden; }
        .shimmer::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03) 0%, transparent 70%); pointer-events: none; }
        .hero { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 0; }
        .hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.3; margin-bottom: 20px; background: linear-gradient(135deg, #fff, #d9b3ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 1.2rem; max-width: 720px; margin: 0 auto 28px; color: #d9c5f0; }
        .geo-text { font-size: 1rem; color: #d9c5f0; max-width: 900px; margin: 0 auto 24px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; }
        .stat-item { text-align: center; padding: 20px; background: rgba(255,255,255,0.04); border-radius: 20px; }
        .stat-number { font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, #d9b3ff, #9f5adf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #b79ddb; margin-top: 6px; }