* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 40%, #4a1a6b 70%, #d946ef 100%);
            color: #f0e6ff;
            min-height: 100vh;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
        }
        /* 导航 */
        nav {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.2);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        .nav-links a {
            color: #e0b3ff;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
            font-size: 15px;
        }
        .nav-links a:hover {
            color: #d946ef;
            border-bottom-color: #d946ef;
        }
        .nav-links a::before {
            content: "⚡ ";
        }
        .nav-brand {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(90deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 40px 0 20px;
        }
        .hero-title h1 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            background: linear-gradient(135deg, #f0abfc, #d946ef, #e879f9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
        }
        /* 通用卡片 */
        .card {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 20px;
            padding: 28px 24px;
            margin-bottom: 32px;
            backdrop-filter: blur(4px);
            box-shadow: 0 0 25px rgba(217, 70, 239, 0.1);
            transition: 0.3s;
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 40px rgba(217, 70, 239, 0.2);
        }
        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-title::before {
            content: "✨";
        }
        .glow-text {
            color: #d946ef;
            text-shadow: 0 0 12px rgba(217, 70, 239, 0.5);
        }
        .grid-2, .grid-3 {
            display: grid;
            gap: 22px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        img {
            max-width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(217, 70, 239, 0.2);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .img-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .img-flex img {
            width: 200px;
            height: 140px;
            object-fit: cover;
            flex: 1 1 180px;
        }
        /* 新闻卡片 */
        .news-item {
            background: rgba(0,0,0,0.2);
            border-radius: 16px;
            padding: 20px;
            border-left: 4px solid #d946ef;
            margin-bottom: 18px;
        }
        .news-item h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: #f0abfc;
        }
        .news-date {
            font-size: 0.85rem;
            color: #c084fc;
            margin-bottom: 8px;
            display: block;
        }
        /* FAQ */
        .faq-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(217,70,239,0.15);
        }
        .faq-item:last-child { border: none; }
        .faq-q {
            font-weight: 700;
            font-size: 1.1rem;
            color: #e879f9;
            margin-bottom: 6px;
        }
        .faq-a {
            color: #d8c4f0;
            padding-left: 12px;
            border-left: 2px solid #d946ef;
        }
        /* 页脚 */
        footer {
            background: rgba(0,0,0,0.5);
            border-top: 1px solid rgba(217,70,239,0.2);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
            justify-content: center;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #c084fc;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-links a:hover {
            color: #d946ef;
        }
        .footer-info {
            text-align: center;
            color: #a78bfa;
            font-size: 0.9rem;
            line-height: 2;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .container { padding: 12px; }
            .card { padding: 18px; }
            .nav-inner { flex-direction: column; align-items: stretch; }
        }
        a {
            color: #d946ef;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(90deg, #d946ef, #a855f7);
            color: #fff;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 0 30px rgba(217,70,239,0.3);
        }
        .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(217,70,239,0.5);
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 24px; }