* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
body {
  background: #fdfbf7;
  color: #2d2d2d;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 60px 0;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #8a8a8a;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Nav */
nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #f3cfc9;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.3s;
  color: #444;
}
.nav-links a:hover {
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  color: #fff;
}

/* Hero */
#geo-intro {
  background: linear-gradient(135deg, #e8796f 0%, #fbbf24 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
#geo-intro::before {
  content: "⚽";
  position: absolute;
  font-size: 180px;
  opacity: 0.12;
  right: 20px;
  bottom: -20px;
  transform: rotate(-15deg);
}
#geo-intro h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  line-height: 1.4;
}
.geo-desc {
  max-width: 860px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 28px 36px;
  text-align: left;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* Stats */
#stats {
  background: #fdfbf7;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.stat-card {
  background: linear-gradient(135deg, #fff, #fdf2ef);
  border: 1px solid #f3cfc9;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(232,121,111,0.10);
  transition: transform 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
}
.stat-num {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  margin-top: 8px;
  color: #8a8a8a;
  font-size: 15px;
}
.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Advantages */
#advantages {
  background: #fff;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.adv-card {
  background: linear-gradient(145deg, #fffdf5, #fdf2ef);
  border: 1px solid #f3cfc9;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.adv-card:hover {
  box-shadow: 0 12px 40px rgba(232,121,111,0.16);
}
.adv-icon {
  font-size: 44px;
  margin-bottom: 14px;
}
.adv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #3a3a3a;
}
.adv-card p {
  font-size: 14px;
  color: #7a7a7a;
}

/* Story */
#story {
  background: linear-gradient(135deg, #fff8f5, #fdfbf7);
}
.story-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.story-text {
  flex: 1;
  min-width: 280px;
}
.story-text h2 {
  font-size: 28px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-text p {
  color: #5a5a5a;
  line-height: 1.9;
  margin-bottom: 14px;
}
.story-img {
  flex: 1;
  min-width: 260px;
}
.story-img img {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(232,121,111,0.18);
}

/* Events */
#events {
  background: #fff;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.event-card {
  background: linear-gradient(145deg, #fff, #fdf2ef);
  border: 1px solid #f3cfc9;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(232,121,111,0.08);
  transition: transform 0.3s;
}
.event-card:hover {
  transform: translateY(-6px);
}
.event-league {
  font-size: 14px;
  color: #e8796f;
  font-weight: 600;
  margin-bottom: 10px;
}
.event-teams {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.5;
}
.event-time {
  font-size: 13px;
  color: #9a9a9a;
}

/* Reviews */
#reviews {
  background: linear-gradient(135deg, #fdf2ef, #fdfbf7);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(232,121,111,0.10);
  border-left: 4px solid transparent;
  border-image: linear-gradient(135deg, #e8796f, #fbbf24) 1;
}
.review-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-weight: 700;
  color: #3a3a3a;
}
.review-role {
  font-size: 13px;
  color: #9a9a9a;
}

/* Vision */
#vision {
  background: #fff;
  padding: 70px 0;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.vision-card {
  background: linear-gradient(135deg, #fff8f5, #fdf2ef);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  border: 1px solid #f3cfc9;
}
.vision-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.vision-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #3a3a3a;
}
.vision-card p {
  color: #6a6a6a;
  line-height: 1.8;
}

/* CTA */
#cta {
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  color: #fff;
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 24px;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  background: #fff;
  color: #e8796f;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.cta-btn.secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid #fff;
}

/* FAQ */
#faq {
  background: #fdfbf7;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 28px 32px;
  border: 1px solid #f0e0dc;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-a {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  padding-left: 30px;
}

/* News */
#news {
  background: #fff;
}
.news-list {
  max-width: 900px;
  margin: 0 auto;
}
.news-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #f0e0dc;
  align-items: flex-start;
}
.news-item:last-child {
  border-bottom: none;
}
.news-thumb {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.news-content {
  flex: 1;
}
.news-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d2d2d;
  line-height: 1.4;
}
.news-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}
.news-date {
  font-size: 13px;
  color: #e8796f;
  font-weight: 600;
  background: #fdf2ef;
  padding: 2px 12px;
  border-radius: 12px;
  display: inline-block;
}
.news-tag {
  font-size: 13px;
  color: #8a8a8a;
  background: #f5f5f5;
  padding: 2px 12px;
  border-radius: 12px;
  display: inline-block;
}
.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.news-more {
  margin-top: 30px;
  text-align: center;
}
.btn-more {
  display: inline-block;
  padding: 10px 32px;
  border: 2px solid #e8796f;
  color: #e8796f;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-more:hover {
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  color: #fff;
  border-color: transparent;
}

/* Footer */
footer {
  background: #2b2b2b;
  color: #c9c9c9;
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 30px;
}
.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
}
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #c9c9c9;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #fbbf24;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
}
.footer-bottom a {
  color: #c9c9c9;
  margin: 0 6px;
}
.footer-bottom a:hover {
  color: #fbbf24;
}

@media (max-width: 768px) {
  .story-wrap {
    flex-direction: column;
  }
  .news-item {
    flex-direction: column;
  }
  .news-thumb {
    width: 100%;
    height: 160px;
  }
  #geo-intro h1 {
    font-size: 24px;
  }
  .section-title {
    font-size: 26px;
  }
}