* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%); color: #f0f0f0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.7; min-height: 100vh; }
        a { color: #e0c080; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ffd700; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid #2a2a2a; position: sticky; top: 0; z-index: 100; padding: 14px 0; }
        nav .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-weight: 600; font-size: 1.3rem; letter-spacing: 1px; color: #ffd700; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 20px; }
        .nav-links a { font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color 0.3s; }
        .nav-links a:hover { border-bottom-color: #ffd700; }
        /* 通用区块 */
        section { padding: 60px 0; }
        h1 { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 20px; background: linear-gradient(to right, #fff, #e0c080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        h2 { font-size: 2rem; font-weight: 600; margin-bottom: 24px; color: #ffd700; letter-spacing: 0.5px; }
        h3 { font-size: 1.3rem; margin-bottom: 12px; color: #f5f0e0; }
        p { margin-bottom: 16px; color: #ccc; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
        .card { background: rgba(255,255,255,0.03); border-radius: 16px; padding: 28px 24px; transition: transform 0.25s, background 0.3s; border: 1px solid rgba(255,255,255,0.06); }
        .card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
        .card img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 16px; display: block; }
        img { max-width: 100%; height: auto; border-radius: 10px; }
        .hero { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding: 40px 0; }
        .hero-text { flex: 1 1 400px; }
        .hero-img { flex: 1 1 300px; }
        .btn { display: inline-block; background: #ffd700; color: #0a0a0a; padding: 14px 36px; border-radius: 40px; font-weight: 600; font-size: 1rem; transition: transform 0.2s, box-shadow 0.3s; }
        .btn:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(255,215,0,0.2); color: #0a0a0a; }
        .stat-number { font-size: 2.6rem; font-weight: 700; color: #ffd700; line-height: 1.2; }
        .stat-label { font-size: 0.9rem; color: #aaa; }
        .faq-item { border-bottom: 1px solid #2a2a2a; padding: 20px 0; }
        .faq-question { font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #f0e8d0; }
        .faq-answer { margin-top: 12px; color: #bbb; padding-left: 8px; border-left: 2px solid #ffd700; }
        .news-card { background: rgba(255,255,255,0.02); border-radius: 14px; padding: 20px; border: 1px solid #2a2a2a; }
        .news-card .date { font-size: 0.85rem; color: #888; margin-bottom: 8px; }
        .news-card h4 { color: #f0e8d0; margin-bottom: 8px; }
        .news-card p { font-size: 0.95rem; }
        footer { background: #0d0d0d; border-top: 1px solid #222; padding: 40px 0; margin-top: 40px; }
        footer .footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin-bottom: 20px; font-size: 0.9rem; }
        footer .footer-info { text-align: center; color: #777; font-size: 0.85rem; line-height: 1.8; }
        .testimonial-text { font-style: italic; color: #ccc; }
        .testimonial-author { color: #e0c080; margin-top: 12px; font-weight: 500; }
        .partner-logo { display: inline-block; padding: 10px 20px; border: 1px solid #333; border-radius: 30px; margin: 6px; color: #aaa; font-size: 0.9rem; }
        .cta-section { text-align: center; background: rgba(255,215,0,0.04); border-radius: 40px; padding: 50px 30px; }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .hero { flex-direction: column; }
            nav .container { flex-direction: column; align-items: flex-start; }
            .nav-links { gap: 12px; }
        }