* { 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;
            min-height: 100vh;
            line-height: 1.6;
        }
        a { color: #d946ef; text-decoration: none; transition: 0.3s; }
        a:hover { color: #f472b6; text-shadow: 0 0 8px #d946ef; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        
        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo { font-size: 1.5rem; font-weight: bold; background: linear-gradient(90deg, #d946ef, #f472b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { border-bottom-color: #d946ef; }
        
        /* H1 */
        .hero-section {
            text-align: center;
            padding: 80px 20px 40px;
            background: radial-gradient(ellipse at center, rgba(217,70,239,0.1) 0%, transparent 70%);
        }
        .hero-section h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, #d946ef, #f9a8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.1rem;
            color: #c4b5d4;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 通用卡片 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 40px 0; }
        .card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(217,70,239,0.2);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(8px);
            box-shadow: 0 0 20px rgba(217,70,239,0.08);
            transition: 0.3s;
        }
        .card:hover { border-color: #d946ef; box-shadow: 0 0 30px rgba(217,70,239,0.25); transform: translateY(-4px); }
        .card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #f0e6ff; }
        .card p { color: #b8a6d9; font-size: 0.95rem; }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; border: 1px solid rgba(217,70,239,0.15); }
        
        /* 区块标题 */
        .section-title { 
            text-align: center; 
            font-size: 2rem; 
            margin: 60px 0 30px; 
            background: linear-gradient(90deg, #d946ef, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* 统计区 */
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
        .stat-item { text-align: center; padding: 24px; background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid rgba(217,70,239,0.15); }
        .stat-item .number { font-size: 2.2rem; font-weight: bold; color: #d946ef; }
        
        /* FAQ */
        .faq-item { 
            background: rgba(255,255,255,0.02); 
            border: 1px solid rgba(217,70,239,0.1); 
            border-radius: 12px; 
            padding: 20px 24px; 
            margin-bottom: 16px; 
            cursor: pointer;
            transition: 0.3s;
        }
        .faq-item:hover { border-color: #d946ef; }
        .faq-item h4 { font-size: 1.1rem; margin-bottom: 8px; color: #f0e6ff; }
        .faq-item p { color: #b8a6d9; font-size: 0.95rem; display: none; margin-top: 8px; }
        .faq-item.active p { display: block; }
        
        /* 新闻 */
        .news-item { padding: 20px; border-bottom: 1px solid rgba(217,70,239,0.1); }
        .news-item:last-child { border-bottom: none; }
        .news-item .date { color: #a78bfa; font-size: 0.85rem; margin-bottom: 6px; }
        .news-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
        
        /* 页脚 */
        .footer {
            margin-top: 80px;
            padding: 40px 0;
            border-top: 1px solid rgba(217,70,239,0.15);
            background: rgba(0,0,0,0.2);
        }
        .footer .container { display: flex; flex-direction: column; gap: 16px; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
        .footer-links a { color: #a78bfa; font-size: 0.9rem; }
        .footer .copyright { color: #7a6b8a; font-size: 0.85rem; }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2rem; }
            .nav-links { gap: 16px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }