* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: linear-gradient(135deg, #0b1120 0%, #1a1a2e 100%); color: #e2e8f0; min-height: 100vh; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(11, 17, 32, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(251, 191, 36, 0.15); position: sticky; top: 0; z-index: 100; padding: 14px 0; }
        nav .container { display: flex; align-items: center; justify-content: space-between; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.3px; transition: all 0.3s; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #fbbf24; transition: width 0.3s; }
        .nav-links a:hover { color: #fbbf24; }
        .nav-links a:hover::after { width: 100%; }
        .logo-text { font-size: 1.5rem; font-weight: 700; color: #fbbf24; letter-spacing: 1px; background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* H1 */
        h1 { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; text-align: center; padding-top: 40px; letter-spacing: 1px; }
        /* 通用卡片 */
        .card { background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(251, 191, 36, 0.08); border-radius: 24px; padding: 32px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(251, 191, 36, 0.25); }
        .section-title { font-size: 2rem; font-weight: 700; color: #fbbf24; margin-bottom: 28px; position: relative; display: inline-block; }
        .section-title::after { content: ''; display: block; width: 60%; height: 3px; background: #fbbf24; margin-top: 8px; border-radius: 2px; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        img { max-width: 100%; border-radius: 16px; display: block; margin: 20px 0; object-fit: cover; }
        /* Geo */
        #geo-intro { background: rgba(251, 191, 36, 0.04); border-left: 4px solid #fbbf24; padding: 32px 28px; border-radius: 12px; margin: 36px 0; font-size: 1.05rem; line-height: 1.9; }
        /* 按钮 */
        .btn { display: inline-block; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #0b1120; font-weight: 600; padding: 12px 32px; border-radius: 40px; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3); }
        /* 新闻 */
        .news-item { background: rgba(255,255,255,0.02); padding: 24px; border-radius: 18px; border: 1px solid rgba(251,191,36,0.06); transition: all 0.3s; }
        .news-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(251,191,36,0.2); }
        .news-date { color: #fbbf24; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
        .news-item h3 { font-size: 1.2rem; color: #f1f5f9; margin-bottom: 8px; }
        .news-item p { color: #94a3b8; font-size: 0.95rem; }
        /* FAQ */
        .faq-item { background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(251,191,36,0.08); padding: 20px 0; }
        .faq-item:last-child { border-bottom: none; }
        .faq-q { font-weight: 600; color: #fbbf24; font-size: 1.1rem; margin-bottom: 8px; }
        .faq-a { color: #94a3b8; padding-left: 8px; }
        /* 页脚 */
        footer { background: rgba(11, 17, 32, 0.9); backdrop-filter: blur(12px); border-top: 1px solid rgba(251, 191, 36, 0.1); padding: 48px 0 28px; margin-top: 60px; }
        footer .container { display: flex; flex-direction: column; gap: 20px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: center; }
        .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
        .footer-links a:hover { color: #fbbf24; }
        .footer-info { text-align: center; color: #64748b; font-size: 0.85rem; line-height: 1.8; }
        .footer-info span { display: inline-block; margin: 0 6px; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 16px; }
            .nav-links a { font-size: 0.85rem; }
            .card { padding: 20px; }
        }
        /* 毛玻璃装饰 */
        .glass { background: rgba(255,255,255,0.02); backdrop-filter: blur(6px); border: 1px solid rgba(251,191,36,0.06); }
        .highlight { color: #fbbf24; }
        .mt-4 { margin-top: 24px; }
        .mb-4 { margin-bottom: 24px; }
        .text-center { text-align: center; }