* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #0d0015;
            color: #e2d9f0;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            padding: 0 20px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #1a0a2e 0%, #2a1045 100%);
            padding: 16px 32px;
            border-radius: 60px;
            margin: 20px 0 30px;
            border: 1px solid rgba(217, 70, 239, 0.25);
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.15);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-weight: 700;
            font-size: 1.6rem;
            background: linear-gradient(135deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #c4b5d4;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d946ef;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #f0abfc;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        /* 通用卡片 */
        .card {
            background: linear-gradient(145deg, #140a24, #1f0d35);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 32px;
            padding: 40px 32px;
            margin-bottom: 40px;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.08);
            transition: 0.4s;
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 50px rgba(217, 70, 239, 0.25);
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f0abfc, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #f0abfc;
            margin-bottom: 24px;
            border-left: 6px solid #d946ef;
            padding-left: 20px;
        }
        h3 {
            color: #e9d5ff;
            margin-bottom: 14px;
            font-size: 1.4rem;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: 1fr 1fr; }
        .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
        .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
        .img-fit {
            width: 100%;
            border-radius: 20px;
            margin: 16px 0;
            border: 1px solid #3b1f5e;
        }
        .img-small {
            max-height: 220px;
            object-fit: cover;
            width: 100%;
            border-radius: 16px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #d946ef, #a21caf);
            color: #fff;
            padding: 14px 42px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 4px 25px rgba(217, 70, 239, 0.35);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 35px rgba(217, 70, 239, 0.55);
        }
        .tag {
            background: #2d1152;
            padding: 6px 16px;
            border-radius: 60px;
            font-size: 0.8rem;
            color: #d946ef;
            display: inline-block;
            margin-bottom: 12px;
        }
        .news-item, .faq-item {
            background: rgba(26, 10, 46, 0.7);
            padding: 24px;
            border-radius: 24px;
            border: 1px solid #2d1550;
            margin-bottom: 16px;
        }
        .faq-item h4 {
            color: #f0abfc;
            cursor: pointer;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #b9a6d4;
        }
        footer {
            border-top: 1px solid #2d1550;
            margin-top: 60px;
            padding: 40px 0 20px;
            text-align: center;
            color: #8b7aa8;
        }
        footer a {
            color: #d9b3f0;
            text-decoration: none;
            margin: 0 8px;
        }
        footer a:hover {
            color: #f0abfc;
        }
        .friend-links {
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .friend-links a {
            color: #c4b5d4;
        }
        .highlight-badge {
            display: inline-block;
            background: #d946ef20;
            border: 1px solid #d946ef;
            border-radius: 40px;
            padding: 8px 18px;
            font-size: 0.85rem;
            color: #f0abfc;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            nav { flex-direction: column; gap: 16px; }
            .nav-links { justify-content: center; }
            h1 { font-size: 2rem; }
        }