* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        :root {
            --aurora-green: #2dd4bf;
            --aurora-blue: #38bdf8;
            --star-purple: #a78bfa;
            --dark-bg: #0b1220;
            --dark-bg2: #111c30;
            --card-bg: rgba(255, 255, 255, 0.04);
            --card-border: rgba(255, 255, 255, 0.08);
            --text-main: #e2e8f0;
            --text-muted: #94a3b8;
            --gradient-main: linear-gradient(135deg, #2dd4bf, #38bdf8);
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: var(--dark-bg);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(45, 212, 191, 0.08), transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(56, 189, 248, 0.08), transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(167, 139, 250, 0.05), transparent 50%);
            pointer-events: none;
            z-index: 0;
        }
        .navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(11, 18, 32, 0.82);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 0.9rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            transition: all 0.35s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: var(--gradient-main);
            color: #0b1220;
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
            transform: translateY(-1px);
        }
        main {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        section {
            margin: 4rem 0;
            scroll-margin-top: 80px;
        }
        section[id] {
            scroll-margin-top: 90px;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.4;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(135deg, #2dd4bf, #38bdf8, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 2px;
            margin: 0.6rem auto 0;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }
        p {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }
        img {
            max-width: 100%;
            border-radius: var(--radius-md);
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        /* Hero */
        .hero-section {
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .hero-description {
            font-size: 1.1rem;
            max-width: 860px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .hero-img {
            max-width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .hero-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .hero-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.5));
            border-radius: var(--radius-lg);
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .stat-card {
            background: var(--card-bg);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 2rem 1rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(45, 212, 191, 0.15);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 0.3rem;
        }
        .stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        /* Advantages */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .advantage-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
            backdrop-filter: blur(14px);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 1.8rem;
            text-align: center;
            transition: all 0.35s ease;
        }
        .advantage-card:hover {
            border-color: rgba(45, 212, 191, 0.4);
            box-shadow: 0 8px 30px rgba(45, 212, 191, 0.1);
            transform: translateY(-3px);
        }
        .advantage-card img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            padding: 10px;
        }
        .advantage-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }
        .advantage-card p {
            font-size: 0.9rem;
        }
        /* Brand story */
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
        }
        .story-content img {
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
        }
        /* Timeline */
        .timeline {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .timeline-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }
        .timeline-item::before {
            content: '🏆';
            font-size: 2rem;
            display: block;
            margin-bottom: 0.8rem;
        }
        .timeline-item:nth-child(2)::before {
            content: '🚀';
        }
        .timeline-item:nth-child(3)::before {
            content: '❤️';
        }
        .timeline-item:hover {
            border-color: rgba(56, 189, 248, 0.4);
        }
        /* Coverage */
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
        }
        .coverage-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        .coverage-item img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin: 0 auto 0.6rem;
            border-radius: 50%;
        }
        .coverage-item span {
            font-size: 0.95rem;
            font-weight: 500;
        }
        /* Events */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .event-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.35s;
        }
        .event-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
        }
        .event-card:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(56, 189, 248, 0.15);
        }
        /* Partners */
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .partners-grid img {
            width: 100px;
            height: 60px;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-sm);
            padding: 8px;
            transition: all 0.3s;
        }
        .partners-grid img:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.1);
        }
        /* Insights */
        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .insight-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 2rem;
            text-align: center;
        }
        .insight-card h3 {
            margin-bottom: 0.5rem;
        }
        /* Vision & Mission */
        .vision,
        .mission {
            text-align: center;
            max-width: 800px;
            margin: 3rem auto;
            padding: 3rem 2rem;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
        }
        .vision h2::after,
        .mission h2::after {
            display: block;
            margin: 0.6rem auto 0;
        }
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 2rem;
            position: relative;
        }
        .testimonial-card::before {
            content: '💬';
            font-size: 2rem;
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--dark-bg);
            padding: 0 6px;
            border-radius: 8px;
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .testimonial-card span {
            font-size: 0.85rem;
            color: var(--star-purple);
        }
        /* CTA */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(56, 189, 248, 0.1), rgba(167, 139, 250, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 4rem 2rem;
            max-width: 900px;
            margin: 4rem auto;
        }
        .cta h2 {
            color: var(--text-main);
            background: none;
            -webkit-text-fill-color: var(--text-main);
        }
        .cta h2::after {
            margin: 0.6rem auto 0;
        }
        .btn-primary,
        .btn-secondary {
            display: inline-block;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            margin: 0.5rem;
            transition: all 0.3s;
            font-size: 1rem;
        }
        .btn-primary {
            background: var(--gradient-main);
            color: #0b1220;
            box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
        }
        .btn-primary:hover {
            box-shadow: 0 6px 30px rgba(45, 212, 191, 0.5);
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        /* News */
        .news-list {
            max-width: 1100px;
            margin: 0 auto;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .news-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .news-item:hover {
            border-color: rgba(45, 212, 191, 0.4);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }
        .news-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--aurora-green);
            background: rgba(45, 212, 191, 0.1);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            text-decoration: none;
            align-self: flex-start;
            margin-bottom: 0.6rem;
            border: 1px solid rgba(45, 212, 191, 0.2);
        }
        .news-date {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        .news-item h3 {
            font-size: 1.15rem;
            margin-bottom: 0.6rem;
        }
        .news-item p {
            font-size: 0.92rem;
            flex: 1;
        }
        .read-more {
            color: var(--aurora-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            margin-top: 0.8rem;
            align-self: flex-start;
            transition: color 0.3s;
        }
        .read-more:hover {
            color: var(--aurora-green);
        }
        /* FAQ */
        .faq-section {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 1.5rem 2rem;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: rgba(56, 189, 248, 0.3);
        }
        .faq-question {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .faq-question::before {
            content: '❓';
            font-size: 1.1rem;
        }
        .faq-answer {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
            padding-left: 1.8rem;
        }
        /* Footer */
        .footer {
            background: #060d18;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 3rem 2rem 1.5rem;
            margin-top: 5rem;
            text-align: center;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: left;
            margin-bottom: 2rem;
        }
        .footer-col h3 {
            font-size: 1rem;
            color: var(--text-main);
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            margin-right: 1rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--aurora-green);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 1.2rem;
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .footer-bottom a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-bottom a:hover {
            color: var(--aurora-green);
        }
        @media (max-width: 768px) {
            .stats-grid,
            .advantages-grid,
            .coverage-grid,
            .events-grid,
            .insights-grid,
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }
            .story-content {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .timeline {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .navbar {
                padding: 0.6rem 0.5rem;
            }
            .nav-links a {
                font-size: 0.8rem;
                padding: 0.35rem 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid,
            .advantages-grid,
            .coverage-grid,
            .events-grid,
            .insights-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }