* {
  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: #ffffff;
  color: #1e293b;
  line-height: 1.65;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header / Nav ===== */
.site-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 70%, #fbbf24 100%);
  position: sticky;
  top: 0;
  z-index: 1200;
  box-shadow: 0 2px 18px rgba(30, 58, 138, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.9rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #fbbf24;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Hero ===== */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #fbbf24 100%);
  color: #ffffff;
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.25) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.hero-btn {
  display: inline-block;
  background: #fbbf24;
  color: #1e3a8a;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  font-size: 1rem;
  box-shadow: 0 4px 30px rgba(251, 191, 36, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 0.3rem;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(251, 191, 36, 0.6);
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  box-shadow: none;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* ===== Section ===== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #f8fafc;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 0.6rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a, #fbbf24);
  margin: 0.6rem auto 0;
  border-radius: 4px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  max-width: 720px;
  margin: 0.8rem auto 2.5rem;
}

/* Geo intro */
.geo-intro {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 3rem 0;
}

.geo-intro p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Cards Grid ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.9rem;
  }
}

/* Royal Card */
.royal-card {
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30, 58, 138, 0.07);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.royal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #fbbf24);
  border-radius: 16px 16px 0 0;
}

.royal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(30, 58, 138, 0.13);
}

.royal-card img.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin: 0 auto 1rem;
}

.royal-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.6rem;
}

.royal-card p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Featured Events ===== */
.events-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.event-card {
  text-align: left;
  padding: 1.5rem;
  overflow: hidden;
}

.event-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.event-tag {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.event-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.event-card p {
  font-size: 0.88rem;
  color: #64748b;
}

/* ===== Live Scores ===== */
.scores-section {
  background: #f8fafc;
}

.score-card {
  text-align: center;
  padding: 1.6rem 1.5rem;
}

.score-league {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.score-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.team-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: #1e293b;
  flex: 1;
  text-align: right;
}

.team-name:last-child {
  text-align: left;
}

.score-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 70px;
}

.score-status {
  font-size: 0.85rem;
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.score-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3a8a;
  background: #eff6ff;
  padding: 0.35rem 1.2rem;
  border-radius: 20px;
  transition: background 0.3s;
}

.score-link:hover {
  background: #dbeafe;
}

/* ===== Stats ===== */
.stats-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #fbbf24 100%);
  color: #ffffff;
  padding: 4rem 0;
}

.stats-section .section-title {
  color: #ffffff;
}

.stats-section .section-title::after {
  background: #ffffff;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.3rem;
}

/* ===== Advantages ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Brand Story ===== */
.story-section {
  background: #ffffff;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.story-content img {
  flex: 1;
  min-width: 280px;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(30, 58, 138, 0.12);
}

.story-text {
  flex: 1;
  min-width: 280px;
}

.story-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.story-text p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

/* ===== Coverage ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

@media (max-width: 992px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.coverage-item {
  text-align: center;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.coverage-item:hover {
  border-color: #fbbf24;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}

.coverage-item img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin: 0 auto 0.6rem;
}

.coverage-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  display: block;
}

/* ===== Highlights ===== */
.highlight-card {
  text-align: left;
  overflow: hidden;
  padding: 0;
}

.highlight-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.highlight-body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.highlight-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.highlight-body p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== News ===== */
.news-list-section {
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: flex;
  gap: 1.2rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 16px rgba(30, 58, 138, 0.05);
  padding: 1.4rem;
  transition: box-shadow 0.3s;
  align-items: flex-start;
}

.news-card:hover {
  box-shadow: 0 6px 26px rgba(30, 58, 138, 0.1);
}

.news-card img {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.news-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f59e0b;
  background: #fffbeb;
  padding: 0.22rem 0.7rem;
  border-radius: 14px;
}

.news-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e3a8a;
  background: #eff6ff;
  padding: 0.22rem 0.7rem;
  border-radius: 14px;
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.news-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card a.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3a8a;
}

.news-card a.read-more:hover {
  text-decoration: underline;
}

/* ===== Download ===== */
.download-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #fbbf24 100%);
  color: #ffffff;
  text-align: center;
}

.download-section .section-title {
  color: #ffffff;
}

.download-section .section-title::after {
  background: #fbbf24;
}

.download-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.download-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
}

.download-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.8rem;
  border-radius: 12px;
}

.download-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.3rem;
}

.download-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.6rem;
  border-radius: 30px;
  transition: opacity 0.3s;
}

.download-btn:hover {
  opacity: 0.85;
}

/* ===== FAQ ===== */
.faq-section {
  background: #ffffff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: #fbbf24;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== Partners ===== */
.partners-section {
  background: #f8fafc;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.04);
  transition: transform 0.3s, border-color 0.3s;
}

.partner-item:hover {
  transform: translateY(-3px);
  border-color: #fbbf24;
}

.partner-item img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.partner-item span {
  font-weight: 700;
  color: #334155;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #fbbf24 0%, #fde68a 100%);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: #78350f;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.cta-btn {
  display: inline-block;
  background: #1e3a8a;
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 40px;
  font-size: 1rem;
  box-shadow: 0 4px 30px rgba(30, 58, 138, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 0.3rem;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(30, 58, 138, 0.4);
}

.cta-btn-light {
  background: #ffffff;
  color: #1e3a8a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Footer ===== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-col h4 {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fbbf24;
}

.footer-bottom {
  max-width: 1240px;
  margin: 2rem auto 0;
  padding: 1.2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #94a3b8;
  margin: 0 0.4rem;
}

.footer-bottom a:hover {
  color: #fbbf24;
}

.footer-info {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-info span {
  margin: 0 0.5rem;
}

/* gold line decoration */
.gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
  max-width: 200px;
  margin: 0.6rem auto 2rem;
}