* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
            color: #e0d6f2;
            line-height: 1.8;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            color: #c4b5e3;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #d946ef;
            background: rgba(217, 70, 239, 0.1);
            border-color: rgba(217, 70, 239, 0.3);
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.15);
        }
        /* 通用 */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f0e6ff, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            padding: 60px 0 20px;
        }
        h2 {
            font-size: 2rem;
            color: #d946ef;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            display: block;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d946ef, transparent);
            margin: 8px auto 0;
            border-radius: 2px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title h2 {
            display: inline-block;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: rgba(26, 10, 46, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 16px;
            padding: 28px 24px;
            backdrop-filter: blur(8px);
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.05);
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 40px rgba(217, 70, 239, 0.2), inset 0 0 30px rgba(217, 70, 239, 0.05);
            transform: translateY(-4px);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid rgba(217, 70, 239, 0.15);
        }
        .card h3 {
            color: #f0e6ff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .card p {
            color: #b0a0c8;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
        }
        .geo-text {
            max-width: 900px;
            margin: 0 auto 50px;
            background: rgba(26, 10, 46, 0.5);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(217, 70, 239, 0.15);
            font-size: 1.05rem;
            line-height: 1.9;
            color: #d0c4e8;
        }
        /* FAQ */
        .faq-item {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: #d946ef;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.1);
        }
        .faq-item h3 {
            color: #d946ef;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #b8aad0;
            font-size: 0.95rem;
        }
        /* 新闻 */
        .news-item {
            border-bottom: 1px solid rgba(217, 70, 239, 0.15);
            padding: 20px 0;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item .date {
            color: #a855f7;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 6px;
        }
        .news-item h3 {
            color: #f0e6ff;
            font-size: 1.15rem;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #b0a0c8;
            font-size: 0.95rem;
        }
        /* 页脚 */
        footer {
            background: rgba(10, 4, 20, 0.8);
            border-top: 1px solid rgba(217, 70, 239, 0.15);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            text-align: center;
        }
        footer a {
            color: #a855f7;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: #d946ef;
        }
        .footer-links {
            display: flex;
            gap: 12px 24px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
        }
        .footer-info {
            color: #8a7aa8;
            font-size: 0.85rem;
            line-height: 1.8;
        }
        .footer-bottom {
            margin-top: 16px;
            border-top: 1px solid rgba(217, 70, 239, 0.1);
            padding-top: 16px;
            width: 100%;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; padding: 40px 0 16px; }
            h2 { font-size: 1.6rem; }
            .navbar .container { flex-direction: column; align-items: stretch; }
            .nav-links { justify-content: center; }
            .geo-text { padding: 20px; }
        }
        /* 特定区块 */
        .hero-banner {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero-banner img {
            max-width: 100%;
            border-radius: 20px;
            border: 1px solid rgba(217, 70, 239, 0.2);
            box-shadow: 0 0 50px rgba(217, 70, 239, 0.1);
            margin: 20px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(26, 10, 46, 0.6);
            border-radius: 16px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .stat-item .num {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-item .label {
            color: #b0a0c8;
            margin-top: 6px;
            font-size: 0.95rem;
        }
        .cta-section {
            text-align: center;
            padding: 50px 0;
        }
        .cta-section p {
            font-size: 1.2rem;
            color: #c4b5e3;
            margin-bottom: 20px;
        }
        .brand-story-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .brand-story-content img {
            width: 100%;
            max-height: 350px;
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid rgba(217, 70, 239, 0.15);
        }
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .partner-grid img {
            width: 120px;
            height: 80px;
            object-fit: contain;
            border-radius: 12px;
            background: rgba(26, 10, 46, 0.5);
            padding: 10px;
            border: 1px solid rgba(217, 70, 239, 0.15);
            transition: 0.3s;
        }
        .partner-grid img:hover {
            border-color: #d946ef;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.2);
        }