* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Courier New', monospace;
            background: #0c0c14;
            color: #e4e4ee;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px;
        }
        /* 导航 */
        nav {
            background: #12121c;
            border-bottom: 2px solid #6c5ce7;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 20px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        .nav-links a {
            color: #6c5ce7;
            text-decoration: none;
            padding: 6px 12px;
            border: 1px solid #6c5ce7;
            background: #1a1a28;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            border-radius: 10px;
            box-shadow: 0 0 12px rgba(108, 92, 231, 0.15);
        }
        .nav-links a:hover {
            background: #6c5ce7;
            color: #0c0c14;
            box-shadow: 0 0 28px rgba(108, 92, 231, 0.6);
            transform: translateY(-2px);
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.5rem;
            color: #ff6b81;
            padding: 40px 20px 10px;
            text-shadow: 0 0 20px rgba(255, 107, 129, 0.5), 0 0 40px rgba(255, 107, 129, 0.2);
            letter-spacing: 2px;
        }
        /* 通用卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .card {
            background: #16161e;
            border: 2px solid #f0b34b;
            padding: 20px;
            image-rendering: pixelated;
            border-radius: 14px;
            box-shadow: 0 0 18px rgba(240, 179, 75, 0.25);
            transition: all 0.3s ease;
        }
        .card:hover {
            box-shadow: 0 0 36px rgba(240, 179, 75, 0.55);
            border-color: #f7c35e;
            transform: translateY(-4px);
        }
        .card img {
            width: 100%;
            height: auto;
            border: 1px solid #f0b34b;
            margin-bottom: 12px;
            border-radius: 10px;
        }
        .card h3 {
            color: #f0b34b;
            margin-bottom: 8px;
            text-shadow: 0 0 8px rgba(240, 179, 75, 0.25);
        }
        .card p {
            font-size: 0.95rem;
        }
        /* 板块标题 */
        .section-title {
            font-size: 1.8rem;
            color: #f7c35e;
            border-left: 6px solid #f7c35e;
            padding-left: 15px;
            margin: 40px 0 20px;
            text-transform: uppercase;
            text-shadow: 0 0 12px rgba(247, 195, 94, 0.3);
        }
        /* FAQ */
        .faq-item {
            background: #14141c;
            border: 1px solid #ff6f61;
            padding: 18px;
            margin-bottom: 12px;
            border-radius: 12px;
            box-shadow: 0 0 14px rgba(255, 111, 97, 0.15);
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 0 30px rgba(255, 111, 97, 0.45);
            border-color: #ff8a7a;
        }
        .faq-item h4 {
            color: #ff6f61;
            cursor: pointer;
            text-shadow: 0 0 6px rgba(255, 111, 97, 0.2);
        }
        .faq-item p {
            margin-top: 10px;
        }
        /* 新闻 */
        .news-card {
            background: #16161e;
            border: 2px solid #4ecdc4;
            padding: 18px;
            margin-bottom: 20px;
            border-radius: 14px;
            box-shadow: 0 0 18px rgba(78, 205, 196, 0.2);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            box-shadow: 0 0 34px rgba(78, 205, 196, 0.5);
            border-color: #6dd5ce;
            transform: translateY(-3px);
        }
        .news-card .date {
            color: #9e9eb0;
            font-size: 0.8rem;
            margin-bottom: 6px;
        }
        .news-card h3 {
            color: #4ecdc4;
            margin-bottom: 8px;
            text-shadow: 0 0 8px rgba(78, 205, 196, 0.25);
        }
        /* 页脚 */
        footer {
            background: #12121c;
            border-top: 3px solid #a67c52;
            padding: 30px 20px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.85rem;
        }
        footer a {
            color: #a67c52;
            text-decoration: none;
            margin: 0 6px;
            transition: all 0.3s ease;
        }
        footer a:hover {
            color: #c49a6e;
            text-shadow: 0 0 12px rgba(166, 124, 82, 0.5);
        }
        footer .friend-links {
            margin: 20px 0;
        }
        footer .friend-links a {
            margin: 0 8px;
        }
        /* 数据统计 */
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .stat-item {
            background: #16161e;
            border: 2px solid #45b7d1;
            padding: 20px 30px;
            text-align: center;
            min-width: 160px;
            border-radius: 14px;
            box-shadow: 0 0 16px rgba(69, 183, 209, 0.2);
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            box-shadow: 0 0 32px rgba(69, 183, 209, 0.5);
            border-color: #68d0e8;
            transform: translateY(-3px);
        }
        .stat-item .num {
            font-size: 2.2rem;
            color: #45b7d1;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(69, 183, 209, 0.3);
        }
        /* 合作伙伴logo占位 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .partner-logos span {
            background: #1a1a28;
            border: 1px solid #9b72cf;
            padding: 10px 18px;
            color: #9b72cf;
            border-radius: 10px;
            box-shadow: 0 0 12px rgba(155, 114, 207, 0.15);
            transition: all 0.3s ease;
        }
        .partner-logos span:hover {
            box-shadow: 0 0 28px rgba(155, 114, 207, 0.5);
            background: #22223a;
            transform: translateY(-2px);
        }
        /* 响应式 */
        @media (max-width: 640px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 10px; }
        }