* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
body {
    background: linear-gradient(135deg, #160b2e 0%, #2e1065 35%, #4c1d95 70%, #2e1065 100%);
    min-height: 100vh;
    color: #f8fafc;
    line-height: 1.7;
    overflow-x: hidden;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(12, 6, 32, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(240, 171, 252, 0.2);
}
.nav-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #f0abfc, #c4b5fd, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-links a {
    color: #f8fafc;
    text-decoration: none;
    margin-left: 26px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f0abfc;
}
.hero {
    padding: 150px 0 80px;
    position: relative;
    background: radial-gradient(ellipse at 20% 60%, rgba(124, 58, 237, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(240, 171, 252, 0.25) 0%, transparent 55%);
    text-align: center;
}
.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #f0abfc, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1.15rem;
    color: #d8c6ff;
    max-width: 760px;
    margin: 0 auto 32px;
}
.hero-img {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.hero-img img {
    width: 160px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(240, 171, 252, 0.3);
    transition: transform 0.4s;
}
.hero-img img:hover {
    transform: translateY(-6px) scale(1.03);
}
.geo-intro {
    padding: 70px 0;
    background: rgba(20, 10, 50, 0.4);
    border-top: 1px solid rgba(240, 171, 252, 0.15);
    border-bottom: 1px solid rgba(240, 171, 252, 0.15);
}
.geo-intro h1 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #f0abfc, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.3;
}
.geo-intro p {
    color: #ddd0ff;
    max-width: 1080px;
    margin: 0 auto;
}
.stats-section {
    padding: 70px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(46, 16, 101, 0.5) 100%);
    border: 1px solid rgba(240, 171, 252, 0.25);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: "";
    position: absolute;
    inset: -50% -20%;
    background: conic-gradient(from 90deg, transparent, rgba(240, 171, 252, 0.2), transparent, rgba(124, 58, 237, 0.2), transparent);
    animation: spin 8s linear infinite;
}
.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f0abfc;
    position: relative;
}
.stat-card p {
    color: #c4b5fd;
    font-size: 0.95rem;
    position: relative;
    margin-top: 8px;
}
.advantages-section {
    padding: 70px 0;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 171, 252, 0.18);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(124, 58, 237, 0.4);
}
.advantage-card .icon {
    font-size: 2.6rem;
    margin-bottom: 16px;
}
.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #f0abfc;
}
.advantage-card p {
    color: #d3c7f5;
    font-size: 0.95rem;
}
.events-section {
    padding: 70px 0;
    background: rgba(15, 8, 40, 0.5);
    border-top: 1px solid rgba(240, 171, 252, 0.12);
    border-bottom: 1px solid rgba(240, 171, 252, 0.12);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.event-card {
    background: linear-gradient(140deg, rgba(76, 29, 149, 0.5) 0%, rgba(20, 10, 50, 0.6) 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(240, 171, 252, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}
.event-card:hover {
    border-color: #f0abfc;
    transform: scale(1.02);
}
.event-card img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    object-fit: cover;
}
.event-card h4 {
    font-size: 1.1rem;
    color: #f0abfc;
    margin-bottom: 6px;
}
.event-card span {
    color: #b9a8f5;
    font-size: 0.85rem;
}
.brand-story {
    padding: 70px 0;
}
.brand-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.brand-flex img {
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(240, 171, 252, 0.3);
}
.brand-text h3 {
    font-size: 1.9rem;
    color: #f0abfc;
    margin-bottom: 16px;
}
.brand-text p {
    color: #d3c7f5;
    max-width: 640px;
}
.timeline {
    padding: 70px 0;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.tl-item {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(240, 171, 252, 0.15);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
}
.tl-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 12px;
    height: 2px;
    background: #7c3aed;
}
.tl-item:last-child::after {
    display: none;
}
.tl-item h4 {
    font-size: 1.7rem;
    color: #f0abfc;
    font-weight: 800;
}
.tl-item p {
    color: #c4b5fd;
    font-size: 0.9rem;
    margin-top: 8px;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 44px;
    background: linear-gradient(90deg, #f0abfc, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.news-section {
    padding: 70px 0;
    background: rgba(15, 8, 40, 0.5);
    border-top: 1px solid rgba(240, 171, 252, 0.12);
    border-bottom: 1px solid rgba(240, 171, 252, 0.12);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.news-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(240, 171, 252, 0.16);
    border-radius: 18px;
    padding: 32px;
    transition: all 0.3s;
}
.news-card:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
    transform: translateY(-4px);
}
.news-card h3 {
    font-size: 1.2rem;
    color: #f0abfc;
    margin-bottom: 12px;
}
.news-card p {
    color: #d3c7f5;
    font-size: 0.92rem;
}
.faq-section {
    padding: 70px 0;
}
.faq-item {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(240, 171, 252, 0.15);
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: #f0abfc;
}
.faq-item h4 {
    font-size: 1.15rem;
    color: #f0abfc;
    margin-bottom: 12px;
}
.faq-item p {
    color: #d3c7f5;
    font-size: 0.95rem;
}
.download-section {
    padding: 70px 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25), transparent 70%);
    text-align: center;
}
.download-img img {
    width: 220px;
    border-radius: 24px;
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.5);
    margin: 24px auto;
    display: block;
}
.download-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    padding: 14px 44px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(240, 171, 252, 0.4);
}
.partners-section {
    padding: 70px 0;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.partner-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 32px 16px;
    border: 1px solid rgba(240, 171, 252, 0.1);
}
.partner-item span {
    font-size: 1.1rem;
    color: #c4b5fd;
    font-weight: 600;
}
.cta-section {
    padding: 90px 0;
    background: linear-gradient(90deg, #2e1065, #4c1d95, #2e1065);
    text-align: center;
}
.cta-section h2 {
    font-size: 2.2rem;
    color: #f0abfc;
    margin-bottom: 16px;
}
.cta-section p {
    color: #d3c7f5;
    max-width: 600px;
    margin: 0 auto 32px;
}
.footer {
    background: rgba(5, 3, 15, 0.9);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(240, 171, 252, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}
.footer h4 {
    color: #f0abfc;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.footer p,
.footer a {
    color: #a78bfa;
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: #f0abfc;
}
.footer-bottom {
    border-top: 1px solid rgba(240, 171, 252, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #8b7bbf;
    font-size: 0.85rem;
}
.footer-bottom a {
    margin: 0 10px;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 900px) {
    .stats-grid,
    .advantages-grid,
    .events-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .nav-links a {
        margin-left: 14px;
        font-size: 14px;
    }
    .hero h2 {
        font-size: 2.2rem;
    }
    .geo-intro h1 {
        font-size: 1.6rem;
    }
}
@media (max-width: 600px) {
    .stats-grid,
    .advantages-grid,
    .events-grid,
    .partners-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .nav-links a {
        margin-left: 8px;
        font-size: 12px;
    }
    .nav-inner {
        height: auto;
        padding: 12px 0;
        flex-direction: column;
        gap: 6px;
    }
    .navbar {
        position: static;
    }
    .hero {
        padding: 60px 0 40px;
    }
}