* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  }
  body {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    color: #fff;
    line-height: 1.75;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: #fbbf24; text-decoration: none; }
  a:hover { opacity: 0.85; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  header {
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 2px solid #fbbf24;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .nav-links a {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1px solid rgba(251, 191, 36, 0.65);
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(185, 28, 28, 0.7), rgba(127, 29, 29, 0.7));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: background 0.2s;
  }
  .nav-links a:hover {
    background: linear-gradient(145deg, #fbbf24, #dc2626);
    color: #fff;
  }

  .section {
    padding: 70px 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.25);
  }
  .section h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .section .sub {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Hero */
  .hero-section {
    padding: 110px 0 80px;
    background:
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(127, 29, 29, 0.7)),
      url('/img/play.webp') center/cover no-repeat;
    border-bottom: 3px solid #fbbf24;
  }
  .hero-section h1 {
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  .geo-text {
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 1.15rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-left: 4px solid #fbbf24;
    border-right: 4px solid #fbbf24;
    padding: 22px 30px;
    border-radius: 6px;
  }
  .cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-btn {
    display: inline-block;
    padding: 14px 34px;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(145deg, #f59e0b, #dc2626);
    border: 2px solid #fbbf24;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s;
  }
  .cta-btn.ghost {
    background: transparent;
    border: 2px solid #fff;
  }
  .cta-btn:hover {
    transform: translateY(-2px);
  }

  /* Cards */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .card {
    background: linear-gradient(145deg, #b91c1c, #7f1d1d);
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5), inset 0 0 14px rgba(251, 191, 36, 0.12);
    transition: transform 0.2s;
  }
  .card:hover { transform: translateY(-4px); }
  .card h3 {
    color: #fbbf24;
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 800;
  }
  .card p { color: rgba(255, 255, 255, 0.92); }

  .split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
  }
  .split img {
    border: 2px solid #fbbf24;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
  }
  .stat-card {
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.35), rgba(127, 29, 29, 0.6));
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 30px 16px;
    box-shadow: inset 0 0 18px rgba(251, 191, 36, 0.08);
  }
  .stat-card strong {
    display: block;
    font-size: 2.5rem;
    color: #fbbf24;
    line-height: 1.2;
  }
  .stat-card span { font-size: 1rem; color: #fff; }

  .timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
  }
  .timeline-item {
    border-left: 4px solid #fbbf24;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0 6px 6px 0;
  }

  .event-card, .live-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .event-card img, .live-card img {
    border: 1px solid #fbbf24;
    border-radius: 6px;
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  .split.reverse { direction: rtl; text-align: left; }
  .split.reverse > * { direction: ltr; }

  .partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .partners-list .partner-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 6px;
    padding: 16px 28px;
    font-weight: 700;
    color: #fbbf24;
  }

  .coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 16px;
  }
  .coverage-tags span {
    background: linear-gradient(145deg, #fbbf24, #dc2626);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  .testimonial-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(251, 191, 36, 0.6);
    border-radius: 6px;
    padding: 26px;
    font-style: italic;
  }

  /* News */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }
  .news-item {
    background: linear-gradient(145deg, rgba(185, 28, 28, 0.75), rgba(127, 29, 29, 0.75));
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .news-item .tag {
    display: inline-block;
    background: #fbbf24;
    color: #7f1d1d;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  .news-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .news-item .date {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .news-item p { color: rgba(255, 255, 255, 0.92); }

  /* FAQ */
  .faq-list {
    max-width: 860px;
    margin: 0 auto;
  }
  .faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 6px;
    margin-bottom: 16px;
    padding: 18px 22px;
  }
  .faq-item summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fbbf24;
    list-style: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item p { margin-top: 12px; color: rgba(255, 255, 255, 0.95); }

  .cta-section {
    text-align: center;
    padding: 70px 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/img/download.webp') center/cover no-repeat;
    border-bottom: 3px solid #fbbf24;
  }
  .cta-section h2 { color: #fff; }

  footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 0 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }
  .footer-inner h3 {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 1.1rem;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    padding-top: 20px;
    margin-top: 30px;
  }
  .footer-bottom a { margin: 0 8px; }