/* ============================================
   东方国潮风 - 赏金女王电子游戏网站样式表
   ============================================ */

/* === 字体引入 === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* === CSS变量 === */
:root {
  --china-red: #c41e24;
  --gilded-gold: #d4a843;
  --ink-black: #1a1a1a;
  --xuan-paper: #f5f0e8;
  --dark-bg: #111111;
  --card-bg: #222222;
  --text-light: #e8e0d0;
  --text-muted: #999;
  --border-gold: rgba(212, 168, 67, 0.3);
  --shadow-gold: rgba(212, 168, 67, 0.15);
  --gradient-red: linear-gradient(135deg, #c41e24, #a01018);
  --gradient-gold: linear-gradient(135deg, #d4a843, #b8922e);
  --gradient-dark: linear-gradient(180deg, #1a1a1a, #111111);
}

/* === 全局重置 === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background-color: var(--ink-black);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gilded-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--china-red);
}

/* === 通用容器 === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* === 干扰标签区块 === */
.jammer-block {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* === 导航栏 === */
.main-nav {
  background: var(--ink-black);
  border-bottom: 2px solid var(--gilded-gold);
  padding: 0;
  position: relative;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gilded-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 18px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gilded-gold);
  border-bottom-color: var(--china-red);
  background: rgba(196, 30, 36, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gilded-gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* === Hero 全屏视频背景模块 === */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.3) 50%, rgba(26,26,26,0.8) 100%);
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a843' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 3;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gilded-gold);
  text-shadow: 0 0 40px rgba(212,168,67,0.3), 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === 按钮样式 === */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--china-red);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 2px;
}

.btn-primary:hover {
  background: #a01018;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,30,36,0.4);
  color: #fff;
}

.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--gilded-gold);
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--gilded-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.btn-gold:hover {
  background: var(--gilded-gold);
  color: var(--ink-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.3);
}

/* === 模块标题通用样式 === */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gilded-gold);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--china-red);
  margin: 12px auto 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === 赏金女王故事背景图文模块 === */
.story-section {
  background: var(--ink-black);
  padding: 80px 0;
}

.story-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.story-image {
  flex: 0 0 45%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
}

.story-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.03);
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 2rem;
  color: var(--gilded-gold);
  margin-bottom: 20px;
}

.story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.9;
}

.story-text .highlight {
  color: var(--china-red);
  font-weight: 700;
}

/* === 注册引导+新人礼包模块 === */
.register-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.register-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.register-form-wrap {
  flex: 1;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
}

.register-form-wrap h2 {
  font-size: 1.8rem;
  color: var(--gilded-gold);
  margin-bottom: 10px;
}

.register-form-wrap .subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gilded-gold);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.gift-box {
  flex: 0 0 40%;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid var(--china-red);
  text-align: center;
}

.gift-box h3 {
  font-size: 1.5rem;
  color: var(--china-red);
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.countdown-item {
  text-align: center;
}

.countdown-item .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gilded-gold);
  background: rgba(212,168,67,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.countdown-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.gift-list {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.gift-list li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}

.gift-list li::before {
  content: '🎁 ';
}

/* === 游戏横向滚动卡片模块 === */
.games-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.games-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--gilded-gold) var(--card-bg);
}

.games-scroll::-webkit-scrollbar {
  height: 6px;
}

.games-scroll::-webkit-scrollbar-track {
  background: var(--card-bg);
  border-radius: 3px;
}

.games-scroll::-webkit-scrollbar-thumb {
  background: var(--gilded-gold);
  border-radius: 3px;
}

.game-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212,168,67,0.15);
  border-color: var(--gilded-gold);
}

.game-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.08);
}

.game-card-body {
  padding: 20px;
  text-align: center;
}

.game-card-body h3 {
  font-size: 1.15rem;
  color: var(--gilded-gold);
  margin-bottom: 12px;
}

.game-card-body .btn-play {
  display: inline-block;
  padding: 10px 28px;
  background: var(--gradient-red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.game-card-body .btn-play:hover {
  background: #a01018;
  color: #fff;
}

/* === 玩法攻略图解模块 === */
.guide-section {
  background: var(--ink-black);
  padding: 80px 0;
}

.guide-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.guide-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border-gold);
  text-align: center;
  transition: all 0.3s;
}

.guide-card:hover {
  border-color: var(--gilded-gold);
  transform: translateY(-4px);
}

.guide-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(196,30,36,0.1);
  border: 2px solid var(--china-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.guide-card h3 {
  font-size: 1.2rem;
  color: var(--gilded-gold);
  margin-bottom: 12px;
}

.guide-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.rtp-bar {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-top: 15px;
  overflow: hidden;
}

.rtp-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 6px;
  transition: width 1s ease;
}

/* === 牌照认证双模块 === */
.license-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a20 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.license-grid {
  display: flex;
  gap: 40px;
}

.license-card {
  flex: 1;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-gold);
  transition: all 0.3s;
}

.license-card:hover {
  border-color: var(--gilded-gold);
}

.license-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: rgba(212,168,67,0.1);
  border: 3px solid var(--gilded-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.license-card h3 {
  font-size: 1.3rem;
  color: var(--gilded-gold);
  margin-bottom: 12px;
}

.license-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.license-number {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: rgba(196,30,36,0.1);
  border: 1px solid var(--china-red);
  border-radius: 4px;
  color: var(--china-red);
  font-weight: 700;
  font-size: 0.9rem;
}

/* === 加密货币支付对比表模块 === */
.payment-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.payment-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.payment-table thead {
  background: rgba(212,168,67,0.15);
}

.payment-table th {
  padding: 16px 20px;
  text-align: left;
  color: var(--gilded-gold);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gilded-gold);
  white-space: nowrap;
}

.payment-table td {
  padding: 14px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.payment-table tbody tr {
  transition: background 0.3s;
}

.payment-table tbody tr:hover {
  background: rgba(212,168,67,0.05);
}

.payment-table .highlight-row {
  background: rgba(196,30,36,0.08);
  border-left: 3px solid var(--china-red);
}

.payment-table .highlight-row td {
  font-weight: 500;
}

.badge-recommend {
  display: inline-block;
  padding: 3px 10px;
  background: var(--china-red);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 700;
}

/* === FAQ折叠面板模块 === */
.faq-section {
  background: var(--ink-black);
  padding: 80px 0;
}

.faq-grid {
  display: flex;
  gap: 30px;
}

.faq-categories {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-cat-btn {
  padding: 14px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  color: var(--text-light);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  font-family: inherit;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: rgba(196,30,36,0.15);
  border-color: var(--china-red);
  color: var(--gilded-gold);
}

.faq-content {
  flex: 1;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  overflow: hidden;
  background: var(--card-bg);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s;
}

.faq-question:hover {
  color: var(--gilded-gold);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--gilded-gold);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* === 用户好评墙模块 === */
.reviews-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.reviews-masonry {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 25px;
  width: calc(33.333% - 14px);
  min-width: 280px;
  transition: all 0.3s;
}

.review-card:nth-child(2),
.review-card:nth-child(4) {
  width: calc(50% - 10px);
}

.review-card:hover {
  border-color: var(--gilded-gold);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-info h4 {
  color: var(--gilded-gold);
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-info .location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.review-stars {
  color: var(--gilded-gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.review-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === 在线客服入口模块 === */
.support-bar {
  background: var(--card-bg);
  border-top: 2px solid var(--gilded-gold);
  padding: 30px 0;
}

.support-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 1rem;
  padding: 12px 24px;
  background: rgba(212,168,67,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  transition: all 0.3s;
}

.support-item:hover {
  background: rgba(196,30,36,0.1);
  border-color: var(--china-red);
  color: var(--gilded-gold);
}

.support-icon {
  font-size: 1.5rem;
}

/* === 页脚 === */
.main-footer {
  background: #0d0d0d;
  border-top: 2px solid var(--gilded-gold);
  padding: 60px 0 0;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: var(--gilded-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--china-red);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gilded-gold);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gilded-gold);
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--china-red);
  border-color: var(--china-red);
  color: #fff;
}

.payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.payment-icon {
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--china-red);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 10px 0;
  border: 2px solid var(--gilded-gold);
}

.responsible-text {
  max-width: 800px;
  margin: 15px auto 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* === 面包屑导航 === */
.breadcrumb {
  padding: 15px 0;
  background: rgba(26,26,26,0.95);
  border-bottom: 1px solid rgba(212,168,67,0.1);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list li a {
  color: var(--gilded-gold);
}

.breadcrumb-list li + li::before {
  content: '>';
  margin-right: 8px;
  color: var(--text-muted);
}

/* === 内页通用样式 === */
.page-hero {
  background: linear-gradient(135deg, var(--ink-black), #2a1a1a);
  padding: 60px 0;
  text-align: center;
  border-bottom: 2px solid var(--border-gold);
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--gilded-gold);
  margin-bottom: 15px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0;
}

.content-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.content-main {
  flex: 1;
  min-width: 0;
}

.content-main h2 {
  font-size: 1.8rem;
  color: var(--gilded-gold);
  margin: 30px 0 15px;
}

.content-main h3 {
  font-size: 1.3rem;
  color: var(--gilded-gold);
  margin: 25px 0 12px;
}

.content-main p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.9;
}

.content-sidebar {
  flex: 0 0 300px;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  color: var(--gilded-gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.sidebar-card ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sidebar-card ul li a:hover {
  color: var(--gilded-gold);
}

.game-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.game-gallery-item {
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.game-gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.game-gallery-item:hover img {
  transform: scale(1.05);
}

.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.game-info-table th,
.game-info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.game-info-table th {
  color: var(--gilded-gold);
  font-weight: 600;
  width: 35%;
  background: rgba(212,168,67,0.05);
}

.game-info-table td {
  color: var(--text-light);
}

/* === APP下载页 === */
.download-section {
  text-align: center;
  padding: 80px 0;
}

.download-features {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.download-feature {
  flex: 1;
  min-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
}

.download-feature h3 {
  color: var(--gilded-gold);
  margin: 15px 0 10px;
  font-size: 1.1rem;
}

.download-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.download-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.qr-code-box {
  margin: 40px auto;
  max-width: 200px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 3px solid var(--gilded-gold);
}

/* === 关于我们模块 === */
.about-section {
  background: var(--ink-black);
  padding: 80px 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 1.8rem;
  color: var(--gilded-gold);
  margin: 30px 0 15px;
}

.about-content h3 {
  font-size: 1.3rem;
  color: var(--gilded-gold);
  margin: 25px 0 12px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.9;
}

/* === 响应式设计 === */
@media (max-width: 1024px) {
  .story-grid,
  .register-grid,
  .license-grid,
  .faq-grid {
    flex-direction: column;
  }

  .story-image {
    flex: none;
  }

  .gift-box {
    flex: none;
  }

  .faq-categories {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
  }

  .faq-cat-btn {
    white-space: nowrap;
  }

  .review-card,
  .review-card:nth-child(2),
  .review-card:nth-child(4) {
    width: calc(50% - 10px);
  }

  .content-sidebar {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-black);
    border-bottom: 2px solid var(--gilded-gold);
    z-index: 99;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .game-card {
    flex: 0 0 240px;
  }

  .guide-card {
    flex: 1 1 100%;
  }

  .review-card,
  .review-card:nth-child(2),
  .review-card:nth-child(4) {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
  }

  .support-inner {
    flex-direction: column;
    align-items: center;
  }

  .download-features {
    flex-direction: column;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .countdown-item .num {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 2rem;
  }

  .game-card {
    flex: 0 0 200px;
  }

  .register-form-wrap,
  .gift-box {
    padding: 25px;
  }
}
