* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
        body { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); color: #f5f0ff; min-height: 100vh; }
        a { color: #ff7e5f; text-decoration: none; transition: 0.3s; }
        a:hover { color: #feb47b; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(15, 12, 41, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,126,95,0.2); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        nav .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #ff7e5f, #feb47b, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .nav-links { display: flex; gap: 32px; flex-wrap: wrap; }
        .nav-links a { font-size: 1rem; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { border-bottom-color: #ff7e5f; }
        /* 通用区块 */
        section { padding: 72px 0; }
        h1 { font-size: 3.2rem; font-weight: 800; background: linear-gradient(135deg, #ff7e5f, #feb47b, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; margin-bottom: 32px; line-height: 1.2; }
        h2 { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 48px; background: linear-gradient(135deg, #ff7e5f, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .card { background: linear-gradient(145deg, rgba(255,126,95,0.12), rgba(168,85,247,0.08)); border-radius: 28px; padding: 32px; backdrop-filter: blur(4px); border: 1px solid rgba(255,126,95,0.15); transition: 0.3s; }
        .card:hover { border-color: rgba(255,126,95,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,126,95,0.12); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
        img { width: 100%; border-radius: 20px; display: block; object-fit: cover; height: auto; aspect-ratio: 16/9; }
        .badge { display: inline-block; background: linear-gradient(135deg, #ff7e5f, #a855f7); padding: 6px 18px; border-radius: 40px; font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
        .text-glow { text-shadow: 0 0 20px rgba(255,126,95,0.3); }
        /* 数据统计 */
        .stats-box { text-align: center; padding: 32px 16px; }
        .stats-box .number { font-size: 3.2rem; font-weight: 800; background: linear-gradient(135deg, #ff7e5f, #feb47b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* 新闻 */
        .news-item { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,126,95,0.1); }
        .news-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
        .news-date { color: #feb47b; font-size: 0.85rem; margin-bottom: 8px; display: inline-block; }
        .news-item p { color: #d4d0f0; line-height: 1.7; }
        .news-item:last-child { border-bottom: none; }
        /* FAQ */
        .faq-item { margin-bottom: 24px; background: rgba(255,126,95,0.06); border-radius: 20px; padding: 24px; border-left: 4px solid #ff7e5f; }
        .faq-item h4 { font-size: 1.2rem; margin-bottom: 12px; color: #feb47b; }
        .faq-item p { color: #d4d0f0; line-height: 1.7; }
        /* 页脚 */
        footer { background: rgba(15,12,41,0.9); border-top: 1px solid rgba(255,126,95,0.15); padding: 48px 0 28px; margin-top: 40px; }
        footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px; margin-bottom: 24px; }
        footer .footer-links a { color: #c4b5fd; }
        footer .footer-links a:hover { color: #ff7e5f; }
        footer .footer-bottom { text-align: center; color: #8b7d9e; font-size: 0.9rem; border-top: 1px solid rgba(255,126,95,0.08); padding-top: 24px; }
        footer .copyright { margin-top: 12px; font-size: 0.85rem; }
        .friend-links { margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
        .friend-links a { color: #a78bfa; }
        .friend-links a:hover { color: #feb47b; }
        /* 响应式 */
        @media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 2.4rem; } nav .container { flex-direction: column; gap: 12px; } .nav-links { gap: 16px; justify-content: center; } }
        /* 按钮 */
        .btn-cta { display: inline-block; background: linear-gradient(135deg, #ff7e5f, #a855f7); padding: 14px 40px; border-radius: 60px; font-weight: 700; color: white; font-size: 1.1rem; transition: 0.3s; border: none; cursor: pointer; }
        .btn-cta:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(255,126,95,0.35); }
        .center-text { text-align: center; }
        .mt-32 { margin-top: 32px; }
        .geo-text { max-width: 900px; margin: 0 auto 48px; text-align: center; font-size: 1.05rem; line-height: 1.8; color: #d4d0f0; }
        .hero-img { max-width: 800px; margin: 32px auto; }