* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; background: #0c0a0a; color: #f5e8d8; line-height: 1.7; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

        /* 导航 */
        header { background: linear-gradient(135deg, #2c0606 0%, #4a0a0a 100%); border-bottom: 2px solid #b8860b; padding: 16px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(4px); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.6rem; font-weight: 800; background: linear-gradient(to right, #f0c674, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #f0dbb0; text-decoration: none; padding: 6px 14px; border-radius: 30px; font-weight: 500; font-size: 0.95rem; transition: all 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { background: #991b1b; color: #fff; border-color: #d4af37; transform: translateY(-1px); }

        /* 通用 */
        h1, h2, h3 { font-weight: 700; }
        h1 { font-size: 2.6rem; text-align: center; padding: 60px 0 20px; background: linear-gradient(to bottom, #4a0a0a, #0c0a0a); text-shadow: 0 4px 12px rgba(0,0,0,0.6); }
        h1 span { background: linear-gradient(to right, #e6c27a, #f5d742); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        h2 { font-size: 2rem; margin-bottom: 24px; border-left: 6px solid #d4af37; padding-left: 20px; color: #f0dbb0; }
        .section-block { padding: 60px 0; border-bottom: 1px solid #2a1a1a; }

        /* 卡片 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
        .card { background: linear-gradient(145deg, #1e1010, #2c1515); border: 1px solid #b8860b; border-radius: 20px; padding: 28px 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.7); transition: transform 0.3s, box-shadow 0.3s; backdrop-filter: blur(2px); }
        .card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(153,27,27,0.3); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; border: 1px solid #4a2a0a; }
        .card h3 { font-size: 1.3rem; color: #f0dbb0; margin-bottom: 10px; }
        .card p { color: #cbb59a; font-size: 0.95rem; }

        /* 按钮 / CTA */
        .btn { display: inline-block; background: linear-gradient(135deg, #991b1b, #4a0a0a); color: #f5e8d8; padding: 14px 40px; border-radius: 50px; font-weight: 700; text-decoration: none; border: 1px solid #d4af37; transition: 0.3s; font-size: 1.1rem; }
        .btn:hover { background: #b22222; border-color: #f0c674; transform: scale(1.02); }

        /* 新闻 */
        .news-item { background: #1a0d0d; border-radius: 20px; padding: 24px; margin-bottom: 24px; border-left: 5px solid #d4af37; }
        .news-item h3 { color: #f0dbb0; font-size: 1.3rem; }
        .news-item .date { color: #b8860b; font-size: 0.85rem; margin-bottom: 8px; display: block; }
        .news-item p { color: #cbb59a; }

        /* FAQ */
        .faq-item { background: #1e1010; border-radius: 16px; padding: 24px; margin-bottom: 20px; border: 1px solid #4a2a0a; }
        .faq-item h3 { color: #f0dbb0; font-size: 1.2rem; margin-bottom: 12px; }
        .faq-item p { color: #cbb59a; }

        /* 统计数字 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
        .stat-item { background: #1a0d0d; border-radius: 20px; padding: 32px 16px; border: 1px solid #5a2a0a; }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: #d4af37; }
        .stat-label { color: #b8860b; margin-top: 6px; font-size: 1rem; }

        /* 合作伙伴 */
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 20px 0; }
        .partner-logos a { color: #b8860b; text-decoration: none; font-size: 1.2rem; font-weight: 500; transition: 0.3s; border-bottom: 2px solid transparent; }
        .partner-logos a:hover { color: #f0c674; border-bottom-color: #d4af37; }

        /* 页脚 */
        footer { background: #1a0a0a; border-top: 2px solid #4a2a0a; padding: 50px 0 30px; margin-top: 40px; }
        footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
        footer h4 { color: #d4af37; margin-bottom: 12px; font-size: 1.2rem; }
        footer a { color: #cbb59a; text-decoration: none; display: block; margin-bottom: 6px; transition: 0.2s; }
        footer a:hover { color: #f0c674; }
        .footer-bottom { border-top: 1px solid #2a1a1a; margin-top: 30px; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #8a7a6a; }
        .footer-bottom a { display: inline; margin: 0 8px; }
        .friend-links { margin: 16px 0; }
        .friend-links a { display: inline; margin: 0 6px; }

        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; padding: 40px 0 20px; }
            .header-inner { flex-direction: column; }
            .nav-links { justify-content: center; gap: 12px; }
            .nav-links a { font-size: 0.85rem; }
        }