* {
    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, #3b0764 0%, #1a0a2e 70%, #12061f 100%);
    color: #f5f3ff;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; position: relative; }

/* navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 8, 36, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 180, 254, 0.14);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 28px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #f5f3ff;
    text-decoration: none;
    letter-spacing: 1px;
}
.brand-logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
    color: #d8b4fe;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}
.nav-links a:hover { color: #ffffff; }

/* hero */
.hero {
    padding: 100px 0 80px;
    background: radial-gradient(ellipse at 70% 20%, rgba(216,180,254,0.18) 0%, transparent 55%);
}
.hero .container {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 300px; }
.hero-content h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #f5f3ff, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 18px;
    color: #c4b5fd;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-image { flex: 1; min-width: 300px; text-align: center; }
.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(216,180,254,0.25);
}
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 14px;
    border: 2px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, #d8b4fe, #a855f7);
    color: #1a0a2e;
    box-shadow: 0 8px 30px rgba(168,85,247,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(168,85,247,0.5); }
.btn-outline {
    border-color: #d8b4fe;
    color: #d8b4fe;
    background: transparent;
}
.btn-outline:hover { background: rgba(216,180,254,0.12); transform: translateY(-2px); }

/* geo-intro */
.geo-intro { border-bottom: 1px solid rgba(216,180,254,0.1); }
.geo-intro h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.geo-intro p {
    font-size: 16px;
    color: #d6c7ee;
    max-width: 960px;
    line-height: 1.9;
}

/* stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(216,180,254,0.18);
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.stat-icon { font-size: 42px; display: block; margin-bottom: 14px; }
.stat-card h3 { font-size: 28px; color: #f5f3ff; margin-bottom: 6px; }
.stat-card p { color: #a78bfa; font-size: 15px; }

/* section titles */
.section-title {
    font-size: 34px;
    margin-bottom: 14px;
    text-align: center;
    background: linear-gradient(135deg, #fff, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    text-align: center;
    color: #a78bfa;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.advantage-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(216,180,254,0.15);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.3s ease;
}
.advantage-card:hover { transform: translateY(-4px); border-color: rgba(216,180,254,0.4); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.advantage-card span { font-size: 36px; display: block; margin-bottom: 14px; }
.advantage-card h3 { font-size: 20px; color: #f5f3ff; margin-bottom: 8px; }
.advantage-card p { color: #c4b5fd; font-size: 14px; line-height: 1.7; }

/* brand-story */
.brand-story { background: rgba(0,0,0,0.15); }
.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.story-content img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    border: 1px solid rgba(216,180,254,0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.story-text flex { flex: 1; min-width: 300px; }
.story-text h3 { font-size: 26px; margin-bottom: 16px; color: #f5f3ff; }
.story-text p { color: #d6c7ee; font-size: 15px; line-height: 1.9; margin-bottom: 16px; }

/* events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.event-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(216,180,254,0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.event-card img { width: 100%; height: 180px; object-fit: cover; border-bottom: 1px solid rgba(216,180,254,0.1); }
.event-card-body { padding: 24px; }
.event-card-body h3 { font-size: 20px; color: #f5f3ff; margin-bottom: 8px; }
.event-card-body p { color: #c4b5fd; font-size: 14px; }

/* rankings */
.rankings { background: rgba(0,0,0,0.12); }
.rankings-list { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto 32px; }
.rank-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(216,180,254,0.12);
    border-radius: 14px;
    padding: 20px 24px;
    transition: background 0.3s;
}
.rank-item:hover { background: rgba(216,180,254,0.08); }
.rank-pos { font-size: 28px; width: 48px; text-align: center; }
.rank-info { flex: 1; }
.rank-info h4 { color: #f5f3ff; font-size: 18px; }
.rank-info p { color: #a78bfa; font-size: 13px; }
.rank-btn { color: #d8b4fe; text-decoration: none; font-weight: 600; font-size: 14px; border: 1px solid rgba(216,180,254,0.3); padding: 8px 20px; border-radius: 30px; transition: all 0.3s; }
.rank-btn:hover { background: rgba(216,180,254,0.15); }

/* news */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(216,180,254,0.15);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.news-card img { width: 100%; height: 190px; object-fit: cover; border-bottom: 1px solid rgba(216,180,254,0.1); }
.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-date {
    font-size: 13px;
    color: #d8b4fe;
    background: rgba(216,180,254,0.12);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
}
.news-body h3 { font-size: 18px; color: #f5f3ff; margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 13px; color: #c4b5fd; line-height: 1.7; flex: 1; }
.news-tag {
    display: inline-block;
    margin-top: 14px;
    color: #a78bfa;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
}
.news-tag:hover { color: #d8b4fe; }
.news-more {
    text-align: center;
    margin-top: 40px;
}

/* testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(216,180,254,0.12);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}
.testimonial-card .quote { font-size: 42px; color: #d8b4fe; margin-bottom: 12px; }
.testimonial-card p { color: #d6c7ee; font-size: 14px; line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { color: #a78bfa; font-size: 14px; font-weight: 600; }

/* cta */
.cta {
    background: radial-gradient(ellipse at center, rgba(168,85,247,0.2) 0%, transparent 70%);
    text-align: center;
}
.cta h2 { font-size: 36px; color: #f5f3ff; margin-bottom: 14px; }
.cta p { color: #c4b5fd; font-size: 16px; max-width: 540px; margin: 0 auto 32px; }
.cta img { max-width: 280px; width: 100%; border-radius: 16px; margin-bottom: 24px; box-shadow: 0 12px 36px rgba(0,0,0,0.4); border: 1px solid rgba(216,180,254,0.2); }

/* faq */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(216,180,254,0.12);
    border-radius: 16px;
    padding: 28px 30px;
    margin-bottom: 18px;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(216,180,254,0.35); }
.faq-item h3 { font-size: 18px; color: #e9d5ff; margin-bottom: 12px; }
.faq-item p { font-size: 14px; color: #c4b5fd; line-height: 1.8; }

/* footer */
.footer {
    background: #0e0518;
    border-top: 1px solid rgba(216,180,254,0.12);
    padding: 48px 0 28px;
}
.footer-info { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; font-size: 14px; color: #a78bfa; }
.footer-links { margin-bottom: 18px; }
.footer-links a { color: #d8b4fe; text-decoration: none; font-size: 14px; margin: 0 8px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #6d28d9; font-size: 14px; border-top: 1px solid rgba(216,180,254,0.08); padding-top: 20px; }

/* responsive */
@media (max-width: 900px) {
    .stats-grid, .advantages-grid, .events-grid, .news-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h2 { font-size: 32px; }
}
@media (max-width: 600px) {
    .stats-grid, .advantages-grid, .events-grid, .news-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 12px; flex-wrap: wrap; }
    .geo-intro h1 { font-size: 28px; }
    .section-title { font-size: 28px; }
    .hero { padding: 60px 0; }
}