* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
body {
  background: linear-gradient(135deg, #1a0a2e 0%, #3b0764 50%, #1a0a2e 100%);
  color: #e9d5f5;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { font-family: inherit; }
p, h1, h2, h3, h4, span, div, section, footer, header, nav, article, li { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 导航 ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15, 5, 30, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(216, 180, 254, 0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #d8b4fe;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.nav-links a:hover {
  color: #ffffff;
  background: rgba(216, 180, 254, 0.15);
  transform: translateY(-1px);
}
.nav-links a:first-child {
  color: #ffffff;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* ===== 通用 ===== */
section { padding: 80px 0; position: relative; }
h2 {
  color: #d8b4fe;
  font-size: 34px;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d8b4fe, transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: rgba(233, 213, 245, 0.65);
  margin-bottom: 44px;
  font-size: 15px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero ===== */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(216, 180, 254, 0.5);
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 180, 254, 0.12);
  border: 1px solid rgba(216, 180, 254, 0.25);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 14px;
  color: #d8b4fe;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-img-wrap {
  max-width: 220px;
  margin: 40px auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(216, 180, 254, 0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-img-wrap img {
  width: 100%;
  display: block;
}

/* ===== GEO ===== */
.geo-intro {
  background: rgba(26, 10, 46, 0.4);
  border-top: 1px solid rgba(216, 180, 254, 0.08);
  border-bottom: 1px solid rgba(216, 180, 254, 0.08);
}
.geo-content {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.4), rgba(26, 10, 46, 0.6));
  border: 1px solid rgba(216, 180, 254, 0.1);
  border-radius: 20px;
  padding: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(233, 213, 245, 0.9);
  text-align: left;
}

/* ===== 数据统计 ===== */
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.85), rgba(26, 10, 46, 0.92));
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 20px;
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d8b4fe, #8b5cf6, #d8b4fe);
  border-radius: 0 0 4px 4px;
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.stat-icon { font-size: 36px; margin-bottom: 12px; }
.stat-num {
  font-size: 42px;
  font-weight: 700;
  color: #d8b4fe;
  margin-bottom: 6px;
  line-height: 1.2;
}
.stat-label { font-size: 14px; color: rgba(233, 213, 245, 0.75); }

/* ===== 核心优势 ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.75), rgba(26, 10, 46, 0.88));
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(216, 180, 254, 0.4);
}
.adv-icon {
  width: 60px;
  height: 60px;
  background: rgba(216, 180, 254, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(216, 180, 254, 0.2);
}
.adv-card h3 { color: #ffffff; font-size: 20px; margin-bottom: 10px; }
.adv-card p { color: rgba(233, 213, 245, 0.75); font-size: 14px; line-height: 1.6; }

/* ===== 品牌故事 ===== */
.brand-story {
  background: rgba(26, 10, 46, 0.3);
  border-top: 1px solid rgba(216, 180, 254, 0.08);
  border-bottom: 1px solid rgba(216, 180, 254, 0.08);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-img {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(216, 180, 254, 0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.story-img img { width: 100%; display: block; }
.story-text h3 { color: #d8b4fe; font-size: 22px; margin-bottom: 16px; }
.story-text p { color: rgba(233, 213, 245, 0.8); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }

/* ===== 焦点赛事 ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.8), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(216, 180, 254, 0.4);
}
.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.event-card h3 { color: #ffffff; font-size: 19px; margin-bottom: 10px; }
.event-card p { color: rgba(233, 213, 245, 0.75); font-size: 14px; line-height: 1.6; }
.event-tag {
  display: inline-block;
  background: rgba(216, 180, 254, 0.15);
  color: #d8b4fe;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.event-tag:hover { background: rgba(216, 180, 254, 0.3); color: #fff; }

/* ===== 新闻 ===== */
.news-list {
  background: rgba(26, 10, 46, 0.3);
  border-top: 1px solid rgba(216, 180, 254, 0.08);
  border-bottom: 1px solid rgba(216, 180, 254, 0.08);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-card {
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(216, 180, 254, 0.12);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d8b4fe, #8b5cf6);
  opacity: 0.6;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.news-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.news-date {
  background: rgba(216, 180, 254, 0.12);
  color: #d8b4fe;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 500;
}
.news-tag {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  text-decoration: none;
}
.news-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-summary {
  color: rgba(233, 213, 245, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== 用户口碑 ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.testi-card .quote {
  font-size: 40px;
  color: rgba(216, 180, 254, 0.4);
  margin-bottom: 12px;
  line-height: 1;
}
.testi-card p {
  color: rgba(233, 213, 245, 0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(216, 180, 254, 0.1);
  padding-top: 16px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.testi-name { color: #d8b4fe; font-size: 15px; font-weight: 500; }
.testi-pos { color: rgba(233, 213, 245, 0.6); font-size: 13px; }

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(145deg, rgba(59, 7, 100, 0.6), rgba(26, 10, 46, 0.85));
  border: 1px solid rgba(216, 180, 254, 0.12);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 26px 30px;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(216, 180, 254, 0.3); }
.faq-q {
  font-size: 17px;
  font-weight: 600;
  color: #d8b4fe;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-a {
  color: rgba(233, 213, 245, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 7, 100, 0.6), rgba(26, 10, 46, 0.8));
  border-top: 1px solid rgba(216, 180, 254, 0.1);
  border-bottom: 1px solid rgba(216, 180, 254, 0.1);
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta-inner h2 { color: #ffffff; }
.cta-inner p { color: rgba(233, 213, 245, 0.8); font-size: 16px; margin-bottom: 30px; }
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn-primary {
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}
.cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5); }
.cta-btn-secondary {
  background: rgba(216, 180, 254, 0.1);
  color: #d8b4fe;
  border: 1px solid rgba(216, 180, 254, 0.3);
}
.cta-btn-secondary:hover { background: rgba(216, 180, 254, 0.2); transform: translateY(-2px); }

/* ===== 页脚 ===== */
.footer {
  background: rgba(8, 2, 15, 0.95);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(216, 180, 254, 0.1);
  text-align: center;
}
.footer-brand { font-size: 22px; color: #d8b4fe; font-weight: 700; margin-bottom: 12px; }
.footer-info { color: rgba(233, 213, 245, 0.6); font-size: 14px; margin-bottom: 6px; }
.footer-links { margin: 18px 0; }
.footer-links a {
  color: #d8b4fe;
  text-decoration: none;
  font-size: 14px;
  margin: 0 12px;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #ffffff; }
.footer-copy { color: rgba(233, 213, 245, 0.45); font-size: 13px; margin-top: 10px; }

/* ===== 响应式 ===== */
@media (max-width: 992px) {
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { height: auto; padding: 10px; gap: 4px; }
  .nav-links a { padding: 8px 12px; font-size: 13px; }
  .hero h1 { font-size: 32px; }
  .stats-wrap { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}