:root {
  --green: #15803d;
  --dark-brown: #451a03;
  --tan: #d4a574;
  --cream: #f7f1e3;
  --card-bg: #fefcf7;
  --border: #e8d5b5;
  --shadow: rgba(69, 26, 3, 0.12);
}
* {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--cream);
  background-image: radial-gradient(circle at 10% 30%, rgba(21, 128, 61, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
  color: #2d1b0e;
  line-height: 1.8;
  font-size: 16px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.top-nav {
  background: linear-gradient(135deg, #15803d 0%, #451a03 100%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(69, 26, 3, 0.4);
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #f7f1e3;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 30px;
  transition: background 0.3s, transform 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.92), rgba(69, 26, 3, 0.88)), url('/img/sports.webp') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #f7f1e3;
  overflow: hidden;
}
.hero::before {
  content: "🌿";
  position: absolute;
  top: 30px;
  left: 50px;
  font-size: 48px;
  opacity: 0.5;
}
.hero::after {
  content: "🌲";
  position: absolute;
  bottom: 30px;
  right: 60px;
  font-size: 42px;
  opacity: 0.4;
}
.hero h2 {
  font-size: 42px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
}
.hero .hero-emojis {
  font-size: 36px;
  margin-top: 24px;
  letter-spacing: 12px;
}
.geo-intro {
  padding: 60px 0 40px;
  background: linear-gradient(to bottom, #f7f1e3, #fefcf7);
}
.geo-intro h1 {
  font-size: 32px;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
  font-weight: 700;
}
.geo-intro p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.9;
  color: #3d2b1a;
}
.section-block {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6b4f3a;
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.grid-1-2-3-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.grid-2-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(69, 26, 3, 0.2);
}
.card::before {
  content: "🌿";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  opacity: 0.35;
}
.card .card-icon {
  font-size: 38px;
  margin-bottom: 12px;
  display: block;
}
.card h3 {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 10px;
  font-weight: 700;
}
.card p {
  font-size: 14.5px;
  color: #5a402a;
  line-height: 1.75;
}
.stats-bg {
  background: linear-gradient(135deg, #15803d, #451a03);
  color: #f7f1e3;
  border-radius: 20px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.stats-bg::before {
  content: "🔥";
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 32px;
  opacity: 0.3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stats-grid .stat-num {
  font-size: 44px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.stats-grid .stat-label {
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 1px;
}
.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .story-wrapper {
    grid-template-columns: 1fr;
  }
}
.story-text h2 {
  font-size: 26px;
  color: var(--dark-brown);
  margin-bottom: 18px;
}
.story-text p {
  font-size: 15.5px;
  color: #3d2b1a;
  line-height: 1.9;
  margin-bottom: 14px;
}
.story-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(69, 26, 3, 0.25);
}
.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.event-card {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}
.event-card:hover {
  transform: scale(1.02);
}
.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.event-card .event-info {
  padding: 18px;
}
.event-card .event-info h4 {
  font-size: 17px;
  color: var(--dark-brown);
  margin-bottom: 8px;
}
.event-card .event-info p {
  font-size: 13.5px;
  color: #6b4f3a;
  line-height: 1.6;
}
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.coverage-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-brown);
  box-shadow: 0 2px 8px rgba(69,26,3,0.08);
}
.coverage-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.highlight-card {
  background: linear-gradient(145deg, #fefcf7, #f0e4d2);
  border-radius: 16px;
  padding: 24px;
  border-left: 5px solid var(--green);
  box-shadow: 0 4px 16px rgba(69,26,3,0.08);
  position: relative;
}
.highlight-card h4 {
  font-size: 17px;
  color: var(--dark-brown);
  margin-bottom: 8px;
}
.highlight-card p {
  font-size: 14px;
  color: #5a402a;
}
.highlight-card .tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 12px;
  font-weight: 600;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(69,26,3,0.08);
  position: relative;
}
.testimonial-card .stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 14.5px;
  color: #3d2b1a;
  line-height: 1.8;
  font-style: italic;
}
.testimonial-card .author {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-top: 12px;
  text-align: right;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.insight-article {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(69,26,3,0.06);
}
.insight-article .label {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.insight-article h4 {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 10px;
}
.insight-article p {
  font-size: 14px;
  color: #5a402a;
  line-height: 1.75;
}
.news-section {
  background: linear-gradient(180deg, #fefcf7, #f0e4d2);
  border-radius: 24px;
  padding: 44px 32px;
  margin: 20px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(69,26,3,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover {
  box-shadow: 0 8px 24px rgba(69,26,3,0.15);
  transform: translateY(-4px);
}
.news-card .news-date {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.news-card h3 {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 10px;
  line-height: 1.5;
}
.news-card p {
  font-size: 14px;
  color: #5a402a;
  line-height: 1.75;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 18px;
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(69,26,3,0.07);
}
.faq-item h3 {
  font-size: 17px;
  color: var(--dark-brown);
  margin-bottom: 12px;
  font-weight: 700;
}
.faq-item p {
  font-size: 14.5px;
  color: #3d2b1a;
  line-height: 1.8;
}
.cta-section {
  background: linear-gradient(135deg, #15803d, #451a03);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: #f7f1e3;
  margin: 30px 0;
}
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.cta-section p {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.92;
}
.cta-section .cta-btn {
  display: inline-block;
  background: #f7f1e3;
  color: var(--dark-brown);
  padding: 12px 38px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-section .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.footer {
  background: linear-gradient(135deg, #2d1b0e, #451a03);
  color: #d4c4a0;
  padding: 50px 0 30px;
  margin-top: 60px;
  font-size: 14px;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer h4 {
  color: #f7f1e3;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.footer p {
  line-height: 1.7;
  color: #c8b896;
  font-size: 13.5px;
}
.footer .footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer a {
  color: #d4c4a0;
  text-decoration: none;
  font-size: 13.5px;
}
.footer a:hover {
  color: #f7f1e3;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #a89a7e;
}
@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
  }
  .hero h2 {
    font-size: 28px;
  }
  .geo-intro h1 {
    font-size: 24px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 13px;
    padding: 5px 12px;
  }
}