* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
body {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(124,58,237,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(240,171,252,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0f0524 0%, #2e1065 50%, #7c3aed 100%);
  background-attachment: fixed;
  color: #f3e8ff;
  line-height: 1.7;
  min-height: 100vh;
}
a {
  color: #f0abfc;
  text-decoration: none;
  transition: color .3s ease;
}
a:hover {
  color: #fde8ff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,5,36,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240,171,252,0.2);
}
.nav-links {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 16px;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  color: #e9d5ff;
  font-size: 15px;
  font-weight: 500;
  transition: all .3s ease;
}
.nav-links a:hover {
  background: rgba(124,58,237,0.35);
  color: #fff;
  box-shadow: 0 0 20px rgba(240,171,252,0.2);
}
.section {
  padding: 60px 20px;
}
.section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #f0abfc, #c084fc, #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  text-align: center;
  margin-bottom: 32px;
  opacity: 0.85;
  font-size: 16px;
}
.card {
  position: relative;
  background: linear-gradient(145deg, rgba(124,58,237,0.18), rgba(46,16,101,0.5));
  border: 1px solid rgba(240,171,252,0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 30px rgba(124,58,237,0.1);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 35px rgba(240,171,252,0.15);
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fde8ff;
}
.card p {
  font-size: 15px;
  opacity: 0.85;
}
.hero {
  text-align: center;
  padding: 80px 20px 60px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #f0abfc, #ffffff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 17px;
  max-width: 860px;
  margin: 0 auto;
  opacity: 0.92;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #f0abfc, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 15px;
  margin-top: 8px;
  opacity: 0.85;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.tag {
  display: inline-block;
  background: rgba(240,171,252,0.2);
  color: #f0abfc;
  border: 1px solid rgba(240,171,252,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  margin-bottom: 10px;
}
.teams {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 14px;
  color: #fff;
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #2e1065);
  color: #fff;
  border-radius: 24px;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(240,171,252,0.3);
  transition: all .3s;
}
.btn:hover {
  box-shadow: 0 4px 20px rgba(240,171,252,0.3);
  transform: translateY(-2px);
}
.rankings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.rankings-grid ol {
  padding-left: 20px;
  margin-top: 8px;
}
.rankings-grid li {
  font-size: 16px;
  margin-bottom: 8px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.highlight-card img {
  height: 200px;
  object-fit: cover;
}
.replay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.replay-grid img {
  height: 200px;
  object-fit: cover;
}
.download-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}
.download-box img {
  max-width: 360px;
  margin: 0 auto 20px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-meta {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 12px;
}
.news-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-item .news-date {
  display: inline-block;
  font-size: 14px;
  color: #f0abfc;
  margin-bottom: 8px;
}
.news-item h3 {
  margin-bottom: 8px;
}
.news-item h3 a {
  color: #fde8ff;
}
.news-item h3 a:hover {
  color: #f0abfc;
}
.news-item p {
  font-size: 15px;
}
.faq-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fde8ff;
}
.faq-item p {
  font-size: 15px;
}
.site-footer {
  background: rgba(15,5,36,0.9);
  border-top: 1px solid rgba(240,171,252,0.2);
  padding: 40px 20px 20px;
  text-align: center;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer a {
  color: #c084fc;
}
.site-footer a:hover {
  color: #f0abfc;
}
.footer-icp span {
  margin: 0 8px;
  opacity: 0.85;
  font-size: 14px;
}
.footer-copy {
  opacity: 0.7;
  font-size: 14px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .section {
    padding: 40px 16px;
  }
}