* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
            background: #0a0f1e;
            color: #e2e8f0;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 渐变主色调 */
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        }
        .gold-border {
            border: 1px solid rgba(218, 165, 32, 0.3);
            box-shadow: 0 0 15px rgba(218, 165, 32, 0.1);
        }
        /* 导航 */
        nav {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1e3a8a;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            justify-content: center;
            align-items: center;
        }
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 8px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            color: #fbbf24;
            background: rgba(30, 58, 138, 0.4);
            border-bottom: 2px solid #fbbf24;
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fbbf24;
            text-align: center;
            padding: 50px 20px 20px;
            text-shadow: 0 4px 20px rgba(30, 58, 138, 0.6);
            background: linear-gradient(135deg, #0f172a, #1e3a8a);
            margin-bottom: 0;
            letter-spacing: 2px;
        }
        .subhead {
            text-align: center;
            padding: 0 20px 40px;
            background: linear-gradient(135deg, #0f172a, #1e3a8a);
            color: #94a3b8;
            font-size: 1.1rem;
        }
        /* 卡片 */
        .card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 16px;
            padding: 30px;
            margin: 20px 0;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(218, 165, 32, 0.2);
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #fbbf24;
        }
        .card-title {
            color: #fbbf24;
            font-size: 1.8rem;
            margin-bottom: 16px;
            border-left: 4px solid #fbbf24;
            padding-left: 16px;
        }
        /* 网格 */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 12px 0;
            border: 1px solid rgba(218, 165, 32, 0.2);
        }
        /* 新闻列表 */
        .news-item {
            background: rgba(15, 23, 42, 0.6);
            border-left: 4px solid #1e3a8a;
            padding: 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .news-item:hover {
            border-left-color: #fbbf24;
            background: rgba(30, 58, 138, 0.2);
        }
        .news-date {
            color: #94a3b8;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .news-title {
            color: #f1f5f9;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .news-summary {
            color: #cbd5e1;
            margin-top: 8px;
        }
        /* FAQ */
        .faq-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(218, 165, 32, 0.15);
        }
        .faq-q {
            color: #fbbf24;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: default;
        }
        .faq-a {
            color: #cbd5e1;
            margin-top: 8px;
            padding-left: 20px;
            border-left: 2px solid #1e3a8a;
        }
        /* 页脚 */
        footer {
            background: #0f172a;
            border-top: 2px solid #1e3a8a;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: 0.3s;
        }
        footer a:hover {
            color: #fbbf24;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 20px;
        }
        .footer-links a {
            padding: 4px 12px;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #1e293b;
            padding-top: 20px;
            color: #64748b;
            font-size: 0.9rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            justify-content: center;
            margin: 20px 0;
            padding: 16px 0;
            border-top: 1px solid #1e293b;
            border-bottom: 1px solid #1e293b;
        }
        .friend-links a {
            color: #94a3b8;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .card { padding: 20px; }
            .nav-links { gap: 6px; }
        }
        .btn-gold {
            background: linear-gradient(135deg, #b8860b, #fbbf24);
            color: #0f172a;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-gold:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fbbf24;
        }
        .stats-label {
            color: #94a3b8;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        .partner-logos img {
            max-width: 120px;
            border-radius: 8px;
        }