* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #0a0a0e; color: #f0e6ff; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: linear-gradient(135deg, #1c0a2e, #2d1040); padding: 18px 0; border-bottom: 1px solid rgba(255, 107, 53, 0.2); 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: 15px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 12px; }
        .nav-links a { color: #ffd9b3; text-decoration: none; font-weight: 500; padding: 8px 18px; border-radius: 30px; background: rgba(255, 107, 53, 0.12); transition: all 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { background: linear-gradient(135deg, #ff6b35, #d946ef); color: #fff; transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
        /* H1 */
        .hero { padding: 60px 0 40px; text-align: center; background: radial-gradient(circle at 20% 30%, #2d1040 0%, #0a0a0e 70%); }
        .hero h1 { font-size: 2.8rem; background: linear-gradient(135deg, #ff6b35, #d946ef, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 18px; letter-spacing: 1px; font-weight: 800; }
        .hero p { max-width: 850px; margin: 0 auto; color: #c4b5d0; font-size: 1.1rem; line-height: 1.8; }
        /* 通用标题 */
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 30px; background: linear-gradient(135deg, #ff6b35, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
        .section-sub { color: #b8a9c9; margin-bottom: 40px; }
        /* 卡片 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 30px 0; }
        .card { background: linear-gradient(145deg, #1f1135, #2d1a4a); border-radius: 20px; padding: 28px; border: 1px solid rgba(255, 107, 53, 0.15); transition: all 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15); border-color: #ff6b35; }
        .card h3 { color: #ffb88c; margin-bottom: 12px; font-size: 1.3rem; }
        .card p { color: #cdc0dc; font-size: 0.95rem; }
        /* 新闻 */
        .news-list { display: flex; flex-direction: column; gap: 28px; }
        .news-item { background: linear-gradient(145deg, #1f1135, #2d1a4a); border-radius: 16px; padding: 24px; border-left: 4px solid #ff6b35; transition: 0.3s; }
        .news-item:hover { background: #2a1a40; }
        .news-item .date { color: #ff6b35; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
        .news-item h4 { color: #ffd9b3; font-size: 1.2rem; margin-bottom: 8px; }
        .news-item p { color: #b8a9c9; font-size: 0.95rem; }
        /* FAQ */
        .faq-item { background: #1a0f2a; border-radius: 16px; padding: 22px 26px; margin-bottom: 16px; border: 1px solid #2d1a4a; transition: 0.3s; }
        .faq-item:hover { border-color: #ff6b35; }
        .faq-item h4 { color: #ffb88c; font-size: 1.1rem; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { color: #b8a9c9; }
        /* 图片 */
        .img-fit { width: 100%; height: auto; border-radius: 14px; object-fit: cover; max-height: 200px; margin-bottom: 12px; border: 1px solid #2d1a4a; }
        /* 页脚 */
        .footer { background: #0d0618; border-top: 1px solid #2d1a4a; padding: 40px 0 20px; margin-top: 60px; color: #8a7a9e; }
        .footer a { color: #ffb88c; text-decoration: none; margin: 0 6px; }
        .footer a:hover { color: #ff6b35; }
        .footer .links { margin: 12px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
        .footer .copy { text-align: center; font-size: 0.85rem; }
        /* CTA */
        .cta-section { background: linear-gradient(135deg, #2d1040, #1c0a2e); border-radius: 30px; padding: 50px 30px; text-align: center; margin: 40px 0; border: 1px solid rgba(255, 107, 53, 0.2); }
        .cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
        .cta-section p { max-width: 700px; margin: 0 auto 24px; color: #c4b5d0; }
        .btn { display: inline-block; background: linear-gradient(135deg, #ff6b35, #d946ef); color: #fff; padding: 14px 38px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.3s; }
        .btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 107, 53, 0.4); }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .nav-links a { font-size: 0.85rem; padding: 6px 14px; }
            .container { padding: 0 14px; }
        }