* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0b0a1a; color: #f5f0ff; line-height: 1.6; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: linear-gradient(135deg, #1a0533 0%, #2d0a4a 100%); padding: 16px 0; border-bottom: 1px solid rgba(255, 100, 50, 0.15); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #ff6a3d, #ff3cac); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
        .nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
        .nav-links a { color: #e0d0ff; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 6px 12px; border-radius: 40px; transition: all 0.2s; background: rgba(255,255,255,0.04); }
        .nav-links a:hover { background: linear-gradient(135deg, #ff6a3d, #ff3cac); color: #fff; transform: translateY(-1px); }
        /* H1 */
        .hero-title { text-align: center; padding: 60px 0 20px; }
        .hero-title h1 { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, #ff8c5a, #ff5f9e, #b366ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
        .hero-title p { color: #c8b8e8; font-size: 1.1rem; max-width: 800px; margin: 0 auto; }
        /* 通用区块 */
        .section { padding: 50px 0; }
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 30px; text-align: center; background: linear-gradient(135deg, #ff7e4a, #ff4d94); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        .card { background: linear-gradient(145deg, rgba(40, 15, 70, 0.7), rgba(80, 30, 60, 0.5)); border-radius: 24px; padding: 24px; border: 1px solid rgba(255, 120, 80, 0.15); backdrop-filter: blur(6px); transition: all 0.3s; }
        .card:hover { transform: translateY(-4px); border-color: rgba(255, 120, 80, 0.35); box-shadow: 0 12px 40px rgba(255, 60, 100, 0.12); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 14px; background: #1f0d33; }
        .card h3 { font-size: 1.3rem; margin-bottom: 8px; }
        .card p { color: #d0c0ee; font-size: 0.95rem; }
        .badge { display: inline-block; background: linear-gradient(135deg, #ff6a3d, #ff3cac); padding: 2px 14px; border-radius: 40px; font-size: 0.75rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
        .btn-cta { display: inline-block; background: linear-gradient(135deg, #ff6a3d, #ff3cac); padding: 12px 32px; border-radius: 60px; color: #fff; font-weight: 700; text-decoration: none; transition: all 0.25s; }
        .btn-cta:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(255, 60, 100, 0.3); }
        .geo-text { color: #c8b8e8; font-size: 1rem; max-width: 1000px; margin: 0 auto; text-align: center; }
        .stats-number { font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg, #ff8c5a, #ff5f9e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* 新闻卡片特殊 */
        .news-card .date-tag { color: #ff9f7a; font-size: 0.8rem; margin-bottom: 4px; display: block; }
        /* FAQ */
        .faq-item { background: rgba(30, 10, 55, 0.5); border-radius: 20px; padding: 20px 24px; margin-bottom: 16px; border-left: 4px solid #ff5f9e; }
        .faq-item h4 { font-size: 1.15rem; margin-bottom: 8px; color: #ffb08a; }
        .faq-item p { color: #c8b8e8; }
        /* 页脚 */
        .footer { background: #0d0520; padding: 40px 0 20px; margin-top: 60px; border-top: 1px solid rgba(255, 100, 50, 0.1); }
        .footer a { color: #b8a0e0; text-decoration: none; margin: 0 6px; }
        .footer a:hover { color: #ff7e4a; }
        .footer-links { text-align: center; margin-bottom: 16px; }
        .footer-info { text-align: center; color: #8870b0; font-size: 0.85rem; line-height: 1.8; }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.5rem; }
            .navbar .container { flex-direction: column; align-items: center; }
            .nav-links { justify-content: center; }
        }