* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #0b1120 0%, #1a1a2e 100%);
            color: #e0e6ed;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        header {
            background: rgba(11, 17, 32, 0.8);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(251, 191, 36, 0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .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;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #c8ccd4;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: #fbbf24;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        /* H1 */
        .hero-section {
            text-align: center;
            padding: 72px 0 48px;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
            letter-spacing: 2px;
        }
        .hero-desc {
            max-width: 720px;
            margin: 0 auto 24px;
            font-size: 1.05rem;
            color: #b0b8c8;
            line-height: 1.8;
        }
        /* 通用卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 32px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(251, 191, 36, 0.3);
        }
        .section-title {
            font-size: 2.0rem;
            font-weight: 700;
            margin-bottom: 48px;
            text-align: center;
            color: #fbbf24;
            letter-spacing: 1px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            object-fit: cover;
            display: block;
            margin-bottom: 16px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .badge {
            display: inline-block;
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
            padding: 4px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .mt-32 { margin-top: 32px; }
        .mb-16 { margin-bottom: 16px; }
        .text-center { text-align: center; }
        /* 新闻 */
        .news-item {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 24px;
            transition: 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .news-item:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(251,191,36,0.2);
        }
        .news-date {
            color: #fbbf24;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 8px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #a0a8b8;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: 24px 0;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            color: #fbbf24;
            margin-bottom: 12px;
        }
        .faq-answer {
            color: #b8c0d0;
            line-height: 1.8;
        }
        /* 页脚 */
        footer {
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(251,191,36,0.1);
            padding: 48px 0 32px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-links a {
            color: #9aa2b2;
            text-decoration: none;
            display: block;
            margin: 6px 0;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #fbbf24; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #7a8292;
        }
        .footer-bottom a {
            color: #fbbf24;
            text-decoration: none;
        }
        .friend-links {
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .friend-links a {
            color: #9aa2b2;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .friend-links a:hover { color: #fbbf24; }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.0rem; }
            .section-title { font-size: 1.6rem; }
            .header-inner { flex-direction: column; gap: 16px; }
            .nav-links { justify-content: center; gap: 16px; }
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0b1120;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 100px;
            text-decoration: none;
            transition: 0.3s;
            margin-top: 16px;
        }
        .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 28px rgba(251,191,36,0.3);
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fbbf24;
            line-height: 1.2;
        }
        .stats-label {
            color: #a0a8b8;
            font-size: 1rem;
        }