* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0f0a1a;
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            color: #e2d8f0;
            line-height: 1.7;
            min-height: 100vh;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 霓虹渐变 */
        .gradient-bg {
            background: linear-gradient(145deg, #1a0a2e, #1f0f3a, #2d1b4e);
        }

        .neon-border {
            border: 1px solid rgba(217, 70, 239, 0.3);
            box-shadow: 0 0 18px rgba(217, 70, 239, 0.15), inset 0 0 12px rgba(217, 70, 239, 0.05);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .neon-border:hover {
            border-color: #d946ef;
            box-shadow: 0 0 32px #d946ef66, inset 0 0 20px #d946ef22;
        }

        .glow-text {
            background: linear-gradient(135deg, #d946ef, #a855f7, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #d946ef33;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(145deg, #d946ef, #c026d3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #c4b5e3;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: 0.2s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            background: #d946ef33;
            color: #f0e6ff;
        }

        /* 通用区块 */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 50px 0 20px;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 28px;
            text-align: center;
        }

        .section-padding {
            padding: 70px 0;
        }

        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 28px;
        }

        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }

        .card {
            background: #1f1233;
            padding: 28px 22px;
            border-radius: 20px;
            border: 1px solid #3a2255;
            transition: all 0.3s;
        }

        .card:hover {
            border-color: #d946ef;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px #d946ef22;
        }

        img {
            width: 100%;
            border-radius: 16px;
            display: block;
            margin: 0 0 12px;
            object-fit: cover;
        }

        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .btn-primary {
            display: inline-block;
            background: linear-gradient(145deg, #d946ef, #a21caf);
            color: #fff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.25s;
            border: none;
            box-shadow: 0 6px 18px #d946ef55;
        }

        .btn-primary:hover {
            transform: scale(1.04);
            box-shadow: 0 10px 28px #d946ef77;
        }

        /* 新闻卡片 */
        .news-card {
            background: #1b0f2a;
            padding: 24px;
            border-radius: 20px;
            border: 1px solid #3a2255;
        }

        .news-card .date {
            color: #a78bfa;
            font-size: 0.9rem;
            margin-bottom: 6px;
            display: block;
            font-weight: 500;
        }

        .news-card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .news-card p {
            color: #b8a9d4;
            font-size: 0.95rem;
        }

        /* FAQ */
        .faq-item {
            background: #1b0f2a;
            padding: 22px 26px;
            border-radius: 18px;
            margin-bottom: 18px;
            border-left: 4px solid #d946ef;
        }

        .faq-item h4 {
            font-size: 1.2rem;
            color: #f0e6ff;
            margin-bottom: 10px;
        }

        .faq-item p {
            color: #c4b5e3;
        }

        /* 页脚 */
        .footer {
            background: #120a1e;
            border-top: 1px solid #2f1b4a;
            padding: 48px 0 28px;
            margin-top: 40px;
        }

        .footer a {
            color: #a78bfa;
            text-decoration: none;
            margin: 0 8px;
            transition: 0.2s;
        }

        .footer a:hover {
            color: #d946ef;
        }

        .footer .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin-bottom: 28px;
        }

        .footer .copy {
            text-align: center;
            color: #7a6a96;
            font-size: 0.9rem;
        }

        .footer .icp {
            text-align: center;
            color: #7a6a96;
            font-size: 0.85rem;
            margin-top: 8px;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.85rem; padding: 4px 10px; }
        }

        .hero {
            text-align: center;
            padding: 80px 0 50px;
        }

        .hero p {
            max-width: 700px;
            margin: 20px auto 30px;
            font-size: 1.15rem;
            color: #c9b8e6;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
        }

        .stat-item {
            text-align: center;
            padding: 24px;
        }

        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(145deg, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .testimonial-card {
            background: #1a0e2a;
            padding: 28px;
            border-radius: 24px;
            border: 1px solid #4a2d6a;
            font-style: italic;
        }

        .testimonial-card .name {
            margin-top: 16px;
            font-weight: 600;
            color: #d946ef;
        }

        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, #1a0a2e, #2d1550);
            padding: 70px 20px;
            border-radius: 36px;
            margin: 40px 0;
        }