* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #1a0a2e 0%, #2a1a3e 50%, #1a0a2e 100%);
            color: #e0d4f0;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #c4b5e3;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.3s;
            padding: 6px 12px;
            border-radius: 8px;
        }
        .nav-links a:hover {
            color: #f0e6ff;
            background: rgba(217, 70, 239, 0.2);
            text-shadow: 0 0 12px #d946ef;
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 20px 30px;
        }
        .hero-title h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0e6ff, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(217, 70, 239, 0.3);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.2;
        }
        /* 区块通用 */
        .section-card {
            background: rgba(26, 10, 46, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 24px;
            padding: 40px 30px;
            margin: 40px 0;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.08), inset 0 0 30px rgba(217, 70, 239, 0.03);
            backdrop-filter: blur(6px);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 28px;
            background: linear-gradient(90deg, #d946ef, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            border-bottom: 3px solid #d946ef;
            padding-bottom: 8px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .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-glow {
            background: rgba(42, 16, 64, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 16px;
            padding: 24px;
            transition: 0.4s;
            box-shadow: 0 0 15px rgba(217, 70, 239, 0.05);
        }
        .card-glow:hover {
            border-color: #d946ef;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.25), inset 0 0 25px rgba(217, 70, 239, 0.05);
            transform: translateY(-4px);
        }
        .card-glow h3 {
            color: #f0d4ff;
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
        .card-glow p {
            color: #b8a8d0;
            font-size: 0.95rem;
        }
        .image-show {
            width: 100%;
            border-radius: 14px;
            margin: 16px 0;
            border: 1px solid rgba(217, 70, 239, 0.15);
        }
        .btn-cta {
            display: inline-block;
            padding: 14px 42px;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            border-radius: 60px;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 0 25px rgba(217, 70, 239, 0.3);
            margin-top: 16px;
        }
        .btn-cta:hover {
            box-shadow: 0 0 50px rgba(217, 70, 239, 0.6);
            transform: scale(1.03);
        }
        /* 新闻区块 */
        .news-item {
            border-bottom: 1px solid rgba(217, 70, 239, 0.1);
            padding: 20px 0;
        }
        .news-item:last-child { border-bottom: none; }
        .news-date {
            color: #c084fc;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .news-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 6px 0 10px;
            color: #f0e6ff;
        }
        .news-summary {
            color: #b0a0c8;
            line-height: 1.7;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 20px;
            padding: 18px 20px;
            background: rgba(42, 16, 64, 0.4);
            border-radius: 14px;
            border-left: 4px solid #d946ef;
        }
        .faq-q {
            font-weight: 700;
            color: #f0d4ff;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .faq-a {
            color: #b8a8d0;
            line-height: 1.7;
        }
        /* 页脚 */
        .footer {
            background: rgba(10, 4, 20, 0.9);
            border-top: 1px solid rgba(217, 70, 239, 0.2);
            padding: 40px 0 30px;
            margin-top: 60px;
        }
        .footer a {
            color: #c084fc;
            text-decoration: none;
        }
        .footer a:hover { color: #d946ef; }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            margin: 18px 0;
            font-size: 0.9rem;
        }
        .footer-info {
            text-align: center;
            color: #8a7aa0;
            font-size: 0.85rem;
            line-height: 1.8;
        }
        .friend-links {
            text-align: center;
            margin: 24px 0 10px;
            padding: 12px 0;
            border-top: 1px solid rgba(217, 70, 239, 0.1);
            border-bottom: 1px solid rgba(217, 70, 239, 0.1);
        }
        .friend-links a {
            margin: 0 8px;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .hero-title h1 { font-size: 1.8rem; }
            .nav-links { gap: 10px; justify-content: center; }
        }