* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 50%, #faf5ff 100%);
        color: #1e1b4b;
        line-height: 1.7;
        overflow-x: hidden;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    img {
        max-width: 100%;
        display: block;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 1000;
        border-bottom: 1px solid rgba(232, 121, 249, 0.15);
        box-shadow: 0 6px 30px rgba(168, 85, 247, 0.08);
    }
    .nav-container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 28px;
    }
    .logo {
        font-size: 26px;
        font-weight: 800;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .logo img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .nav-links {
        display: flex;
        gap: 28px;
        align-items: center;
    }
    .nav-links a {
        color: #4c1d95;
        font-weight: 600;
        font-size: 14px;
        transition: color 0.3s ease;
        letter-spacing: 0.3px;
        position: relative;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 2px;
        background: linear-gradient(90deg, #ec4899, #a855f7);
        transition: width 0.3s ease;
        border-radius: 2px;
    }
    .nav-links a:hover {
        color: #ec4899;
    }
    .nav-links a:hover::after {
        width: 100%;
    }
    /* Hero */
    .hero {
        background: linear-gradient(135deg, #ec4899 0%, #c084fc 50%, #a855f7 100%);
        padding: 140px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .hero::before {
        content: '';
        position: absolute;
        top: -60%;
        left: -30%;
        width: 80%;
        height: 80%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        filter: blur(80px);
    }
    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -20%;
        width: 70%;
        height: 70%;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        filter: blur(60px);
    }
    .hero .container {
        position: relative;
        z-index: 2;
    }
    .hero h1 {
        font-size: 48px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 18px;
        line-height: 1.3;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        letter-spacing: -1px;
    }
    .hero p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.95);
        max-width: 700px;
        margin: 0 auto 32px;
        line-height: 1.8;
    }
    .hero-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-primary {
        background: #ffffff;
        color: #a855f7;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    }
    .btn-outline {
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s ease;
    }
    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    .hero-img {
        margin-top: 40px;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        max-height: 260px;
        object-fit: cover;
        width: 100%;
    }
    /* GEO Intro */
    .geo-intro {
        padding: 70px 0;
    }
    .geo-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 48px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 10px 40px rgba(168, 85, 247, 0.08);
        position: relative;
        overflow: hidden;
    }
    .geo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ec4899, #a855f7, #6366f1);
    }
    .geo-card p {
        font-size: 16px;
        color: #4c1d95;
        line-height: 2;
        text-align: justify;
    }
    /* Section */
    .section {
        padding: 70px 0;
    }
    .section-title {
        text-align: center;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -0.5px;
    }
    .section-subtitle {
        text-align: center;
        color: #7c3aed;
        font-size: 15px;
        max-width: 640px;
        margin: 0 auto 48px;
        line-height: 1.8;
    }
    /* Core Advantages */
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 28px;
    }
    .advantage-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(16px);
        border-radius: 20px;
        padding: 32px 28px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }
    .advantage-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(236, 72, 153, 0.15);
    }
    .advantage-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 30px;
        box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
    }
    .advantage-card h3 {
        font-size: 19px;
        font-weight: 700;
        color: #1e1b4b;
        margin-bottom: 12px;
    }
    .advantage-card p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.8;
    }
    /* Stats */
    .stats-section {
        background: linear-gradient(135deg, #ec4899, #a855f7);
        border-radius: 32px;
        padding: 60px 48px;
        box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25);
        position: relative;
        overflow: hidden;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 32px;
        text-align: center;
    }
    .stat-item .stat-number {
        font-size: 44px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -1px;
    }
    .stat-item .stat-label {
        color: rgba(255, 255, 255, 0.85);
        font-size: 15px;
        margin-top: 6px;
    }
    /* Brand Story */
    .brand-story {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 48px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .brand-story-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #1e1b4b;
        margin-bottom: 16px;
    }
    .brand-story-content p {
        color: #6b7280;
        line-height: 2;
        font-size: 15px;
        margin-bottom: 16px;
    }
    .brand-story-img {
        border-radius: 24px;
        object-fit: cover;
        height: 300px;
        width: 100%;
        box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
    }
    /* Featured Events */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
    .event-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(16px);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .event-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(236, 72, 153, 0.12);
    }
    .event-card img {
        height: 180px;
        width: 100%;
        object-fit: cover;
    }
    .event-card-body {
        padding: 20px 24px 28px;
    }
    .event-tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        color: #fff;
        margin-bottom: 10px;
    }
    .event-card h4 {
        font-size: 18px;
        font-weight: 700;
        color: #1e1b4b;
        margin-bottom: 8px;
    }
    .event-card p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.7;
    }
    /* Testimonials */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }
    .testimonial-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(16px);
        border-radius: 20px;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        position: relative;
    }
    .testimonial-card .quote-mark {
        font-size: 42px;
        color: #ec4899;
        font-weight: 800;
        opacity: 0.3;
        line-height: 1;
        margin-bottom: 4px;
    }
    .testimonial-card p {
        color: #4c1d95;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
        font-style: italic;
    }
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
    }
    .testimonial-author .name {
        font-weight: 700;
        font-size: 14px;
        color: #1e1b4b;
    }
    .testimonial-author .role {
        font-size: 13px;
        color: #6b7280;
    }
    /* CTA */
    .cta-section {
        background: linear-gradient(135deg, #ec4899, #a855f7);
        border-radius: 32px;
        padding: 56px 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-section h3 {
        font-size: 30px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
    }
    .cta-section p {
        color: rgba(255, 255, 255, 0.85);
        max-width: 500px;
        margin: 0 auto 28px;
        font-size: 16px;
    }
    .cta-section .btn-primary {
        background: #fff;
        color: #a855f7;
    }
    /* News */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
    .news-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
    }
    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(168, 85, 247, 0.12);
    }
    .news-card img {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }
    .news-card-content {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .news-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }
    .news-date {
        background: linear-gradient(135deg, #ec4899, #a855f7);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        display: inline-block;
    }
    .news-tag {
        background: rgba(236, 72, 153, 0.1);
        color: #ec4899;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
    }
    .news-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .news-card p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.8;
        flex: 1;
    }
    .news-link {
        margin-top: 16px;
        font-size: 14px;
        font-weight: 700;
        color: #a855f7;
    }
    /* FAQ */
    .faq-list {
        max-width: 860px;
        margin: 0 auto;
    }
    .faq-item {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(16px);
        border-radius: 20px;
        padding: 28px 32px;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        transition: box-shadow 0.3s ease;
    }
    .faq-item:hover {
        box-shadow: 0 8px 30px rgba(236, 72, 153, 0.1);
    }
    .faq-item h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1e1b4b;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .faq-item h3::before {
        content: 'Q';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
    }
    .faq-item p {
        color: #6b7280;
        line-height: 1.9;
        font-size: 15px;
        padding-left: 38px;
    }
    /* Download */
    .download-section {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 48px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .download-info h3 {
        font-size: 28px;
        font-weight: 800;
        color: #1e1b4b;
        margin-bottom: 16px;
    }
    .download-info p {
        color: #6b7280;
        line-height: 1.9;
        font-size: 15px;
        margin-bottom: 24px;
    }
    .download-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #ec4899, #a855f7);
        color: #fff;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 16px rgba(236, 72, 153, 0.25);
    }
    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(236, 72, 153, 0.35);
    }
    .download-img {
        border-radius: 24px;
        object-fit: cover;
        width: 100%;
        max-height: 300px;
        box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
    }
    /* Footer */
    .footer {
        background: #1e1b4b;
        color: #c4b5fd;
        padding: 48px 0 24px;
        margin-top: 60px;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
        margin-bottom: 32px;
    }
    .footer-brand .logo {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
        color: #a5b4fc;
    }
    .footer-column h4 {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
    }
    .footer-column a {
        display: block;
        font-size: 14px;
        color: #a5b4fc;
        padding: 4px 0;
        transition: color 0.3s ease;
    }
    .footer-column a:hover {
        color: #ec4899;
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        font-size: 13px;
        color: #8b7cf7;
        line-height: 2;
        padding-left: 24px;
        padding-right: 24px;
    }
    .footer-bottom a {
        color: #c4b5fd;
        margin: 0 8px;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 32px;
        }
        .hero {
            padding: 120px 0 60px;
        }
        .brand-story,
        .download-section {
            grid-template-columns: 1fr;
        }
        .stats-section {
            padding: 40px 24px;
        }
        .container {
            padding: 0 16px;
        }
        .nav-container {
            flex-direction: column;
            gap: 10px;
            padding: 12px 16px;
        }
        .nav-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
    }