* {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-dark: #000000;
  --bg-panel: #121212;
  --bg-card: rgba(255,255,255,0.03);
  --gold: #d4a43a;
  --gold-dim: rgba(212,164,58,0.10);
  --red-dark: #8b1a1a;
  --text-light: #f0ece4;
  --text-dark: #b0aaa0;
  --text-muted: #777;
  --border-card: rgba(255,255,255,0.06);
  --border-glow: rgba(212,164,58,0.15);
}
body {
  background: linear-gradient(160deg, #000000 0%, #111111 40%, #1a1a1a 100%);
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 24px;
}
.nav-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-right: auto;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-dark);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.nav-links a:hover {
  color: var(--gold);
}

/* Hero */
.hero-section {
  position: relative;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212,164,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-content img {
  max-height: 220px;
  margin: 0 auto 24px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #f0ece4 0%, #d4a43a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.3;
}
.hero-geo {
  max-width: 860px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: #c8c0b5;
  line-height: 1.9;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #d4a43a, #b8860b);
  color: #000;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 30px rgba(212,164,58,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212,164,58,0.35);
}
.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  transition: border-color 0.3s, background 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* Section */
.section {
  padding: 70px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title-gold {
  color: var(--gold);
}

/* Stats */
.stats-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.stat-num {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #d4a43a, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat-label {
  font-size: 15px;
  color: var(--text-dark);
  margin-top: 8px;
  letter-spacing: 1px;
}
.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 40px 26px;
  text-align: center;
  transition: all 0.3s ease;
}
.adv-card:hover {
  border-color: var(--border-glow);
  background: rgba(212,164,58,0.04);
}
.adv-icon {
  font-size: 44px;
  margin-bottom: 16px;
}
.adv-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.adv-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Story */
.story-section {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-grid img {
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.story-text p {
  font-size: 16px;
  color: #c8c0b5;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Featured Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.event-card {
  background: linear-gradient(135deg, #141414, #1e1e1e);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.event-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212,164,58,0.08) 0%, transparent 70%);
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}
.event-card img {
  border-radius: 12px;
  margin-bottom: 16px;
  height: 140px;
  object-fit: cover;
  width: 100%;
}
.event-card .event-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.event-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.event-card p {
  font-size: 13px;
  color: var(--text-dark);
}

/* Game Recommend */
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
}
.game-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.game-card img {
  border-radius: 10px;
  margin-bottom: 14px;
  height: 120px;
  width: 100%;
  object-fit: cover;
}
.game-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.game-card .game-rating {
  font-size: 13px;
  color: var(--gold);
}

/* Rankings */
.rankings-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
}
.rank-list {
  max-width: 720px;
  margin: 0 auto;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: border-color 0.3s;
}
.rank-item:hover {
  border-color: var(--border-glow);
}
.rank-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  width: 42px;
  text-align: center;
}
.rank-info {
  flex: 1;
}
.rank-info h3 {
  font-size: 16px;
  font-weight: 700;
}
.rank-info .rank-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.rank-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.hl-card:hover {
  border-color: var(--border-glow);
}
.hl-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.hl-body {
  padding: 20px;
}
.hl-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.hl-body p {
  font-size: 13px;
  color: var(--text-dark);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}
.testimonial-card .quote {
  font-size: 15px;
  color: #c8c0b5;
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.testimonial-card .author-title {
  font-size: 12px;
  color: var(--text-muted);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}

/* News */
.news-section {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3), transparent);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.news-date {
  font-size: 13px;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.news-tag {
  font-size: 12px;
  color: #999;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}
.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  flex: 1;
}
.news-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* FAQ */
.faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 24px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: var(--border-glow);
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 15px;
  color: #c8c0b5;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  text-align: center;
  padding: 90px 24px;
}
.cta-section .cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section .cta-desc {
  max-width: 650px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: #c8c0b5;
}
.cta-table {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px 30px;
  text-align: center;
  color: var(--text-dark);
  font-size: 14px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-info {
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #aaa;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-copy {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-content h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
  }
  .nav-links a { font-size: 13px; }
  .section { padding: 50px 16px; }
  .section-title { font-size: 26px; }
}