* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0d0216 0%, #1a0a2e 50%, #2a1040 100%);
            color: #f0e6ff;
            min-height: 100vh;
            line-height: 1.6;
        }
        a {
            color: #d946ef;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f0abfc;
            text-shadow: 0 0 12px #d946ef;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
        }
        .nav-links a:hover {
            border-bottom-color: #d946ef;
        }
        /* 通用卡片 */
        .section-card {
            background: rgba(30, 12, 56, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 24px;
            padding: 40px 32px;
            margin: 40px 0;
            box-shadow: 0 0 40px rgba(217, 70, 239, 0.08);
            backdrop-filter: blur(4px);
            transition: 0.3s;
        }
        .section-card:hover {
            border-color: rgba(217, 70, 239, 0.5);
            box-shadow: 0 0 60px rgba(217, 70, 239, 0.15);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 28px;
            background: linear-gradient(135deg, #d946ef, #f9a8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        .card-glow {
            background: rgba(20, 8, 40, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 20px;
            padding: 24px 20px;
            transition: 0.3s;
        }
        .card-glow:hover {
            border-color: #d946ef;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.2);
            transform: translateY(-4px);
        }
        img {
            max-width: 100%;
            border-radius: 16px;
            display: block;
            margin: 12px 0;
            border: 1px solid rgba(217, 70, 239, 0.15);
        }
        .hero-img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 24px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-primary {
            background: linear-gradient(135deg, #d946ef, #a21caf);
            border: none;
            border-radius: 50px;
            padding: 14px 40px;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
        }
        .btn-primary:hover {
            transform: scale(1.04);
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d946ef, transparent);
            margin: 20px 0;
        }
        /* 页脚 */
        .footer {
            border-top: 1px solid rgba(217, 70, 239, 0.2);
            padding: 48px 0 32px;
            margin-top: 60px;
            background: rgba(10, 3, 20, 0.6);
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
        }
        .footer-bottom {
            margin-top: 32px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        .faq-item {
            margin-bottom: 28px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(217, 70, 239, 0.1);
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-q {
            font-weight: 700;
            font-size: 1.15rem;
            color: #f0abfc;
            margin-bottom: 8px;
        }
        .news-card {
            background: rgba(20, 8, 40, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 20px;
            padding: 20px;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 25px rgba(217, 70, 239, 0.15);
        }
        .news-date {
            font-size: 0.8rem;
            color: #a78bfa;
            margin-bottom: 6px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @media (max-width: 768px) {
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 16px; }
            .section-card { padding: 24px 16px; }
        }