* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
        }
        body {
            background: #0b0015;
            color: #e0d4ff;
            line-height: 1.7;
        }
        a {
            color: #d946ef;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #f0abfc;
            text-shadow: 0 0 12px #d946ef;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: #120521;
            border-bottom: 1px solid #2e1065;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            justify-content: center;
            align-items: center;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #d946ef;
        }

        /* H1 */
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #e9d5ff, #d946ef);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
            margin: 40px 0 16px;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 2rem;
            margin-bottom: 24px;
            border-left: 6px solid #d946ef;
            padding-left: 18px;
            color: #f3e8ff;
        }
        .section {
            padding: 60px 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .card {
            background: #1c0730;
            border: 1px solid #3b1a6e;
            border-radius: 24px;
            padding: 28px 20px;
            box-shadow: 0 0 18px rgba(217, 70, 239, 0.2);
            transition: 0.3s;
            backdrop-filter: blur(4px);
        }
        .card:hover {
            transform: translateY(-6px);
            border-color: #d946ef;
            box-shadow: 0 0 30px #b245e0;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 16px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #9333ea, #d946ef);
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 0 20px #a855f7;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 0 32px #d946ef;
        }
        .geo-box, .faq-box, .news-box {
            background: #18062b;
            border-radius: 28px;
            padding: 32px;
            border: 1px solid #4a1c7a;
        }
        .faq-item, .news-item {
            border-bottom: 1px solid #2d1152;
            padding: 20px 0;
        }
        .faq-item:last-child, .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            color: #c084fc;
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        /* 页脚 */
        .footer {
            background: #0f0320;
            padding: 40px 24px;
            border-top: 2px solid #2e1065;
            margin-top: 60px;
            text-align: center;
            font-size: 0.95rem;
        }
        .footer a {
            color: #c084fc;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 20px 0;
        }
        .footer-links a {
            padding: 0 8px;
        }
        .friend-links {
            margin: 24px 0;
        }
        .friend-links a {
            margin: 0 8px;
        }
        .copy {
            color: #7c5c9e;
            margin-top: 28px;
        }
        /* 响应式 */
        @media (max-width: 700px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
        }