* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #0d0d0d;
            color: #e0e0e0;
            font-family: 'Courier New', Courier, monospace;
            line-height: 1.7;
            letter-spacing: 0.5px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 像素风卡片 */
        .pixel-card {
            border: 3px solid #facc15;
            background: #1a1a1a;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 5px 5px 0 #facc15;
            image-rendering: pixelated;
        }
        .pixel-card h2, .pixel-card h3 {
            color: #facc15;
            text-transform: uppercase;
            border-bottom: 2px dashed #facc15;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .pixel-card img {
            width: 100%;
            max-width: 300px;
            margin: 15px auto;
            display: block;
            border: 2px solid #facc15;
            image-rendering: pixelated;
        }
        /* 导航 */
        .nav-bar {
            background: #111;
            border-bottom: 3px solid #facc15;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .nav-links a {
            color: #facc15;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 5px 12px;
            border: 2px solid transparent;
            transition: all 0.2s;
        }
        .nav-links a:hover {
            border-color: #facc15;
            background: #222;
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            color: #facc15;
            text-shadow: 3px 3px 0 #000;
            padding: 40px 0 20px;
            word-break: break-word;
        }
        .h1-sub {
            text-align: center;
            color: #aaa;
            font-size: 1rem;
            margin-bottom: 30px;
        }
        /* 区块 */
        section {
            padding: 40px 0;
        }
        h2 {
            color: #facc15;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        /* 新闻卡片 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        .news-item {
            border: 2px solid #facc15;
            background: #151515;
            padding: 18px;
            transition: 0.2s;
        }
        .news-item:hover {
            background: #1f1f1f;
            box-shadow: 0 0 15px #facc1533;
        }
        .news-date {
            color: #facc15;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 5px;
        }
        .news-item h3 {
            color: #fff;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #bbb;
            font-size: 0.95rem;
        }
        .news-item a {
            color: #facc15;
            text-decoration: underline;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #333;
            padding: 18px 0;
        }
        .faq-item:last-child {
            border: none;
        }
        .faq-question {
            color: #facc15;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: default;
        }
        .faq-answer {
            color: #ccc;
            margin-top: 10px;
        }
        /* 页脚 */
        .footer {
            background: #0a0a0a;
            border-top: 3px solid #facc15;
            padding: 35px 0;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }
        .footer a {
            color: #facc15;
            margin: 0 8px;
            text-decoration: underline;
        }
        .footer .links {
            margin-bottom: 15px;
        }
        .footer .icp {
            margin-top: 10px;
        }
        /* 图片自适应 */
        img {
            max-width: 100%;
            height: auto;
        }
        .flex-img-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .flex-img-row img {
            flex: 1 1 200px;
            max-width: 250px;
        }
        /* 按钮/CTA */
        .cta-btn {
            display: inline-block;
            background: #facc15;
            color: #0d0d0d;
            font-weight: bold;
            padding: 12px 40px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            border: 2px solid #facc15;
        }
        .cta-btn:hover {
            background: transparent;
            color: #facc15;
        }
        /* 统计数字 */
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            text-align: center;
        }
        .stat-item {
            border: 2px solid #facc15;
            padding: 25px;
            min-width: 140px;
            background: #111;
        }
        .stat-number {
            font-size: 2.8rem;
            color: #facc15;
            font-weight: bold;
        }
        .stat-label {
            color: #aaa;
            margin-top: 5px;
        }
        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .partner-logos img {
            max-width: 120px;
            opacity: 0.7;
            transition: 0.2s;
        }
        .partner-logos img:hover {
            opacity: 1;
        }
        @media (max-width: 600px) {
            h1 { font-size: 1.8rem; }
            .nav-links a { font-size: 0.9rem; }
        }