* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 40%, #e0e7ff 100%);
  color: #1e1b4b;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* 导航栏 */
.site-nav {
  background: linear-gradient(90deg, #2e1065 0%, #6d28d9 50%, #7c3aed 100%);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 28px rgba(46, 16, 101, 0.45);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(240, 171, 252, 0.5);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: #f5f3ff;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
}
.nav-links a:hover {
  background: rgba(240, 171, 252, 0.2);
  border-color: rgba(240, 171, 252, 0.4);
  box-shadow: 0 0 20px rgba(240, 171, 252, 0.2);
  color: #fff;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 80px 32px 60px;
  background: radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.2), transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(240, 171, 252, 0.18), transparent 50%),
              linear-gradient(135deg, #2e1065 0%, #4c1d95 40%, #7c3aed 100%);
  text-align: center;
  color: #f5f3ff;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 220%;
  background: conic-gradient(from 0deg, rgba(124,58,237,0.08), rgba(240,171,252,0.15), rgba(124,58,237,0.08), rgba(240,171,252,0.1), rgba(124,58,237,0.08));
  animation: nebulaSpin 35s linear infinite;
  pointer-events: none;
}
@keyframes nebulaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #f5f3ff 0%, #f0abfc 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(240, 171, 252, 0.3);
}
.hero-content .geo-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 243, 255, 0.85);
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(240,171,252,0.2);
  backdrop-filter: blur(8px);
  text-align: left;
}

/* 通用容器 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 64px 0; }

/* 区块标题 */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #2e1065;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 14px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #7c3aed, #f0abfc, #7c3aed);
}
.section-sub {
  text-align: center;
  color: #6b7280;
  max-width: 640px;
  margin: 10px auto 40px;
  font-size: 15px;
}

/* 卡片 */
.card {
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(240,171,252,0.08));
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.15);
  box-shadow: 0 10px 40px rgba(46,16,101,0.08);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.35);
}
.card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(from 90deg, rgba(124,58,237,0.03), rgba(240,171,252,0.06), rgba(124,58,237,0.03));
  animation: cardSpin 25s linear infinite;
  pointer-events: none;
}
@keyframes cardSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.card > * { position: relative; z-index: 1; }

/* 比分直播 */
.score-section {
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
}
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.match-card {
  text-align: center;
}
.match-teams {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 16px;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.team img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124,58,237,0.3);
}
.team span {
  font-size: 13px;
  font-weight: 600;
  color: #4c1d95;
}
.match-score {
  font-size: 26px;
  font-weight: 900;
  color: #2e1065;
  background: linear-gradient(90deg, #7c3aed, #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(124,58,237,0.2);
}
.match-status {
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
  background: rgba(124,58,237,0.06);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
}

/* 数据统计 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat-label {
  color: #6b7280;
  font-size: 14px;
  margin-top: 8px;
}

/* 核心优势 */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card {
  text-align: center;
  padding: 36px 24px;
}
.adv-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7c3aed, #2e1065);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(124,58,237,0.35);
  border: 1px solid rgba(240,171,252,0.4);
}
.adv-icon img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.adv-card h3 {
  font-size: 18px;
  color: #2e1065;
  margin-bottom: 10px;
  font-weight: 700;
}
.adv-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* 品牌故事 */
.story-section {
  background: linear-gradient(135deg, #2e1065 0%, #4c1d95 50%, #2e1065 100%);
  color: #f5f3ff;
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  top: -80%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(240,171,252,0.15), transparent 60%);
  animation: nebulaSpin 40s linear infinite;
  pointer-events: none;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.story-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(245,243,255,0.85);
  margin-bottom: 16px;
}
.story-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(240,171,252,0.2);
}

/* 焦点赛事 */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(240,171,252,0.1));
  border: 1px solid rgba(124,58,237,0.12);
  transition: all 0.4s ease;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.2);
}
.event-cover {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.event-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover .event-cover img {
  transform: scale(1.08);
}
.event-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(90deg, #7c3aed, #c084fc);
  color: #fff;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.event-body {
  padding: 20px 24px 24px;
}
.event-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #2e1065;
  margin-bottom: 8px;
}
.event-body p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
}

/* 新闻 */
.news-section {
  background: linear-gradient(180deg, #ede9fe 0%, #f5f3ff 100%);
}
.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.news-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(124,58,237,0.1);
  box-shadow: 0 6px 30px rgba(46,16,101,0.06);
  transition: all 0.4s ease;
}
.news-card:hover {
  box-shadow: 0 14px 44px rgba(124,58,237,0.15);
  transform: translateY(-4px);
}
.news-card:last-child {
  grid-column: 1 / -1;
}
.news-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-content {
  flex: 1;
}
.news-date {
  font-size: 12.5px;
  color: #8b5cf6;
  font-weight: 600;
  background: rgba(139,92,246,0.08);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.news-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #2e1065;
  margin-bottom: 6px;
  line-height: 1.4;
}
.news-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FAQ */
.faq-section {
  background: #f5f3ff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(124,58,237,0.1);
  box-shadow: 0 4px 20px rgba(46,16,101,0.04);
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 8px 30px rgba(124,58,237,0.1);
}
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2e1065;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.faq-item h3::before {
  content: '✦';
  color: #7c3aed;
  font-size: 14px;
}
.faq-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2e1065 0%, #6d28d9 60%, #7c3aed 100%);
  text-align: center;
  color: #f5f3ff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 120%;
  height: 200%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(240,171,252,0.12), transparent 60%);
  animation: nebulaSpin 30s linear infinite;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 16px;
  color: rgba(245,243,255,0.8);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(90deg, #f0abfc, #e879f9);
  color: #2e1065;
  box-shadow: 0 8px 30px rgba(240,171,252,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(240,171,252,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #f5f3ff;
  border: 1px solid rgba(240,171,252,0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* 页脚 */
.site-footer {
  background: #1e1b4b;
  color: rgba(245,243,255,0.7);
  padding: 50px 32px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-col h4 {
  font-size: 16px;
  color: #f5f3ff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #f0abfc);
}
.footer-col p, .footer-col li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: rgba(245,243,255,0.6);
  transition: all 0.3s ease;
}
.footer-col a:hover { color: #f0abfc; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245,243,255,0.5);
}
.footer-bottom .sep {
  margin: 0 10px;
  color: rgba(245,243,255,0.3);
}

/* 响应式 */
@media (max-width: 768px) {
  .site-nav { padding: 12px 20px; flex-direction: column; gap: 10px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .hero-content h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .news-card:last-child { grid-column: 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: 1f 1fr; }
}
@media (max-width: 480px) {
  .score-grid { grid-template-columns: 1fr; }
}