* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background: #0b0c10;
            color: #e0e0e0;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 像素风卡片 */
        .pixel-card {
            background: #1a1d23;
            border: 2px solid #facc15;
            border-radius: 0;
            box-shadow: 4px 4px 0 #facc15;
            padding: 24px;
            margin-bottom: 28px;
            transition: all 0.2s;
        }
        .pixel-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #facc15;
        }
        .yellow-text {
            color: #facc15;
        }
        .btn-yellow {
            display: inline-block;
            background: #facc15;
            color: #0b0c10;
            font-weight: 700;
            padding: 12px 28px;
            text-decoration: none;
            border: 2px solid #facc15;
            box-shadow: 3px 3px 0 #9a7b0c;
            transition: 0.2s;
            letter-spacing: 1px;
        }
        .btn-yellow:hover {
            background: #e6b800;
            box-shadow: 1px 1px 0 #9a7b0c;
        }
        /* 导航 */
        .navbar {
            background: #111318;
            border-bottom: 2px solid #facc15;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #facc15;
            text-shadow: 2px 2px 0 #000;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 6px 14px;
            border: 1px solid transparent;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #facc15;
            border-color: #facc15;
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 40px 0 12px;
        }
        .hero-title h1 {
            font-size: 2.4rem;
            font-weight: 900;
            color: #facc15;
            text-shadow: 3px 3px 0 #222;
            letter-spacing: 2px;
        }
        .hero-title p {
            color: #b0b0b0;
            max-width: 800px;
            margin: 8px auto 0;
            font-size: 1rem;
        }
        /* 区块 */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #facc15;
            margin-bottom: 24px;
            border-left: 6px solid #facc15;
            padding-left: 16px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 2px solid #facc15;
            filter: drop-shadow(2px 2px 0 #00000066);
        }
        /* 新闻列表 */
        .news-item {
            border-bottom: 1px dashed #facc1540;
            padding: 16px 0;
        }
        .news-item:last-child {
            border: none;
        }
        .news-date {
            color: #facc15;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }
        .news-summary {
            color: #aaa;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 24px;
        }
        .faq-q {
            font-weight: 700;
            color: #facc15;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .faq-a {
            color: #c8c8c8;
        }
        /* 页脚 */
        .footer {
            background: #111318;
            border-top: 2px solid #facc15;
            padding: 40px 0 20px;
            margin-top: 40px;
            text-align: center;
        }
        .footer a {
            color: #facc15;
            text-decoration: none;
            margin: 0 8px;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            margin: 16px 0;
            font-size: 0.9rem;
        }
        .footer-addr {
            color: #999;
            font-size: 0.85rem;
        }
        .footer-copy {
            color: #666;
            font-size: 0.8rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3 {
                grid-template-columns: 1fr;
            }
            .hero-title h1 {
                font-size: 1.8rem;
            }
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
        }