* {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
  color: #e5e5e5;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.navbar {
  background: rgba(10, 10, 10, 0.92);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #ef4444;
  backdrop-filter: blur(10px);
}
.nav-links {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.2rem;
}
.geo-section {
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
}
.geo-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(239, 68, 68, 0.3);
}
.geo-section p {
  max-width: 900px;
  margin: 0 auto;
  color: #c8c8c8;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: justify;
}
.hero-section {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(239, 68, 68, 0.16), transparent 60%);
  text-align: center;
  padding: 3rem 1.2rem;
}
.hero-section h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.hero-section p {
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.hero-section img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 1px;
}
.section-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.stat-item {
  background: linear-gradient(145deg, #191919, #222);
  border-left: 3px solid #ef4444;
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s;
}
.stat-item:hover {
  transform: translateY(-4px);
}
.stat-item strong {
  display: block;
  font-size: 2.4rem;
  color: #ef4444;
  font-weight: 800;
  line-height: 1.2;
}
.stat-item span {
  display: block;
  color: #aaa;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}
.card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-left: 3px solid #ef4444;
  border-radius: 10px;
  padding: 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 0 0 0 50px;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.card p {
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.6;
}
.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}
.story-content img {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.story-content p {
  flex: 2 1 400px;
  color: #b5b5b5;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.event-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.event-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}
.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid #ef4444;
}
.event-card .event-info {
  padding: 1.2rem;
}
.event-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.event-card .league {
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.event-card p {
  color: #999;
  font-size: 0.9rem;
}
.news-section {
  background: #111111;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.news-card {
  background: linear-gradient(145deg, #1a1a1a, #242424);
  border-radius: 12px;
  padding: 1.6rem;
  border-top: 3px solid #ef4444;
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}
.news-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.news-card .news-date {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.news-card p {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.news-tag {
  display: inline-block;
  background: transparent;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}
.news-tag:hover {
  background: rgba(239, 68, 68, 0.2);
}
.scores-banner {
  text-align: center;
  background: linear-gradient(145deg, #1a1a1a, #222);
  border-radius: 16px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.scores-banner h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.scores-banner p {
  color: #999;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
  background: #dc2626;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.faq-item {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 3px solid #ef4444;
  transition: background 0.3s;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.faq-item p {
  color: #a0a0a0;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: justify;
}
.download-section {
  background: radial-gradient(circle at center, rgba(239, 68, 68, 0.08), transparent 70%);
}
.download-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.download-text {
  flex: 1 1 300px;
  text-align: left;
}
.download-text h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.download-text p {
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.download-img {
  flex: 0 1 300px;
  text-align: center;
}
.download-img img {
  max-width: 220px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.partner-logo {
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}
.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
.partner-logo img {
  max-height: 50px;
  max-width: 120px;
  border-radius: 6px;
}
.partner-logo span {
  display: block;
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
.cta-section {
  text-align: center;
  padding: 4rem 1.2rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent);
}
.cta-section h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.footer {
  background: #0a0a0a;
  border-top: 2px solid #ef4444;
  padding: 3rem 1rem 2rem;
  margin-top: 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-content div h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-content div p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  align-items: center;
}
.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: #ef4444;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .nav-links {
    gap: 0.6rem;
  }
  .nav-links a {
    font-size: 0.82rem;
    padding: 0.3rem 0.7rem;
  }
  .section {
    padding: 2.5rem 1rem;
  }
  .geo-section h1 {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .news-list {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-content {
    flex-direction: column;
  }
  .story-content img {
    max-width: 100%;
  }
}