* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
body {
  background-color: #f5f0e1;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(120, 53, 15, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(22, 101, 52, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(202, 138, 4, 0.08) 0%, transparent 50%);
  color: #1f2937;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-nav {
  background: linear-gradient(135deg, #166534, #14532d);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border-bottom: 2px solid #ca8a04;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.hero {
  background: linear-gradient(135deg, #166534 0%, #78350f 100%);
  color: #fff;
  padding: 70px 0 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 30%);
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.hero-text {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}
.hero-image {
  flex: 0 0 360px;
}
.hero-image img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.3);
}
.geo-intro {
  background: #fff;
  padding: 40px 0;
  border-bottom: 2px solid #e5e7eb;
}
.geo-intro .container {
  max-width: 1000px;
}
.geo-intro h2 {
  color: #166534;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.geo-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}
.section-padding {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #166534;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #166534, #78350f);
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 40px;
}
.stats {
  background: linear-gradient(135deg, #166534, #78350f);
  color: #fff;
}
.stats .section-title {
  color: #fff;
}
.stats .section-subtitle {
  color: rgba(255,255,255,0.8);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.stat-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #fbbf24;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-top: 5px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.advantage-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #166534;
  transition: all 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.advantage-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.advantage-card h3 {
  font-size: 20px;
  color: #166534;
  margin-bottom: 10px;
  font-weight: 700;
}
.advantage-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}
.story {
  background: #fff;
}
.story-layout {
  display: flex;
  gap: 50px;
  align-items: center;
}
.story-layout img {
  flex: 0 0 420px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.story-content {
  flex: 1;
}
.story-content h2 {
  color: #166534;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 14px;
}
.coverage {
  background: #f5f0e1;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.coverage-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.coverage-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.coverage-item h4 {
  font-size: 16px;
  color: #166534;
  font-weight: 700;
  margin-bottom: 6px;
}
.coverage-item p {
  font-size: 13px;
  color: #6b7280;
}
.events {
  background: #fff;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.event-card {
  background: linear-gradient(135deg, #f8fafc, #f0fdf4);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid #166534;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.event-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.event-card h3 {
  font-size: 18px;
  color: #166534;
  font-weight: 700;
  margin-bottom: 6px;
}
.event-card p {
  font-size: 14px;
  color: #4b5563;
}
.event-tag {
  display: inline-block;
  background: #ca8a04;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.live-stream {
  background: linear-gradient(135deg, #1e293b, #166534);
  color: #fff;
}
.live-stream .section-title {
  color: #fff;
}
.live-stream .section-subtitle {
  color: rgba(255,255,255,0.7);
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.live-card {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.live-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.live-status {
  display: inline-block;
  background: #f87171;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.live-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.live-score {
  font-size: 24px;
  font-weight: 800;
  color: #fbbf24;
}
.partners {
  background: #fff;
}
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.partner-item {
  flex: 0 0 150px;
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.partner-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.partner-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 8px;
}
.partner-item p {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}
.testimonials {
  background: #f5f0e1;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial-card::before {
  content: '❝';
  font-size: 60px;
  position: absolute;
  top: 10px;
  right: 20px;
  color: #1665341a;
  font-weight: 800;
}
.testimonial-card .stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 16px;
}
.testimonial-author {
  font-weight: 700;
  color: #166534;
  font-size: 15px;
}
.testimonial-role {
  font-size: 13px;
  color: #9ca3af;
}
.download {
  background: linear-gradient(135deg, #78350f, #166534);
  color: #fff;
  text-align: center;
}
.download .section-title {
  color: #fff;
}
.download .section-subtitle {
  color: rgba(255,255,255,0.8);
}
.download-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}
.download-layout img {
  flex: 0 0 320px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.download-info p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ca8a04;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: #a16207;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.cta {
  background: linear-gradient(135deg, #166534, #78350f);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.news-list {
  background: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.news-card {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.news-card .news-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.news-card .news-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  display: inline-block;
  background: #166534;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  align-self: flex-start;
  margin-bottom: 12px;
  font-weight: 600;
}
.news-card h3 {
  font-size: 20px;
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}
.news-card .news-link {
  color: #166534;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}
.news-card .news-link:hover {
  text-decoration: underline;
}
.faq {
  background: #f5f0e1;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #166534;
  cursor: pointer;
  list-style: none;
  position: relative;
  background: #fff;
  transition: background 0.3s ease;
}
.faq-item summary:hover {
  background: #f0fdf4;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  font-size: 24px;
  font-weight: 400;
  color: #166534;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}
.faq-item[open] .faq-answer {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 50px 0 20px;
  font-size: 14px;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col p {
  line-height: 1.8;
}
.footer-col a {
  color: #9ca3af;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #fbbf24;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f2937;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 13px;
  color: #6b7280;
}
.footer-bottom a {
  color: #9ca3af;
  display: inline;
  margin: 0 6px;
}
.footer-bottom a:hover {
  color: #fbbf24;
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .live-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .story-layout {
    flex-direction: column;
  }
  .story-layout img {
    flex: 0 0 auto;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    flex: 0 0 auto;
  }
  .download-layout {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links a {
    font-size: 14px;
    padding: 6px 12px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
}