* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            background: linear-gradient(160deg, #3b0764 0%, #1a0a2e 60%, #0e0518 100%);
            background-attachment: fixed;
            scroll-behavior: smooth;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            color: #e5e5e5;
            line-height: 1.7;
            overflow-x: hidden;
            background: transparent;
        }
        a {
            color: #c084fc;
            text-decoration: none;
            transition: color .3s;
        }
        a:hover {
            color: #e9d5ff;
        }
        img {
            max-width: 100%;
            border-radius: 12px;
            display: block;
        }

        .main-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(26, 10, 46, .88);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(168, 85, 247, .2);
            padding: 0 24px;
        }
        .nav-links {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
            padding: 14px 0;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            padding: 6px 4px;
            position: relative;
            letter-spacing: .3px;
        }
        .nav-links a:first-child {
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(90deg, #c084fc, #e9d5ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 16px;
            letter-spacing: 1px;
        }
        .nav-links a:not(:first-child)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #a855f7;
            transition: width .3s;
        }
        .nav-links a:not(:first-child):hover::after {
            width: 100%;
        }

        .hero-section {
            text-align: center;
            padding: 90px 20px 70px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(168, 85, 247, .2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .hero-section>* {
            position: relative;
            z-index: 1;
        }
        .hero-section h1 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #e9d5ff, #c084fc, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .hero-section .hero-sub {
            font-size: 18px;
            color: #c0c0c0;
            margin-bottom: 32px;
            letter-spacing: 4px;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary,
        .btn-secondary {
            display: inline-block;
            padding: 14px 38px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all .3s;
            border: none;
            cursor: pointer;
        }
        .btn-primary {
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            color: #fff;
            box-shadow: 0 4px 20px rgba(168, 85, 247, .35);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(168, 85, 247, .5);
        }
        .btn-secondary {
            background: transparent;
            color: #e5e5e5;
            border: 1px solid rgba(255, 255, 255, .4);
        }
        .btn-secondary:hover {
            border-color: #a855f7;
            color: #c084fc;
        }

        .geo-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 20px;
            text-align: center;
        }
        .geo-section p {
            font-size: 16px;
            color: #d0d0d0;
            line-height: 1.9;
            text-align: justify;
            text-justify: inter-ideograph;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .15);
            border-radius: 16px;
            padding: 32px 36px;
            backdrop-filter: blur(6px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 44px;
            padding: 0 16px;
        }
        .section-header h2 {
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: #f0e6ff;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .section-header p {
            color: #9ca3af;
            font-size: 15px;
            letter-spacing: 1px;
        }
        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #a855f7, transparent);
            margin: 16px auto 0;
            border-radius: 4px;
        }

        .stats-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(168, 85, 247, .12);
            border-radius: 20px;
            padding: 36px 24px;
            text-align: center;
            transition: transform .3s, box-shadow .3s;
            backdrop-filter: blur(8px);
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
        }
        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #e9d5ff;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 14px;
            color: #9ca3af;
            letter-spacing: 1px;
        }

        .advantages-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .advantage-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .12);
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            transition: transform .3s, box-shadow .3s;
        }
        .advantage-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
        }
        .advantage-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .advantage-card h3 {
            font-size: 20px;
            color: #f0e6ff;
            margin-bottom: 12px;
        }
        .advantage-card p {
            font-size: 14px;
            color: #b0b0b0;
            line-height: 1.75;
        }

        .story-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .story-content {
            display: flex;
            gap: 32px;
            align-items: center;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .12);
            border-radius: 20px;
            padding: 40px;
            flex-wrap: wrap;
        }
        .story-content img {
            width: 300px;
            height: 220px;
            object-fit: cover;
            flex-shrink: 0;
            border-radius: 16px;
        }
        .story-content p {
            flex: 1;
            min-width: 280px;
            color: #c0c0c0;
            line-height: 1.9;
            font-size: 15px;
            text-align: justify;
        }

        .events-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .event-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .12);
            border-radius: 20px;
            padding: 20px;
            transition: transform .3s, box-shadow .3s;
            text-align: center;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
        }
        .event-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 18px;
        }
        .event-card h3 {
            font-size: 19px;
            color: #f0e6ff;
            margin-bottom: 8px;
        }
        .event-card p {
            font-size: 14px;
            color: #9ca3af;
            line-height: 1.7;
        }

        .coverage-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .coverage-content {
            display: flex;
            gap: 32px;
            align-items: center;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .12);
            border-radius: 20px;
            padding: 40px;
            flex-wrap: wrap;
        }
        .coverage-content img {
            width: 260px;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            flex-shrink: 0;
        }
        .coverage-content p {
            flex: 1;
            min-width: 260px;
            color: #c0c0c0;
            line-height: 1.9;
            font-size: 15px;
            text-align: justify;
        }

        .testimonials-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(168, 85, 247, .1);
            border-radius: 16px;
            padding: 28px;
            transition: transform .3s, box-shadow .3s;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
        }
        .testimonial-card p {
            font-size: 14px;
            color: #c0c0c0;
            line-height: 1.8;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-card .user-name {
            font-size: 13px;
            color: #a855f7;
            font-weight: 600;
        }

        .cta-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
            text-align: center;
        }
        .cta-content {
            background: radial-gradient(ellipse at center, rgba(168, 85, 247, .15) 0%, transparent 70%);
            padding: 60px 30px;
            border-radius: 24px;
            border: 1px solid rgba(168, 85, 247, .15);
        }
        .cta-content h2 {
            font-size: 36px;
            color: #f0e6ff;
            margin-bottom: 16px;
        }
        .cta-content p {
            color: #b0b0b0;
            font-size: 16px;
            margin-bottom: 32px;
        }

        .news-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .news-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .1);
            border-radius: 20px;
            padding: 28px;
            transition: transform .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
        }
        .news-meta {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .news-date {
            font-size: 13px;
            color: #a855f7;
            font-weight: 600;
        }
        .news-tag {
            font-size: 12px;
            background: rgba(168, 85, 247, .15);
            color: #e9d5ff;
            padding: 2px 10px;
            border-radius: 20px;
        }
        .news-card h3 {
            font-size: 18px;
            color: #f0e6ff;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .news-card p {
            font-size: 14px;
            color: #b0b0b0;
            line-height: 1.75;
            flex: 1;
            text-align: justify;
        }

        .faq-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .faq-item {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(168, 85, 247, .1);
            border-radius: 16px;
            padding: 28px 32px;
            transition: box-shadow .3s;
        }
        .faq-item:hover {
            box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
        }
        .faq-item h3 {
            font-size: 18px;
            color: #f0e6ff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-item p {
            font-size: 14px;
            color: #b0b0b0;
            line-height: 1.8;
            text-align: justify;
        }

        .footer {
            border-top: 1px solid rgba(168, 85, 247, .15);
            padding: 50px 20px 30px;
            margin-top: 40px;
            background: rgba(0, 0, 0, .3);
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 16px;
            color: #e9d5ff;
            margin-bottom: 16px;
        }
        .footer-col p {
            font-size: 14px;
            color: #9ca3af;
            line-height: 1.7;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: #9ca3af;
            margin-bottom: 8px;
        }
        .footer-col a:hover {
            color: #c084fc;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .06);
            font-size: 13px;
            color: #6b7280;
        }

        @media (max-width: 768px) {
            .stats-grid,
            .advantages-grid,
            .events-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .story-content,
            .coverage-content {
                flex-direction: column;
                padding: 24px;
            }
            .story-content img,
            .coverage-content img {
                width: 100%;
                height: auto;
            }
            .nav-links {
                gap: 12px;
                padding: 12px 0;
                justify-content: center;
            }
            .nav-links a:first-child {
                width: 100%;
                text-align: center;
                margin-right: 0;
                margin-bottom: 4px;
            }
            .nav-links a {
                font-size: 14px;
            }
            .hero-section {
                padding: 60px 16px 40px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }