* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
html { scroll-behavior: smooth; }
body {
  background: #0f0a0a;
  color: #fff5eb;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* Header Nav */
.site-header {
  background: linear-gradient(135deg, #7f1d1d, #ea580c);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(234, 88, 12, 0.35);
}
.site-header .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fde68a;
}
.brand-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff5eb;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(253, 230, 138, 0.25);
}
.nav-links a:hover {
  background: rgba(253, 230, 138, 0.2);
  border-color: #fde68a;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 40px 90px;
  background: linear-gradient(150deg, #7f1d1d 0%, #ea580c 60%, #fde68a 140%);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 180%; height: 180%;
  background: radial-gradient(circle, rgba(253, 230, 138, 0.25) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 0.6; }
  100% { transform: translateY(30px) rotate(10deg); opacity: 1; }
}
.hero .inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hero h1 {
  font-size: 44px;
  font-weight: 900;
  color: #fde68a;
  text-shadow: 0 4px 20px rgba(127, 29, 29, 0.6);
  margin-bottom: 18px;
  line-height: 1.3;
}
.hero .sub {
  font-size: 18px;
  color: #fff5eb;
  max-width: 720px;
  margin: 0 auto 34px;
  opacity: 0.95;
}
.hero .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero .btn-primary {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  color: #7f1d1d;
  box-shadow: 0 8px 30px rgba(253, 230, 138, 0.3);
}
.hero .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(253, 230, 138, 0.45); }
.hero .btn-outline {
  background: transparent;
  color: #fde68a;
  border: 2px solid #fde68a;
}
.hero .btn-outline:hover { background: rgba(253, 230, 138, 0.15); transform: translateY(-3px); }

/* Section base */
.section {
  padding: 72px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  color: #fde68a;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ea580c, #fde68a);
  border-radius: 4px;
  margin: 14px auto 0;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: #e2b4a0;
  max-width: 700px;
  margin: 0 auto 42px;
}

/* GEO */
.geo-intro {
  background: linear-gradient(180deg, #1a0f0f, #0f0a0a);
  padding: 70px 32px;
}
.geo-intro .inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.geo-intro p {
  font-size: 17px;
  color: #fcd7c2;
  line-height: 1.9;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.geo-intro .badge {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #7f1d1d);
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  color: #fde68a;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Stats */
.stats-section {
  background: linear-gradient(135deg, #2a1210, #1a0a08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 34px 20px;
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.12), rgba(127, 29, 29, 0.2));
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 230, 138, 0.18), transparent);
  animation: shimmer 3.5s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
.stat-card:hover { transform: translateY(-6px); }
.stat-card .num {
  font-size: 46px;
  font-weight: 900;
  color: #fde68a;
  line-height: 1.2;
}
.stat-card .label {
  font-size: 15px;
  color: #e2b4a0;
  margin-top: 8px;
  font-weight: 600;
}

/* Advantages */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.adv-card {
  padding: 36px 28px;
  background: linear-gradient(145deg, #241210, #150a0a);
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.adv-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #ea580c, #fde68a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.adv-card:hover::before { transform: scaleX(1); }
.adv-card:hover { transform: translateY(-5px); border-color: rgba(253, 230, 138, 0.4); }
.adv-card .icon { font-size: 40px; margin-bottom: 16px; }
.adv-card h3 { font-size: 19px; color: #fde68a; margin-bottom: 10px; font-weight: 700; }
.adv-card p { font-size: 14px; color: #d9b29e; line-height: 1.7; }

/* Brand story */
.story-section {
  background: linear-gradient(180deg, #0f0a0a, #1a0f0f);
}
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.story-text h2 { font-size: 28px; color: #fde68a; margin-bottom: 16px; font-weight: 800; }
.story-text p { color: #e2b4a0; margin-bottom: 14px; line-height: 1.8; }
.story-img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 88, 12, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

/* Featured events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.event-card {
  background: linear-gradient(160deg, rgba(234, 88, 12, 0.15), rgba(127, 29, 29, 0.1));
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.4s ease;
}
.event-card:hover { transform: translateY(-6px) rotateX(2deg); }
.event-card .e-icon { font-size: 42px; margin-bottom: 14px; }
.event-card h3 { font-size: 17px; color: #fde68a; margin-bottom: 8px; font-weight: 700; }
.event-card p { font-size: 13px; color: #d9b29e; line-height: 1.6; }

/* Live scores */
.scores-section { background: linear-gradient(135deg, #1a0f0f, #241210); }
.scores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(253, 230, 138, 0.15);
  border-radius: 16px;
  transition: background 0.3s ease;
}
.score-card:hover { background: rgba(255, 255, 255, 0.08); }
.score-card .teams { font-weight: 700; font-size: 16px; color: #fff5eb; }
.score-card .score {
  font-size: 28px;
  font-weight: 900;
  color: #fde68a;
  background: linear-gradient(135deg, #ea580c, #7f1d1d);
  padding: 6px 18px;
  border-radius: 12px;
}
.score-card .status { font-size: 12px; color: #f59e0b; background: rgba(234, 88, 12, 0.2); padding: 4px 10px; border-radius: 20px; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: linear-gradient(145deg, #241210, #150a0a);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; left: 20px;
  font-size: 64px;
  color: rgba(234, 88, 12, 0.3);
  font-family: Georgia, serif !important;
}
.testi-card p { color: #e2b4a0; font-size: 15px; line-height: 1.8; margin-bottom: 16px; position: relative; z-index: 1; }
.testi-card .user { color: #fde68a; font-weight: 700; font-size: 14px; }

/* News */
.news-section { background: linear-gradient(180deg, #0f0a0a, #150a0a); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: linear-gradient(145deg, #1e1210, #150a0a);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(234, 88, 12, 0.15); }
.news-card .news-thumb { overflow: hidden; height: 180px; }
.news-card .news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-card .news-body { padding: 22px; }
.news-card .news-date {
  font-size: 13px;
  color: #f59e0b;
  background: rgba(234, 88, 12, 0.15);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  font-weight: 600;
}
.news-card h3 { font-size: 17px; color: #fff5eb; margin-bottom: 8px; line-height: 1.4; font-weight: 700; }
.news-card p { font-size: 14px; color: #cba08a; line-height: 1.7; }

/* FAQ */
.faq-section { background: linear-gradient(180deg, #150a0a, #0f0a0a); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 26px 28px;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(253, 230, 138, 0.3); }
.faq-item h3 {
  font-size: 17px;
  color: #fde68a;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item p { font-size: 15px; color: #d9b29e; line-height: 1.8; }

/* Download */
.download-section {
  background: linear-gradient(135deg, #ea580c, #7f1d1d);
  padding: 70px 32px;
}
.download-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.download-wrap h2 { font-size: 38px; color: #fde68a; margin-bottom: 14px; font-weight: 900; }
.download-wrap p { font-size: 17px; color: #fff5eb; margin-bottom: 36px; opacity: 0.95; }
.download-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.download-btns .btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  background: #fde68a;
  color: #7f1d1d;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.download-btns .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3); }
.download-btns .btn.ghost { background: transparent; color: #fde68a; border: 2px solid #fde68a; box-shadow: none; }
.download-btns .btn.ghost:hover { background: rgba(253, 230, 138, 0.15); }

/* Footer */
.site-footer {
  background: #0a0505;
  padding: 50px 32px 30px;
  border-top: 1px solid rgba(234, 88, 12, 0.2);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: #fde68a; font-size: 22px; margin-bottom: 12px; font-weight: 800; }
.footer-brand p { color: #a07860; font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #e2b4a0; font-size: 16px; margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; color: #a07860; font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: #fde68a; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #806050;
}
.footer-bottom a { color: #a07860; }
.footer-bottom a:hover { color: #fde68a; }

/* Responsive */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .scores-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .story-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .stat-card .num { font-size: 34px; }
  .adv-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 20px; }
  .hero { padding: 70px 20px 60px; }
  .hero h1 { font-size: 30px; }
  .nav-links a { padding: 6px 12px; font-size: 13px; }
}