* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #0b0b0e; color: #e0e0e0; font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif; line-height: 1.6; }
        a { color: #facc15; text-decoration: none; transition: 0.2s; }
        a:hover { color: #ffeb7a; text-shadow: 0 0 8px #facc15; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: #121217; border-bottom: 3px solid #facc15; padding: 16px 0; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: 800; color: #facc15; letter-spacing: 2px; text-shadow: 0 0 10px #facc1566; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { padding: 6px 14px; border: 1px solid #333; border-radius: 6px; background: #1b1b22; font-weight: 500; font-size: 0.95rem; color: #ddd; transition: all 0.2s; }
        .nav-links a:hover { background: #facc15; color: #0b0b0e; border-color: #facc15; }
        /* 像素卡片风格 */
        .pixel-card { background: #18181f; border: 2px solid #facc15; border-radius: 0; padding: 28px 24px; margin-bottom: 32px; box-shadow: 6px 6px 0 #0b0b0e, 6px 6px 0 2px #facc15; transition: transform 0.1s, box-shadow 0.1s; }
        .pixel-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #0b0b0e, 8px 8px 0 2px #facc15; }
        .pixel-card h2, .pixel-card h3 { color: #facc15; margin-bottom: 16px; }
        .pixel-card p, .pixel-card li { color: #cacaca; }
        /* 按钮 */
        .btn-cyber { display: inline-block; background: #facc15; color: #0b0b0e; font-weight: 700; padding: 10px 28px; border: 2px solid #facc15; text-transform: uppercase; letter-spacing: 1px; transition: 0.2s; }
        .btn-cyber:hover { background: transparent; color: #facc15; }
        /* 图片 */
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 20px 0; }
        .img-grid img { width: 100%; height: auto; border: 2px solid #facc15; filter: drop-shadow(4px 4px 0 #000); background: #1f1f28; }
        /* 新闻卡片 */
        .news-item { border-bottom: 1px dashed #333; padding: 20px 0; }
        .news-item:last-child { border-bottom: none; }
        .news-date { color: #facc15; font-size: 0.8rem; display: block; margin-bottom: 6px; }
        .news-item h3 { margin-bottom: 8px; }
        .news-item p { font-size: 0.95rem; }
        /* FAQ */
        .faq-item { margin-bottom: 24px; border-left: 4px solid #facc15; padding-left: 20px; }
        .faq-item h3 { font-size: 1.1rem; }
        /* 页脚 */
        .footer { background: #0f0f14; border-top: 3px solid #facc15; padding: 36px 0 20px; margin-top: 40px; }
        .footer a { color: #bbb; }
        .footer a:hover { color: #facc15; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 16px 0; }
        .footer-info { text-align: center; font-size: 0.85rem; color: #888; line-height: 2; }
        /* hero */
        #hero { background: linear-gradient(135deg, #0b0b0e 0%, #1c1c26 100%); padding: 60px 0 40px; }
        #hero .container { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }
        .hero-text { flex: 1; min-width: 280px; }
        .hero-text h1 { font-size: 2.5rem; line-height: 1.2; }
        .hero-text p { font-size: 1.1rem; margin: 20px 0; }
        .hero-media { flex: 1; min-width: 280px; }
        /* 统计部分 */
        #stats .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 20px; text-align: center; }
        #stats .stat-item { background: #16161e; padding: 20px; border: 1px solid #facc1566; }
        #stats .stat-num { font-size: 2.2rem; font-weight: 800; color: #facc15; }
        /* 优势 / 服务等 */
        .grid-2col, .grid-3col { display: grid; gap: 24px; }
        .grid-2col { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
        .grid-3col { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
        .brand-icon { font-size: 2rem; margin-bottom: 10px; }
        /* 合作伙伴 */
        .partner-logos { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; padding: 10px 0; }
        .partner-logos span { background: #1e1e28; border: 1px solid #facc15; padding: 10px 18px; font-weight: 600; }
        h2 { font-size: 1.8rem; margin-bottom: 24px; border-bottom: 2px solid #facc15; display: inline-block; padding-bottom: 4px; }
        @media (max-width: 768px) {
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; }
            .hero-text h1 { font-size: 1.8rem; }
        }