* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background: linear-gradient(135deg, #0b1120 0%, #1a1a2e 100%);
            color: #e5e7eb;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            background: rgba(11, 17, 32, 0.7);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(251, 191, 36, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s, transform 0.2s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            transform: translateY(-1px);
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            padding: 60px 24px 20px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        /* 通用卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(251, 191, 36, 0.08);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .glass-card:hover {
            transform: translateY(-6px);
            border-color: rgba(251, 191, 36, 0.25);
            box-shadow: 0 16px 40px rgba(251, 191, 36, 0.08);
        }
        section {
            padding: 40px 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 28px;
            border-left: 5px solid #fbbf24;
            padding-left: 16px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 28px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 24px;
        }
        img {
            width: 100%;
            border-radius: 16px;
            object-fit: cover;
            height: auto;
            display: block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }
        .img-alt {
            margin-top: 8px;
            font-size: 0.85rem;
            color: #9ca3af;
            text-align: center;
        }
        .btn-amber {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0b1120;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-amber:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
        }
        /* 新闻卡片 */
        .news-card {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(6px);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(251,191,36,0.06);
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #fbbf24;
            background: rgba(255,255,255,0.07);
        }
        .news-date {
            color: #fbbf24;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255,255,255,0.03);
            border-radius: 18px;
            padding: 20px 24px;
            margin-bottom: 16px;
            border: 1px solid rgba(251,191,36,0.06);
        }
        .faq-item h3 {
            color: #fbbf24;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
        /* 页脚 */
        footer {
            background: #05080f;
            padding: 48px 24px 32px;
            margin-top: 60px;
            border-top: 1px solid rgba(251,191,36,0.1);
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            margin: 0 8px;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .footer-copy {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
            margin-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 24px;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fbbf24;
            line-height: 1.2;
        }
        .partner-badge {
            background: rgba(251,191,36,0.08);
            border-radius: 40px;
            padding: 8px 20px;
            display: inline-block;
            color: #fbbf24;
            font-weight: 500;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(251,191,36,0.2);
        }