/* ===== Reset & Font ===== */
*, *::before, *::after {
    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, #fdf2f8 0%, #f5f3ff 50%, #fce7f3 100%);
    color: #2e1065;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all .3s ease; }
img { max-width: 100%; height: auto; display: block; }
section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 20px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 24px rgba(236,72,153,0.08);
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-links a {
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 15px;
    color: #6b21a8;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.7);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168,85,247,0.25);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 120px 20px 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(236,72,153,0.10), rgba(168,85,247,0.10)), radial-gradient(circle at 20% 30%, rgba(236,72,153,0.06), transparent 60%), radial-gradient(circle at 80% 70%, rgba(168,85,247,0.06), transparent 60%);
}
.hero h1 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
    line-height: 1.2;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(168,85,247,0.12));
    color: #7c3aed;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.geo-intro {
    max-width: 860px;
    margin: 0 auto 40px;
    padding: 36px 40px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 12px 48px rgba(168,85,247,0.08);
    font-size: 16.5px;
    line-height: 1.8;
    color: #5b21b6;
    text-align: left;
}
.hero-image {
    max-width: 560px;
    margin: 40px auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(236,72,153,0.18);
}

/* ===== Cards Container ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 20px;
}
.glass-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 12px 40px rgba(168,85,247,0.06);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(236,72,153,0.15);
}
.glass-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: inline-block;
}
.glass-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4c1d95;
}
.glass-card p {
    font-size: 14.5px;
    color: #6b21a8;
    line-height: 1.7;
}

/* ===== Story ===== */
.story-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    flex-wrap: wrap;
}
.story-image {
    flex: 1 1 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168,85,247,0.12);
}
.story-text {
    flex: 1 1 420px;
    font-size: 16px;
    line-height: 1.9;
    color: #5b21b6;
}
.story-text p { margin-bottom: 16px; }

/* ===== Stats ===== */
.stats-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(249,240,255,0.7));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 32px rgba(168,85,247,0.06);
}
.stat-num {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 14px;
    color: #7c3aed;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== Events ===== */
.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto;
}
.event-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 40px 32px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 12px 40px rgba(168,85,247,0.07);
    position: relative;
    text-align: center;
    transition: all .4s ease;
    overflow: hidden;
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    opacity: 0.85;
}
.event-card .event-icon { font-size: 48px; margin-bottom: 18px; }
.event-card h3 { font-size: 22px; font-weight: 700; color: #4c1d95; margin-bottom: 8px; }
.event-card p { color: #6b21a8; font-size: 14.5px; line-height: 1.7; }
.event-card .event-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(168,85,247,0.15));
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
}
.events-img {
    border-radius: 16px;
    margin-top: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* ===== Rankings ===== */
.rank-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px;
}
.rank-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.68);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 16px rgba(168,85,247,0.04);
    transition: all .35s ease;
}
.rank-item:hover { transform: translateX(8px); background: rgba(255,255,255,0.85); }
.rank-num {
    font-size: 26px;
    font-weight: 800;
    color: #c026d3;
    min-width: 46px;
    text-align: center;
}
.rank-name { flex: 1; font-size: 17px; font-weight: 600; color: #4c1d95; }
.rank-score { font-size: 14px; color: #7c3aed; font-weight: 500; }
.rank-img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== Testimonials ===== */
.testi-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.testi-card {
    background: rgba(255,255,255,0.64);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 12px 40px rgba(168,85,247,0.05);
    transition: all .35s ease;
}
.testi-card:hover { transform: scale(1.03); }
.testi-card .stars {
    font-size: 18px;
    color: #f59e0b;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.testi-card p { font-size: 15px; color: #5b21b6; line-height: 1.75; font-style: italic; }
.testi-card .author {
    margin-top: 18px;
    font-weight: 600;
    font-size: 14px;
    color: #8b5cf6;
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* ===== CTA ===== */
.cta-wrap {
    text-align: center;
    padding: 70px 30px;
    background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(168,85,247,0.15));
    border-radius: 36px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.cta-wrap h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-wrap p {
    font-size: 17px;
    color: #5b21b6;
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
.cta-btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(236,72,153,0.3);
    transition: all .35s ease;
}
.cta-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 40px rgba(168,85,247,0.4); }
.cta-img {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

/* ===== News ===== */
.news-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.news-card {
    display: flex;
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 12px 40px rgba(168,85,247,0.06);
    gap: 28px;
    transition: all .4s ease;
    flex-wrap: wrap;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(236,72,153,0.12); }
.news-image {
    flex: 1 1 220px;
    min-width: 200px;
    border-radius: 20px;
    overflow: hidden;
}
.news-image img { width: 100%; height: 100%; object-fit: cover; }
.news-content { flex: 3 1 380px; }
.news-tag {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(168,85,247,0.12));
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #c026d3;
    margin-bottom: 10px;
}
.news-content h3 { font-size: 20px; font-weight: 700; color: #3b0764; margin-bottom: 8px; line-height: 1.4; }
.news-date {
    display: block;
    font-size: 13.5px;
    color: #a78bfa;
    margin-bottom: 12px;
    font-weight: 500;
}
.news-date time { color: #8b5cf6; }
.news-excerpt { font-size: 15px; line-height: 1.8; color: #5b21b6; }
.news-more {
    display: inline-block;
    margin-top: 14px;
    color: #ec4899;
    font-weight: 600;
    font-size: 14px;
}
.news-more:hover { color: #a855f7; padding-left: 4px; }

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 16px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 30px rgba(168,85,247,0.04);
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    color: #4c1d95;
    position: relative;
    font-size: 17px;
}
.faq-question .q-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.faq-answer {
    padding: 0 28px 24px;
    color: #5b21b6;
    line-height: 1.85;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.4);
    margin: 0 28px;
    padding: 18px 0 22px;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, #3b0764, #4c1d95);
    color: #ddd6fe;
    padding: 60px 20px 30px;
    font-size: 14.5px;
    line-height: 2;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
}
.footer-brand {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #f9a8d4, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fdf4ff;
}
.footer-info p { color: #c4b5fd; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a {
    color: #c4b5fd;
    font-size: 14px;
}
.footer-links a:hover { color: #f0abfc; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #a78bfa;
    font-size: 13.5px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom a {
    color: #c4b5fd;
}
.footer-bottom a:hover { color: #f0abfc; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    section { padding: 60px 16px; }
    .hero h1 { font-size: 32px; }
    .section-title { font-size: 28px; }
    .geo-intro { padding: 24px 20px; font-size: 15px; }
    .story-wrap { gap: 28px; }
    .news-card { flex-direction: column; }
    .news-image { flex: auto; width: 100%; }
    .cta-wrap h3 { font-size: 26px; }
    .nav-links a { font-size: 14px; padding: 8px 16px; }
    .faq-question { font-size: 15px; padding: 18px 20px; }
}