* {
  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, #1a0a0a 0%, #2d0e0e 50%, #4a1414 100%);
  color: #f5e6e6;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
}

/* 导航 */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ef4444;
}

.brand:hover {
  color: #f87171;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #e5d5d5;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ef4444;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(239, 68, 68, 0.18) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/img/game.webp') center/cover no-repeat;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #f87171, #ef4444, #f87171);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ef4444;
  letter-spacing: 2px;
}

.hero p {
  font-size: 18px;
  color: #d9c3c3;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #7f1d1d);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.6);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #f5e6e6;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(239, 68, 68, 0.5);
  transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 通用区块 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 24px;
}

.section-dark {
  background: rgba(26, 10, 10, 0.6);
  border-top: 1px solid rgba(239, 68, 68, 0.1);
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  color: #f5e6e6;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-header h2 span {
  color: #ef4444;
}

.section-header p {
  color: #c9a0a0;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* GEO */
.geo-intro {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.3) 0%, rgba(26, 10, 10, 0.8) 100%);
  padding: 80px 24px;
  border-left: 4px solid #ef4444;
}

.geo-intro .geo-text {
  font-size: 16px;
  line-height: 1.9;
  color: #e5d5d5;
}

/* 数据统计 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(239, 68, 68, 0.08);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 68, 68, 0.15);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #ef4444;
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  color: #c9a0a0;
  margin-top: 8px;
}

/* 核心优势 */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.adv-card {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.adv-card:hover {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.adv-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2), transparent 70%);
}

.adv-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.adv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f5e6e6;
}

.adv-card p {
  font-size: 14px;
  color: #c9a0a0;
}

/* 品牌故事 */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-image img {
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.story-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.story-text p {
  color: #d9c3c3;
  margin-bottom: 16px;
}

/* 游戏推荐 */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.game-card {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 68, 68, 0.15);
}

.game-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.game-card-body {
  padding: 24px;
}

.game-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 14px;
  color: #c9a0a0;
}

/* 焦点赛事 */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.12);
}

.event-card .event-type {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 14px;
  color: #c9a0a0;
  margin-bottom: 8px;
}

/* 新闻 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  display: flex;
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.1);
}

.news-image {
  width: 200px;
  min-height: 160px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.news-content {
  padding: 24px;
  flex: 1;
}

.news-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #f5e6e6;
  transition: color 0.3s;
}

.news-card:hover .news-content h3 {
  color: #ef4444;
}

.news-date {
  display: inline-block;
  font-size: 13px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 14px;
  color: #c9a0a0;
  line-height: 1.7;
}

/* 用户口碑 */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 28px;
}

.review-card .stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14px;
  color: #d9c3c3;
  font-style: italic;
  margin-bottom: 16px;
}

.review-card .reviewer {
  font-size: 13px;
  color: #c9a0a0;
  font-weight: 600;
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(239, 68, 68, 0.5);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #f5e6e6;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.faq-item summary::before {
  content: "▸";
  color: #ef4444;
  font-size: 18px;
}

.faq-item summary:hover {
  color: #ef4444;
}

.faq-item[open] summary::before {
  content: "▾";
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: #c9a0a0;
  font-size: 15px;
  line-height: 1.8;
}

/* 愿景使命 */
.vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.vision-card, .mission-card {
  background: rgba(26, 10, 10, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.12);
}

.vision-card .icon, .mission-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.vision-card h3, .mission-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.vision-card p, .mission-card p {
  color: #c9a0a0;
  font-size: 15px;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.4) 0%, rgba(26, 10, 10, 0.9) 100%);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: #d9c3c3;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 页脚 */
.footer {
  background: #120808;
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 16px;
  color: #ef4444;
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: #c9a0a0;
  line-height: 1.8;
  display: block;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ef4444;
}

.footer-bottom {
  border-top: 1px solid rgba(239, 68, 68, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #a08080;
  margin-bottom: 6px;
}

.footer-bottom a {
  color: #c9a0a0;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #ef4444;
}

/* 响应式 */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 16px 24px;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .story-wrap,
  .vision-wrap {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex-direction: column;
  }

  .news-image {
    width: 100%;
    height: 140px;
  }

  .hero {
    padding: 100px 24px 40px;
    min-height: auto;
  }
}