* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
body {
  background: #1a1a1a;
  color: #f5f5f5;
  line-height: 1.7;
  overflow-x: hidden;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}
h2 {
  font-size: 32px;
  color: #eab308;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #eab308;
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.6);
}
section {
  padding: 72px 0;
}
.navbar {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 60%, #2a2a2a 100%);
  border-bottom: 2px solid #eab308;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.nav-links {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: #f5f5f5;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s, background 0.3s;
  position: relative;
}
.nav-links a:first-child {
  color: #eab308;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-right: 20px;
}
.nav-links a:first-child::before {
  content: "⚡";
  margin-right: 6px;
  font-size: 20px;
}
.nav-links a:hover {
  color: #eab308;
  background: rgba(234, 179, 8, 0.08);
}
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2a2411 100%);
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.4);
  padding: 8px 24px;
  border-radius: 0;
  color: #eab308;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 44px;
  color: #f5f5f5;
  margin-bottom: 18px;
  text-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}
.hero h1 span {
  color: #eab308;
}
.hero p {
  font-size: 18px;
  color: #9ca3af;
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: #eab308;
  color: #1a1a1a;
  box-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(234, 179, 8, 0.7);
}
.btn-outline {
  background: transparent;
  color: #eab308;
  border: 2px solid #eab308;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.2);
}
.btn-outline:hover {
  background: rgba(234, 179, 8, 0.1);
  transform: translateY(-2px);
}
.geo-intro {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}
.geo-intro .container {
  max-width: 900px;
}
.geo-intro p {
  font-size: 16px;
  color: #d1d5db;
  text-align: center;
  letter-spacing: 0.3px;
}
.data-stats {
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  background: #1e1e1e;
  padding: 40px 24px;
  border-left: 3px solid #eab308;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 30px rgba(234, 179, 8, 0.15);
}
.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #eab308;
  line-height: 1.2;
}
.stat-label {
  color: #9ca3af;
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 1px;
}
.core-advantages {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-card {
  background: #1e1e1e;
  padding: 36px 28px;
  border-top: 3px solid #eab308;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.advantage-card:hover {
  transform: translateY(-6px);
}
.advantage-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.advantage-card h3 {
  color: #f5f5f5;
  font-size: 20px;
  margin-bottom: 10px;
}
.advantage-card p {
  color: #9ca3af;
  font-size: 14px;
}
.featured-events {
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.event-card {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(234, 179, 8, 0.15);
}
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #eab308;
}
.event-content {
  padding: 24px;
}
.event-tag {
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.event-content h3 {
  font-size: 20px;
  color: #f5f5f5;
  margin-bottom: 8px;
}
.event-content p {
  color: #9ca3af;
  font-size: 14px;
}
.live-stream {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}
.stream-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stream-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #1e1e1e;
  padding: 24px;
  border-left: 3px solid #eab308;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.stream-status {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s infinite;
  box-shadow: 0 0 8px #22c55e;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.stream-info {
  flex: 1;
}
.stream-info h3 {
  color: #f5f5f5;
  font-size: 18px;
  margin-bottom: 4px;
}
.stream-info p {
  color: #9ca3af;
  font-size: 14px;
}
.stream-link {
  color: #eab308;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.stream-link:hover {
  border-bottom-color: #eab308;
}
.highlights {
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: #1e1e1e;
  padding: 28px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}
.highlight-card:hover {
  transform: scale(1.02);
}
.highlight-card .hf-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.highlight-card h3 {
  color: #eab308;
  font-size: 18px;
  margin-bottom: 12px;
}
.highlight-card p {
  color: #9ca3af;
  font-size: 14px;
}
.news-list {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}
.news-list h2 {
  margin-bottom: 8px;
}
.news-subtitle {
  color: #9ca3af;
  margin-bottom: 36px;
  font-size: 14px;
  letter-spacing: 1px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-item {
  display: flex;
  gap: 20px;
  background: #1e1e1e;
  padding: 20px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, border-color 0.3s;
}
.news-item:hover {
  transform: translateY(-4px);
  border-color: #eab308;
}
.news-item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}
.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  color: #eab308;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-date::before {
  content: "⚡";
  font-size: 14px;
}
.news-content h3 {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-content p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.news-more {
  color: #eab308;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  align-self: flex-start;
}
.news-more:hover {
  border-bottom-color: #eab308;
}
.testimonials {
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #1e1e1e;
  padding: 32px;
  border-left: 3px solid #eab308;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 48px;
  color: #eab308;
  position: absolute;
  top: 12px;
  right: 20px;
  opacity: 0.3;
  font-family: Georgia, serif !important;
}
.testimonial-card p {
  color: #d1d5db;
  font-size: 15px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-author {
  color: #eab308;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-role {
  color: #9ca3af;
  font-size: 13px;
}
.brand-story {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}
.brand-story .container {
  max-width: 900px;
}
.brand-story p {
  color: #d1d5db;
  font-size: 15px;
  text-align: center;
  margin-bottom: 16px;
}
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.vm-card {
  background: #1e1e1e;
  padding: 36px;
  border-top: 3px solid #eab308;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.vm-card .vm-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.vm-card h3 {
  color: #eab308;
  font-size: 24px;
  margin-bottom: 16px;
}
.vm-card p {
  color: #9ca3af;
  font-size: 15px;
  text-align: center;
  margin: 0;
}
.partners {
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.partner-item {
  background: #1e1e1e;
  padding: 20px 28px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.partner-item:hover {
  border-color: #eab308;
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.1);
}
.partner-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.partner-item span {
  color: #d1d5db;
  font-weight: 600;
  font-size: 15px;
}
.download {
  background: linear-gradient(135deg, #171717 0%, #1a1a1a 50%, #241d0d 100%);
  border-bottom: 1px solid #2a2a2a;
}
.download-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.download-info h2 {
  margin-bottom: 20px;
}
.download-info p {
  color: #9ca3af;
  font-size: 15px;
  margin-bottom: 24px;
}
.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.download-qr {
  background: #1e1e1e;
  padding: 24px;
  text-align: center;
  border: 1px solid #2a2a2a;
  max-width: 220px;
}
.download-qr img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto 12px;
}
.download-qr span {
  color: #9ca3af;
  font-size: 13px;
}
.cta {
  background: linear-gradient(135deg, #eab308 0%, #fbbf24 100%);
  padding: 72px 0;
  text-align: center;
}
.cta h2 {
  color: #1a1a1a;
  font-size: 36px;
  margin-bottom: 16px;
}
.cta h2::after {
  background: #1a1a1a;
  box-shadow: none;
}
.cta p {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta .btn {
  background: #1a1a1a;
  color: #eab308;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.cta .btn:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.faq {
  background: #171717;
  border-bottom: 1px solid #2a2a2a;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #1e1e1e;
  padding: 28px 32px;
  margin-bottom: 16px;
  border-left: 3px solid #eab308;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.faq-item h3 {
  color: #eab308;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item h3::before {
  content: "Q";
  background: rgba(234, 179, 8, 0.15);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #eab308;
  flex-shrink: 0;
}
.faq-item p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 38px;
}
.footer {
  background: #0f0f0f;
  border-top: 2px solid #eab308;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  color: #eab308;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.footer-brand p {
  color: #9ca3af;
  font-size: 14px;
}
.footer-links h4 {
  color: #f5f5f5;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: #9ca3af;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #eab308;
}
.footer-contact h4 {
  color: #f5f5f5;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-contact p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  color: #9ca3af;
  font-size: 14px;
}
.footer-bottom a {
  color: #eab308;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #fbbf24;
}
@media (max-width: 992px) {
  .stats-grid, .advantages-grid, .events-grid, .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid, .stream-list, .testimonials-grid, .vision-mission, .download-cta {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .stats-grid, .advantages-grid, .events-grid, .highlights-grid {
    grid-template-columns: 1fr;
  }
  .news-item {
    flex-direction: column;
  }
  .news-item img {
    width: 100%;
    height: 180px;
  }
}