* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background: linear-gradient(135deg, #2d1b69 0%, #0f0a1f 40%, #1a0f2e 100%);
        color: #e0e7ff;
        line-height: 1.7;
        min-height: 100vh;
        overflow-x: hidden;
    }
    a {
        color: inherit;
        text-decoration: none;
    }
    img {
        max-width: 100%;
        display: block;
        border-radius: 8px;
    }
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ===== NAVIGATION ===== */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(15, 10, 31, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(124, 58, 237, 0.25);
        box-shadow: 0 4px 30px rgba(45, 27, 105, 0.5);
    }
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1280px;
        margin: 0 auto;
        padding: 14px 24px;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .nav-links a {
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        color: #c4b5fd;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        letter-spacing: 0.3px;
    }
    .nav-links a:hover {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.2));
        border-color: rgba(124, 58, 237, 0.5);
        color: #ffffff;
        box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
        transform: translateY(-2px);
    }
    .nav-links a.active {
        background: linear-gradient(135deg, #7c3aed, #06b6d4);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    }

    /* ===== SECTION GENERIC ===== */
    .section {
        padding: 90px 24px;
        position: relative;
    }
    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }
    .section-header h2 {
        font-size: 34px;
        font-weight: 800;
        background: linear-gradient(90deg, #a78bfa, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    .section-header p {
        color: #94a3b8;
        font-size: 16px;
        max-width: 680px;
        margin: 0 auto;
    }

    /* ===== HERO ===== */
    .hero {
        padding-top: 140px;
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
        background: radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.3), transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.2), transparent 50%);
    }
    .hero-content {
        flex: 1 1 55%;
    }
    .hero-visual {
        flex: 1 1 35%;
        text-align: center;
    }
    .hero-visual img {
        border-radius: 20px;
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.4);
        border: 1px solid rgba(124, 58, 237, 0.3);
    }
    .hero h1 {
        font-size: 40px;
        font-weight: 900;
        line-height: 1.3;
        background: linear-gradient(90deg, #e9d5ff, #7c3aed, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        margin-bottom: 24px;
        text-shadow: 0 0 80px rgba(124, 58, 237, 0.3);
    }
    .geo-intro {
        font-size: 16px;
        color: #cbd5e1;
        line-height: 1.8;
        margin-bottom: 36px;
        border-left: 3px solid #7c3aed;
        padding-left: 20px;
        background: rgba(124, 58, 237, 0.05);
        border-radius: 0 12px 12px 0;
        padding: 16px 20px;
    }
    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .btn {
        padding: 14px 32px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        border: none;
    }
    .btn-primary {
        background: linear-gradient(135deg, #7c3aed, #06b6d4);
        color: #fff;
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    }
    .btn-primary:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
    }
    .btn-secondary {
        background: rgba(255, 255, 255, 0.08);
        color: #a78bfa;
        border: 1px solid rgba(124, 58, 237, 0.4);
        backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
        background: rgba(124, 58, 237, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    }

    /* ===== STATS ===== */
    .stats-section {
        background: linear-gradient(180deg, transparent, rgba(45, 27, 105, 0.4));
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .stat-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 16px;
        box-shadow: 0 0 25px rgba(124, 58, 237, 0.12);
        padding: 30px 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .stat-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 0 45px rgba(124, 58, 237, 0.35);
    }
    .stat-number {
        display: block;
        font-size: 42px;
        font-weight: 900;
        background: linear-gradient(135deg, #a78bfa, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 6px;
    }
    .stat-label {
        font-size: 14px;
        color: #94a3b8;
        letter-spacing: 1px;
    }

    /* ===== FEATURE CARDS ===== */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 18px;
        box-shadow: 0 0 25px rgba(124, 58, 237, 0.1);
        padding: 32px 28px;
        display: flex;
        gap: 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .feature-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .feature-card:hover::before {
        opacity: 1;
    }
    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.4);
        border-color: rgba(6, 182, 212, 0.5);
    }
    .feature-icon {
        font-size: 40px;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.2));
        border-radius: 16px;
        border: 1px solid rgba(124, 58, 237, 0.3);
    }
    .feature-card h3 {
        font-size: 18px;
        color: #e9d5ff;
        margin-bottom: 8px;
        font-weight: 700;
    }
    .feature-card p {
        font-size: 14px;
        color: #94a3b8;
        line-height: 1.7;
    }

    /* ===== BRAND STORY ===== */
    .story-section {
        background: linear-gradient(135deg, rgba(45, 27, 105, 0.4), transparent);
    }
    .story-wrapper {
        display: flex;
        gap: 50px;
        align-items: center;
        flex-wrap: wrap;
    }
    .story-image {
        flex: 1 1 40%;
        position: relative;
    }
    .story-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(45, 27, 105, 0.6);
        border: 1px solid rgba(124, 58, 237, 0.3);
    }
    .story-content {
        flex: 1 1 50%;
    }
    .story-content h2 {
        font-size: 32px;
        font-weight: 800;
        background: linear-gradient(90deg, #a78bfa, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }
    .story-content p {
        color: #94a3b8;
        margin-bottom: 16px;
        line-height: 1.8;
    }

    /* ===== BRAND STORY ===== */
    .story-section {
        background: linear-gradient(135deg, rgba(45, 27, 105, 0.4), transparent);
    }
    .story-wrapper {
        display: flex;
        gap: 50px;
        align-items: center;
        flex-wrap: wrap;
    }
    .story-image {
        flex: 1 1 40%;
        position: relative;
    }
    .story-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(45, 27, 105, 0.6);
        border: 1px solid rgba(124, 58, 237, 0.3);
    }
    .story-content {
        flex: 1 1 50%;
    }
    .story-content h2 {
        font-size: 32px;
        font-weight: 800;
        background: linear-gradient(90deg, #a78bfa, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }
    .story-content p {
        color: #94a3b8;
        margin-bottom: 16px;
        line-height: 1.8;
    }

    /* ===== COVERAGE ===== */
    .coverage-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    .coverage-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.25);
        border-radius: 16px;
        padding: 26px 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    .coverage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 35px rgba(6, 182, 212, 0.3);
        border-color: rgba(6, 182, 212, 0.5);
    }
    .coverage-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin: 0 auto 14px;
        border-radius: 12px;
    }
    .coverage-card h4 {
        color: #e9d5ff;
        font-size: 16px;
        margin-bottom: 4px;
    }
    .coverage-card span {
        color: #94a3b8;
        font-size: 13px;
    }

    /* ===== RANKINGS ===== */
    .rankings-table {
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 20px;
        padding: 30px;
    }
    .ranking-item {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 16px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: background 0.3s ease;
    }
    .ranking-item:last-child {
        border-bottom: none;
    }
    .ranking-item:hover {
        background: rgba(124, 58, 237, 0.1);
        border-radius: 12px;
    }
    .rank-num {
        font-size: 22px;
        font-weight: 900;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #7c3aed, #06b6d4);
        border-radius: 50%;
        color: #fff;
        flex-shrink: 0;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    }
    .rank-img {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        object-fit: cover;
        flex-shrink: 0;
    }
    .rank-info {
        flex: 1;
    }
    .rank-info h4 {
        color: #e9d5ff;
        font-size: 16px;
    }
    .rank-info p {
        color: #94a3b8;
        font-size: 13px;
    }
    .rank-heat {
        color: #06b6d4;
        font-size: 15px;
        font-weight: 700;
    }

    /* ===== HIGHLIGHTS ===== */
    .highlight-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .highlight-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(124, 58, 237, 0.3);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        aspect-ratio: 16/9;
    }
    .highlight-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .highlight-card:hover img {
        transform: scale(1.05);
    }
    .highlight-card:hover {
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
        border-color: rgba(6, 182, 212, 0.5);
    }
    .highlight-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 16px 14px;
        background: linear-gradient(transparent, rgba(15, 10, 31, 0.9));
        color: #e9d5ff;
        font-size: 14px;
        font-weight: 600;
    }

    /* ===== PARTNERS ===== */
    .partner-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        align-items: center;
    }
    .partner-logo {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 12px;
        padding: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        height: 80px;
    }
    .partner-logo:hover {
        background: rgba(124, 58, 237, 0.15);
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    }
    .partner-logo img {
        max-height: 48px;
        width: auto;
        object-fit: contain;
        border-radius: 0;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.25);
        border-radius: 20px;
        padding: 28px;
        position: relative;
        transition: all 0.3s ease;
    }
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 80px;
        color: rgba(124, 58, 237, 0.2);
        font-family: Georgia, serif;
        line-height: 1;
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.35);
        border-color: rgba(6, 182, 212, 0.4);
    }
    .testimonial-card p {
        color: #cbd5e1;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
        position: relative;
        z-index: 1;
    }
    .testimonial-user {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, #7c3aed, #06b6d4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }
    .testimonial-user .name {
        color: #e9d5ff;
        font-size: 14px;
        font-weight: 600;
    }
    .testimonial-user .role {
        color: #94a3b8;
        font-size: 12px;
    }

    /* ===== NEWS ===== */
    .news-section {
        background: linear-gradient(180deg, transparent, rgba(45, 27, 105, 0.3));
    }
    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .news-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.4);
        border-color: rgba(6, 182, 212, 0.5);
    }
    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }
    .news-body {
        padding: 20px;
        flex: 1;
    }
    .news-date {
        display: inline-block;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.2));
        border: 1px solid rgba(124, 58, 237, 0.4);
        border-radius: 20px;
        padding: 3px 14px;
        font-size: 13px;
        color: #a78bfa;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .news-tag {
        display: inline-block;
        background: rgba(6, 182, 212, 0.2);
        border: 1px solid rgba(6, 182, 212, 0.4);
        color: #22d3ee;
        border-radius: 20px;
        padding: 3px 12px;
        font-size: 12px;
        margin-left: 8px;
        font-weight: 500;
    }
    .news-card h3 {
        font-size: 18px;
        color: #e9d5ff;
        margin-bottom: 10px;
        line-height: 1.4;
        font-weight: 700;
    }
    .news-card p {
        font-size: 14px;
        color: #94a3b8;
        line-height: 1.75;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    /* ===== CTA ===== */
    .cta-section {
        background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.4), transparent 70%);
        text-align: center;
        padding: 90px 24px;
    }
    .cta-section h2 {
        font-size: 36px;
        font-weight: 900;
        background: linear-gradient(90deg, #e9d5ff, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 16px;
    }
    .cta-section p {
        color: #94a3b8;
        font-size: 16px;
        max-width: 560px;
        margin: 0 auto 32px;
    }
    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ===== FAQ ===== */
    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    .faq-item {
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(124, 58, 237, 0.25);
        border-radius: 16px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .faq-item:hover {
        border-color: rgba(6, 182, 212, 0.5);
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    }
    .faq-question {
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        color: #e9d5ff;
        background: rgba(124, 58, 237, 0.08);
        border: none;
        width: 100%;
        text-align: left;
        font-family: inherit;
        transition: background 0.3s ease;
    }
    .faq-question:hover {
        background: rgba(124, 58, 237, 0.15);
    }
    .faq-question .faq-icon {
        color: #7c3aed;
        font-size: 22px;
        font-weight: 400;
        transition: transform 0.3s ease;
    }
    .faq-item.open .faq-icon {
        transform: rotate(45deg);
    }
    .faq-answer {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        color: #94a3b8;
        font-size: 14px;
        line-height: 1.8;
    }
    .faq-item.open .faq-answer {
        padding: 20px 24px;
        max-height: 800px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
        background: rgba(15, 10, 31, 0.95);
        border-top: 1px solid rgba(124, 58, 237, 0.3);
        padding: 60px 24px 30px;
        position: relative;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1280px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .footer-col h4 {
        color: #e9d5ff;
        font-size: 16px;
        margin-bottom: 16px;
        font-weight: 700;
    }
    .footer-col p, .footer-col a {
        color: #94a3b8;
        font-size: 14px;
        line-height: 1.8;
        display: block;
    }
    .footer-col a:hover {
        color: #a78bfa;
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 24px;
        text-align: center;
        font-size: 13px;
        color: #64748b;
        max-width: 1280px;
        margin: 0 auto;
    }
    .footer-bottom a {
        color: #7c3aed;
        margin: 0 6px;
    }
    .footer-bottom a:hover {
        text-decoration: underline;
    }
    .footer-info {
        color: #64748b;
        line-height: 1.8;
        font-size: 13px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .stats-grid, .coverage-grid, .partner-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .highlight-grid, .testimonial-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .feature-grid, .news-grid {
            grid-template-columns: 1fr;
        }
        .hero h1 {
            font-size: 30px;
        }
    }
    @media (max-width: 768px) {
        .nav-inner {
            flex-direction: column;
            gap: 10px;
        }
        .hero {
            padding-top: 180px;
        }
        .hero h1 {
            font-size: 26px;
        }
        .stats-grid, .coverage-grid, .partner-grid, .highlight-grid, .testimonial-grid {
            grid-template-columns: 1fr;
        }
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }