* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.7; min-height: 100vh; }
        a { color: #f0c040; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #ffd966; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        /* 导航 */
        nav { background: #111; border-bottom: 1px solid #2a2a2a; padding: 12px 0; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .nav-links a { font-size: 15px; font-weight: 500; letter-spacing: 1px; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { border-bottom-color: #f0c040; }
        /* 通用卡片 */
        .section-card { background: #1c1c1c; border-radius: 12px; padding: 40px; margin: 40px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.6); }
        .section-title { font-size: 28px; font-weight: 600; margin-bottom: 28px; color: #fff; border-left: 4px solid #f0c040; padding-left: 16px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .text-gold { color: #f0c040; }
        /* 图片 */
        img { max-width: 100%; border-radius: 10px; display: block; }
        .img-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 20px 0; }
        .img-row img { width: 220px; height: 140px; object-fit: cover; }
        /* 新闻 */
        .news-item { background: #222; padding: 20px; border-radius: 10px; margin-bottom: 20px; }
        .news-item h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
        .news-date { color: #888; font-size: 14px; margin-bottom: 6px; }
        .news-summary { color: #ccc; }
        /* FAQ */
        .faq-item { border-bottom: 1px solid #2a2a2a; padding: 18px 0; }
        .faq-question { font-weight: 600; color: #fff; font-size: 18px; margin-bottom: 10px; cursor: default; }
        .faq-answer { color: #bbb; }
        /* 页脚 */
        footer { background: #0d0d0d; border-top: 1px solid #2a2a2a; padding: 40px 0 20px; text-align: center; color: #888; font-size: 14px; }
        footer a { margin: 0 8px; }
        .footer-links { margin: 20px 0; }
        .footer-links a { display: inline-block; margin: 4px 10px; }
        /* 响应式 */
        @media (max-width: 768px) {
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .section-card { padding: 24px; }
            .nav-links { gap: 14px; }
            .img-row img { width: 100%; height: auto; }
        }
        /* hero 简洁 */
        .hero { text-align: center; padding: 60px 0 30px; }
        .hero h1 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 2px; }
        .hero p { font-size: 18px; color: #bbb; max-width: 800px; margin: 0 auto 20px; }
        .hero img { max-width: 100%; height: auto; margin-top: 20px; border-radius: 14px; }
        .cta-button { display: inline-block; background: #f0c040; color: #0a0a0a; padding: 14px 40px; border-radius: 40px; font-weight: 700; font-size: 18px; margin-top: 20px; transition: background 0.2s; }
        .cta-button:hover { background: #ffd966; color: #000; }
        .highlight-card { background: #1e1e1e; border-radius: 12px; padding: 30px; text-align: center; }
        .stat-number { font-size: 48px; font-weight: 700; color: #f0c040; }
        .stat-label { color: #aaa; margin-top: 6px; }
        .partner-logos { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; align-items: center; }
        .partner-logos img { width: 120px; height: 70px; object-fit: contain; filter: brightness(0.8); }
        .testimonial { background: #222; border-radius: 10px; padding: 24px; font-style: italic; color: #ccc; }
        .testimonial-author { margin-top: 12px; font-style: normal; color: #f0c040; font-weight: 500; }