* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #0b0e1a; color: #e5e7eb; font-family: 'Courier New', Courier, monospace; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
        /* 导航 */
        .navbar { background: #111526; border-bottom: 2px solid #facc15; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
        .navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: bold; color: #facc15; text-shadow: 2px 2px 0 #000; }
        .nav-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
        .nav-links a { color: #e5e7eb; text-decoration: none; padding: 0.4rem 1rem; border: 1px solid #facc15; background: #1a1f33; transition: 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { background: #facc15; color: #0b0e1a; }
        /* 标题 */
        h1 { font-size: 2.5rem; color: #facc15; text-align: center; margin: 2rem 0 0.5rem; text-transform: uppercase; letter-spacing: 2px; }
        .subhead { text-align: center; color: #9ca3af; margin-bottom: 2rem; }
        /* 卡片 */
        .card { background: #111526; border: 2px solid #facc15; padding: 1.5rem; margin-bottom: 2rem; box-shadow: 4px 4px 0 #facc15; transition: 0.2s; }
        .card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #facc15; }
        .card h2 { color: #facc15; font-size: 1.6rem; margin-bottom: 1rem; border-bottom: 2px dotted #facc15; padding-bottom: 0.5rem; }
        .card p, .card li { color: #d1d5db; margin-bottom: 0.5rem; }
        /* 图片网格 */
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
        .img-grid img { width: 100%; height: auto; border: 2px solid #facc15; background: #1a1f33; }
        /* 新闻 */
        .news-item { border-bottom: 1px dashed #facc15; padding: 1rem 0; }
        .news-item:last-child { border-bottom: none; }
        .news-meta { color: #9ca3af; font-size: 0.85rem; margin-bottom: 0.2rem; }
        .news-item h3 { color: #facc15; font-size: 1.2rem; }
        .news-item p { margin: 0.3rem 0; }
        /* FAQ */
        .faq-q { font-weight: bold; color: #facc15; cursor: default; margin-top: 1rem; }
        .faq-a { margin: 0.3rem 0 1rem 1rem; color: #d1d5db; }
        /* 页脚 */
        .footer { background: #111526; border-top: 3px solid #facc15; padding: 2rem 0; margin-top: 3rem; }
        .footer .container { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
        .footer-links a { color: #facc15; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { text-decoration: underline; }
        .footer-info { color: #9ca3af; font-size: 0.85rem; text-align: center; }
        /* 按钮 */
        .btn { display: inline-block; padding: 0.6rem 1.8rem; background: #facc15; color: #0b0e1a; font-weight: bold; border: none; cursor: pointer; text-decoration: none; font-family: inherit; font-size: 1rem; box-shadow: 2px 2px 0 #000; transition: 0.2s; }
        .btn:hover { background: #eab308; transform: scale(0.98); }
        /* 数据统计 */
        .stats-row { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin: 1.5rem 0; }
        .stat-item { text-align: center; min-width: 120px; }
        .stat-number { font-size: 2.2rem; font-weight: bold; color: #facc15; }
        .stat-label { color: #9ca3af; }
        /* 响应式 */
        @media (max-width: 768px) {
            .navbar .container { flex-direction: column; gap: 0.8rem; }
            .nav-links { justify-content: center; }
        }