:root {
  --primary: #fb7185;
  --primary-dark: #e11d48;
  --primary-light: #fdf2f8;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 12px 40px rgba(251, 113, 133, 0.12);
  --radius: 24px;
}

* {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #fdf2f8 0%, #fff7f7 40%, #ffe4e6 100%);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(251, 113, 133, 0.10);
  padding: 0.6rem 2rem;
  border-bottom: 1px solid rgba(251, 113, 133, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links a {
  color: #475569;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.hero {
  position: relative;
  padding: 5.5rem 2rem 3.5rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 113, 133, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(251, 207, 232, 0.5) 0%, transparent 45%),
    linear-gradient(180deg, #fff1f2 0%, #fdf2f8 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: #be123c;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
}

.hero img.hero-badge {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(251, 113, 133, 0.25);
}

.hero p {
  font-size: 1.12rem;
  color: #475569;
  max-width: 780px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(251, 113, 133, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(251, 113, 133, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #be123c;
  border: 1px solid rgba(251, 113, 133, 0.3);
}

.btn-secondary:hover {
  background: #ffffff;
}

.section {
  padding: 4rem 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 0.75rem;
}

/* GEO */
.geo-intro {
  padding: 3.5rem 24px;
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(251, 113, 133, 0.08);
  border-bottom: 1px solid rgba(251, 113, 133, 0.08);
}

.geo-intro .container {
  max-width: 1100px;
}

.geo-intro h2 {
  font-size: 1.65rem;
  color: #be123c;
  margin-bottom: 1.2rem;
  text-align: center;
}

.geo-intro p {
  font-size: 1.04rem;
  color: #475569;
  text-align: center;
  line-height: 1.9;
  max-width: 920px;
  margin: 0 auto;
}

/* Cards Grid */
.grid {
  display: grid;
  gap: 1.8rem;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(253, 242, 248, 0.92));
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(251, 113, 133, 0.18);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 8px;
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.15);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Stats */
.stats-section {
  background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
  color: #fff;
  padding: 4rem 24px;
  border-radius: 60px 60px 0 0;
  margin-top: 2rem;
}

.stats-section .section h2 {
  color: #fff;
}

.stats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.stat-item {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Featured events */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
}

.event-item img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
}

.event-info {
  flex: 1;
  min-width: 160px;
}

.event-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.event-info span {
  font-size: 0.88rem;
  color: var(--muted);
}

.event-status {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #ffe4e6;
  color: #be123c;
  white-space: nowrap;
}

/* News */
.news-list {
  background: #fff5f6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: linear-gradient(145deg, #ffffff, #fdf2f8);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 32px rgba(251, 113, 133, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-date {
  display: inline-block;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  align-self: flex-start;
  letter-spacing: 0.03em;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.news-more {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e11d48;
  transition: color 0.3s;
}

.news-more:hover {
  color: #be123c;
}

/* Live scores */
.live-scores {
  background: linear-gradient(180deg, #fff1f2, #fdf2f8);
}

.live-score-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  justify-content: center;
}

.live-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
}

.live-team img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.live-team span {
  font-weight: 700;
  font-size: 0.95rem;
  color: #334155;
}

.live-score-middle {
  text-align: center;
}

.live-score-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #be123c;
  letter-spacing: 0.06em;
}

.live-score-status {
  font-size: 0.85rem;
  color: var(--muted);
  background: #ffe4e6;
  padding: 0.3rem 1.2rem;
  border-radius: 999px;
  margin-top: 0.5rem;
}

/* Newbie guide */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.guide-step {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(251, 113, 133, 0.06);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.9rem;
}

.guide-step h4 {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.guide-step p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  background: #fff5f6;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #fdf2f8);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 1.2rem;
  font-size: 4rem;
  color: #fb7185;
  opacity: 0.25;
  font-weight: 800;
}

.testimonial-card p {
  font-size: 0.98rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.92rem;
}

.testimonial-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Coverage */
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.coverage-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.92rem;
  color: #475569;
}

.coverage-chip img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, #fff1f2, #fdf2f8);
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 1.6rem 2rem;
  box-shadow: 0 6px 18px rgba(251, 113, 133, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.75);
  margin-bottom: 1.2rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1.08rem;
  color: #1e293b;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.faq-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  padding-left: 2.4rem;
  position: relative;
}

.faq-answer::before {
  content: "A";
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2d131a, #3b1a22);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 24px 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fb7185;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-bottom a {
  color: #fda4af;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .news-grid,
  .stats-grid,
  .guide-steps {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section {
    padding: 3rem 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}