/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: #A2A2A2;
  min-height: 100vh;
  color: #222;
}



/* 导航栏 */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #494545;
  box-shadow: 0 2px 20px rgba(39, 17, 81, 0.3);
  border-bottom: none;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-item > a:hover,
.nav-links > a:hover {
  color: #fff;
  background: rgba(151, 84, 199, 0.4);
}

.nav-item > a.active,
.nav-links > a.active {
  color: #fff;
  background: rgba(151, 84, 199, 0.4);
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* 导航链接容器 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 60px;
}

/* 单个导航项 */
.nav-item {
  position: relative;
}

.nav-item > a,
.nav-links > a:not(.logo) {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-item > a:hover,
.nav-links > a:hover {
  color: #fff;
  background: rgba(232, 230, 233, 0.4);
}

.nav-item > a.active,
.nav-links > a.active {
  color: #fff;
  background: rgba(100, 95, 95, 0.4);
}

.nav-item > a .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item.open > a .arrow {
  transform: rotate(180deg);
}

/* 主内容 */
main {
  padding-top: 70px;
  background: linear-gradient(180deg,
    #B9B9B9 70px,
    transparent 70px
  );
}

/* Hero区域 - 左右分栏 */
.hero.hero-split {
  height: 100vh;
  min-height: unset;
  padding: 70px 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: url('images/bg/bg.jpg') center top / cover no-repeat;
  background-position-y: -70px;
  position: relative;
  overflow: hidden;
}

/* 背景装饰 */
.hero.hero-split::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(151, 84, 199, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero.hero-split::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 3%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(49, 42, 68, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 左侧内容 */
.hero-left {
  flex: 1;
  max-width: 550px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-left h1 {
  font-size: 100px;
  font-weight: 900;
  background: linear-gradient(135deg, #3E2951 0%, #75629E 25%, #3E2951 50%, #75629E 75%, #3E2951 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: 4px;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(49, 42, 68, 0.2));
  text-align: center;
}

@keyframes titleShine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero-left > p {
  font-size: 18px;
  color: #4A4A5A;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* 下载按钮 - 玻璃拟态 */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  align-items: center;
}

.download-buttons .btn-row {
  display: flex;
  gap: 16px;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 44px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  width: 240px;
}

.btn-download:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(49, 42, 68, 0.25),
    0 0 20px rgba(151, 84, 199, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-download .btn-icon {
  font-size: 36px;
}

.btn-download .btn-text {
  display: flex;
  flex-direction: column;
}

.btn-download .btn-title {
  font-size: 20px;
  font-weight: 700;
}

.btn-download .btn-sub {
  font-size: 14px;
  opacity: 0.7;
}

/* 下载按钮 */
.download-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
}

/* 安卓按钮 - 纯白玻璃 */
.btn-download.android {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-download.android:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 180, 180, 0.6);
  box-shadow:
    0 12px 40px rgba(255, 150, 150, 0.25),
    0 0 20px rgba(255, 120, 120, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* iOS按钮 - 纯白玻璃 */
.btn-download.ios {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-download.ios:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(180, 200, 255, 0.6);
  box-shadow:
    0 12px 40px rgba(150, 180, 255, 0.25),
    0 0 20px rgba(120, 160, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* 快速导航 */
.quick-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.quick-nav h3 {
  font-size: 16px;
  color: #A2A2A2;
  margin-bottom: 16px;
  font-weight: 600;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #E2E2E2;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.nav-link:hover {
  border-color: #B9B9B9;
  color: #B9B9B9;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(49, 42, 68, 0.15);
}

.nav-link .nav-icon {
  font-size: 20px;
}

/* ========== 右侧：悬浮手机展示区 ========== */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 背景光晕装饰 */
.phone-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(151, 84, 199, 0.4) 0%, rgba(102, 126, 234, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* 悬浮手机 */
.floating-phone {
  width: 300px;
  height: 600px;
  background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%);
  border-radius: 36px;
  padding: 10px;
  position: relative;
  z-index: 2;
  
  /* 入场动画 */
  opacity: 0;
  transform: translateY(100px);
  animation: phone-enter 0.8s ease-out 0.2s forwards;
  
  /* 悬浮动画 */
  animation: 
    phone-enter 0.8s ease-out 0.2s forwards,
    phone-float 3s ease-in-out infinite 1s;
}

@keyframes phone-enter {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  75% {
    transform: translateY(10px) rotate(-1deg);
  }
}

/* 手机刘海 */
.phone-notch {
  width: 100px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 8px;
  position: relative;
}

.phone-notch::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #494545;
  border-radius: 50%;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* 手机屏幕 */
.phone-screen {
  width: 100%;
  height: calc(100% - 44px);
  background: linear-gradient(135deg, #FFF3E6 0%, #FFE5D9 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* 轮播容器 */
.screenshot-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 轮播指示器 */
.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #E2E2E2;
  width: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* 底部阴影 */
.phone-shadow {
  width: 200px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(49, 42, 68, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 20px;
  animation: shadow-pulse 3s ease-in-out infinite 1s;
}

@keyframes shadow-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.85);
    opacity: 0.3;
  }
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .hero.hero-split {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }
  
  .hero-left {
    text-align: center;
    max-width: 100%;
  }
  
  .download-buttons {
    justify-content: center;
  }
  
  .floating-phone {
    width: 200px;
    height: 400px;
  }
  
  .phone-notch {
    width: 70px;
    height: 20px;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 36px;
  }
  
  .download-buttons {
    flex-direction: column;
  }
  
  .btn-download {
    justify-content: center;
  }
  
  .floating-phone {
    width: 140px;
    height: 280px;
  }
  
  .phone-shadow {
    width: 120px;
    height: 20px;
  }
}

.btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #8e8282 0%, #9b9595 100%);
  color: #A2A2A2;
  box-shadow: 0 8px 30px rgba(77, 76, 72, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(140, 139, 135, 0.5);
}

.btn-secondary {
  background: #E2E2E2;
  color: #A2A2A2;
  border: 2px solid #A2A2A2;
}

.btn-secondary:hover {
  background: #494545;
  color: #fff;
  transform: translateY(-3px);
}

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

/* 各板块 section 全宽实色背景，遮住首页背景图 */
section[id] {
  position: relative;
  scroll-margin-top: -20px;
}

section[id]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
}

#home::before { background: url('images/bg/bg1.jpg') center / cover no-repeat, transparent; background-position: center top; }
#modes::before { background: linear-gradient(180deg, #A2A2A2 0%, #A2A2A2 100%); }
#news::before { background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%); }
#news {
  padding-top: 50px;
}
#characters::before { background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%); }
#characters { background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%); }

#strategy::before { background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%); }
#strategy {
  padding-top: 30px;
}
#about::before { background: linear-gradient(180deg, #A2A2A2 0%, #A2A2A2 100%); }
#contact::before { background: linear-gradient(180deg, #E1BEE7 0%, #E2E2E2 100%); }

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #494545;
  font-weight: 700;
}

/* 网格布局 */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 通用卡片 */
.card {
  background: #E2E2E2;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(39, 17, 81, 0.15);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #A2A2A2;
}

.card p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

/* 游戏玩法 */
.mode-section {
  position: relative;
  padding: 80px 0;
}

.mode-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(180deg, #A2A2A2 0%, #A2A2A2 100%);
  z-index: -1;
}

.mode-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mode-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(73, 69, 69, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #494545;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mode-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(73, 69, 69, 0.15);
  border-color: #494545;
}

.mode-card:hover::before {
  opacity: 1;
}

.mode-card.mode-highlight {
  background: #494545;
}

.mode-card.mode-highlight::before {
  opacity: 1;
  background: #fff;
}

.mode-card.mode-highlight h3,
.mode-card.mode-highlight p {
  color: #fff;
}

.mode-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.mode-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #494545;
}

.mode-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.mode-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

/* 响应式 */
@media (max-width: 900px) {
  .mode-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* 角色卡片 */
.character-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(73, 69, 69, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}



.character-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(73, 69, 69, 0.15);
  border-color: #bbb;
}

.character-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  box-shadow: none;
}

.character-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.character-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #494545;
}

.character-card .role {
  font-size: 12px;
  color: #A2A2A2;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}

.character-card .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 页脚 */
footer {
  background: #E2E2E2;
  box-shadow: 0 -2px 20px rgba(63, 42, 82, 0.1);
  padding: 50px 0;
  /* Footer 文字样式 */
.footer-links,
.footer-copy,
.footer-social {
  text-align: center;
  margin-bottom: 16px;
  color: #666;
  font-size: 13px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.social-link {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-link i {
  font-size: 18px;
}

.social-link:hover {
  color: #FF6B35;
}

.footer-links span,
.footer-copy span {
  color: #888;
}

.footer-copy .divider {
  margin: 0 12px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #FF6B35;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.social-link {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.social-link:hover {
  color: #FF6B35;
}

.divider {
  color: #ccc;
  margin: 0 8px;
}
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #A2A2A2;
  text-align: center;
  font-weight: 700;
}

.qq-group {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f2f2f2 0%, #fffffd 100%);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 320px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qq-group:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.qq-icon {
  font-size: 40px;
}

.qq-info h4 {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 4px;
  font-weight: 600;
}

.qq-info span {
  font-size: 13px;
  color: #999;
}

/* 响应式 */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  
  .nav-item > a,
  .nav-links > a {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 38px;
    letter-spacing: 2px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .container {
    padding: 50px 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 220px;
  }
}

/* 区块通用样式 */
main section {
  transition: opacity 0.3s ease;
}

/* 标签导航 */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #2c2b2c;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  color: #A2A2A2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 小羊阵营按钮 - 薰衣草紫 */
.tab-btn.tab-sheep {
  border-color: #B9B9B9 !important;
  color: #B9B9B9 !important;
  background: #fff !important;
}
.tab-btn.tab-sheep.active {
  background: linear-gradient(135deg, #B9B9B9 0%, #B9B9B9 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(149, 117, 205, 0.4);
  border-color: #B9B9B9 !important;
}
.tab-btn.tab-sheep:hover:not(.active) {
  background: linear-gradient(135deg, #F8F0FF 0%, #EDE7F6 100%) !important;
  transform: translateY(-2px);
}

/* 狼人阵营按钮 - 深紫黑 */
.tab-btn.tab-wolf {
  border-color: #B9B9B9 !important;
  color: #B9B9B9 !important;
  background: #fff !important;
}
.tab-btn.tab-wolf.active {
  background: linear-gradient(135deg, #B9B9B9 0%, #B9B9B9 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(49, 27, 146, 0.4);
  border-color: #B9B9B9 !important;
}
.tab-btn.tab-wolf:hover:not(.active) {
  background: linear-gradient(135deg, #F8F0FF 0%, #EDE7F6 100%) !important;
  transform: translateY(-2px);
}

/* 角色区域切换 */
.character-section {
  display: none;
  min-height: 400px;
}

.character-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* 角色卡片容器 */
.char-cards {
    background: #A2A2A2;
  border-radius: 24px;
  padding: 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 网格6列 */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 新闻列表 */
.news-tags {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.news-tags .tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  background: rgba(73, 69, 69, 0.1);
  color: #494545;
  border: 1px solid #494545;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-tags .tag.active,
.news-tags .tag:hover {
  background: #494545;
  color: #fff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
}

.news-item {
  display: flex;
  gap: 24px;
  background: #f0f0f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  min-height: 120px;
}

.news-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(73, 69, 69, 0.15);
}

.news-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: #ddd;
  border-radius: 12px;
  padding: 16px 8px;
  color: #555;
}

.news-date .day {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.news-date .month {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.9;
}

.news-content {
  flex: 1;
}

.news-content h3 {
  font-size: 18px;
  color: #494545;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 攻略类型切换 */
.strategy-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 25px;
}

.strategy-tabs .tab-btn {
  border: 2px solid #B9B9B9;
  color: #B9B9B9;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.strategy-tabs .tab-btn.active {
  background: linear-gradient(135deg, #494545 0%, #6a6464 100%);
  color: #fff;
  border-color: #494545;
  box-shadow: 0 8px 25px rgba(73, 69, 69, 0.4);
}
.strategy-tabs .tab-btn:hover:not(.active) {
  border-color: #494545;
  color: #494545;
  transform: translateY(-2px);
}

.strategy-content {
  animation: fadeIn 0.3s ease;
  margin-bottom: 40px;
}

/* 攻略分页 */
.strategy-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}

.strategy-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #494545 0%, #6a6464 100%);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(73, 69, 69, 0.4);
}

.strategy-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(73, 69, 69, 0.5);
}

.strategy-arrow:disabled {
  visibility: hidden;
}

.strategy-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: calc(3 * 110px + 2 * 16px);
}

.strategy-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.strategy-content {
  animation: fadeIn 0.3s ease;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 40px;
}

.strategy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a8b4d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.strategy-dot:hover {
  background: #7a88b8;
}

.strategy-dot.active {
  background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%);
  transform: scale(1.2);
}

.strategy-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(158, 118, 179, 0.12);
  cursor: pointer;
  min-height: 100px;
  border: 2px solid rgba(158, 118, 179, 0.15);
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(158, 118, 179, 0.25);
  border-color: rgba(158, 118, 179, 0.35);
}

.strategy-thumb {
  width: 200px;
  height: 120px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #E1BEE7 0%, #E2E2E2 100%);
}

.strategy-thumb.video {
  background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%);
  position: relative;
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
}

.video-play-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #A2A2A2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-title-overlay {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.strategy-thumb.video::after {
  display: none;
}

.strategy-thumb.video::after {
  display: none;
}

.strategy-thumb.image {
  background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%);
  background-size: cover;
  background-position: center;
}

.strategy-info {
  flex: 1;
}

.strategy-info h3 {
  font-size: 18px;
  color: #010101;
  margin-bottom: 8px;
  font-weight: 600;
}

.strategy-info .author {
  font-size: 13px;
  color: #B9B9B9;
  margin-bottom: 10px;
}

.strategy-info .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.strategy-stats {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
}

/* 关于我们 */
.about-content {
  display: flex;
  gap: 60px;
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 30px rgba(73, 69, 69, 0.10);
  border: 2px solid rgba(185, 185, 185, 0.3);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 24px;
  color:#242424;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #F8F8F8 0%, #EFEFEF 100%);
  border: 1px solid rgba(185, 185, 185, 0.3);
  
}

.feature-icon {
  font-size: 28px;
}

.feature-item strong {
  display: block;
  font-size: 15px;
  color: #A2A2A2;
  margin-bottom: 4px;
}

.about-image {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #E2E2E2 0%, #E2E2E2 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(63, 61, 63, 0.3);
}

/* 留言表单 */
.message-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(94, 75, 139, 0.12);
  border: 2px solid rgba(98, 94, 100, 0.15);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(158, 118, 179, 0.2);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 4px rgba(158, 118, 179, 0.15);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg,#494545 0%, #6a6464 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(73, 69, 69, 0.4);
}

/* 联系方式居中 */
#contact {
  text-align: center;
}

#contact .qq-group {
  margin: 0 auto;
}

/* 视频播放标题 - 可点击 */
.video-title {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
}

.video-title .title-text {
  background: linear-gradient(135deg, #fff 0%, #FFE5D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-title {
  position: relative;
  display: inline-block;
  padding-right: 0px;
}

.video-title .play-icon {
  position: absolute;
  top: 0px;
  right: 30px;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  animation: pulse-glow 2s ease-in-out infinite;
  cursor: pointer;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.3);
  }
}

.video-title .play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.video-title .play-icon:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

/* 视频模态框 */
.video-modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-content {
  width: 100%;
  max-width: 400px;
  background: #494545;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}


.video-modal-header {
  padding: 16px 20px;
  background: #252525;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-wrapper {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 响应式 - 移动端适配 */
@media (max-width: 1024px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    width: 100%;
    height: 150px;
  }
}

/* ============================================
   游戏玩法 - 3D 轮播
   ============================================ */

#modes {
  background: #A2A2A2;
  padding: 40px 0 80px;
  overflow: hidden;
}

/* 轮播最外层：居中定宽，子元素不参与flex */
.play-carousel {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
}

/* 轨道：居中定宽，高度撑开所有卡片 */
.carousel-track {
  position: relative;
  width: 900px;
  height: 420px;
  margin: 0 auto;
}

/* 卡片 */
.play-card {
  position: absolute;
  top: 28px;
  left: 50%;
  margin-left: -140px;
  width: 280px;
  height: 400px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.55s ease;
  cursor: pointer;
}

/* 默认状态（JS 切换后重新覆盖 data-index） */
.play-card[data-index="0"] { transform: translateX(-360px) scale(0.82); opacity: 0.5; z-index: 1; }
.play-card[data-index="1"] { transform: translateX(0) scale(1.3); opacity: 1.0; z-index: 3; }
.play-card[data-index="2"] { transform: translateX(360px) scale(0.82); opacity: 0.5; z-index: 1; }

/* 中间卡片 - 流动渐变光效 */
.play-card[data-index="1"]::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: linear-gradient(
    var(--angle, 0deg),
    #A2A2A2,
    #494545,
    #A2A2A2
  );
  background-size: 400% 400%;
  animation: glow-flow 3s linear infinite;
  z-index: -1;
  opacity: 0.8;
}

.play-card[data-index="1"] {
  overflow: visible;
}

.play-card[data-index="1"] .play-card-inner {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

@keyframes glow-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@supports (background: conic-gradient(from 0deg, #A2A2A2, #494545)) {
  .play-card[data-index="1"]::before {
    --angle: 0deg;
  }
  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes glow-flow {
    0%   { --angle: 0deg; }
    100% { --angle: 360deg; }
  }
}

.play-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 40px rgba(73, 69, 69, 0.15);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.play-card:hover .play-card-inner {
  box-shadow: 0 16px 60px rgba(39, 17, 81, 0.3);
}

/* 卡片内图片 */
.play-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(180deg, #A2A2A2 0%, #A2A2A2 100%);
}

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

.play-card:hover .play-card-img img {
  transform: scale(1.04);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #8470ae;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  text-align: center;
  gap: 8px;
  line-height: 1.6;
}

/* 悬浮层：悬停显示查看详情按钮 */
.play-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 17, 81, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-card:hover .play-card-overlay {
  opacity: 1;
}

.play-detail-btn {
  background: #494545;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.play-detail-btn:hover {
  transform: scale(1.06);
  background: #A2A2A2;
}

/* 卡片底部说明文字 */
.play-card-caption {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.play-card-caption h3 {
  font-size: 18px;
  font-weight: 800;
  color: #494545;
  margin: 0;
}

.play-card-caption p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.carousel-track { height: 420px; margin: 0 auto; }

.play-card { width: 280px; height: 400px; }

/* 圆点：绝对定位在轮播区正下方 */
.play-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 120px;
}

.play-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(73, 69, 69, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.play-dot.active {
  background: #494545;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(73, 69, 69, 0.5);
}

/* ============================================
   玩法详情弹窗
   ============================================ */

.play-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.play-modal.open {
  display: flex;
}

.play-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,14,40,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.play-modal-content {
  position: relative;
  z-index: 1;
  width: min(680px, 92vw);
  max-height: 88vh;
  background: #E2E2E2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(20,14,40,0.4);
  animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.play-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(136,112,142,0.1);
  border: none;
  color: #8470ae;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-modal-close:hover {
  background: rgba(136,112,142,0.2);
  transform: scale(1.1);
}

.play-modal-body {
  padding: 40px;
  overflow-y: auto;
  max-height: 88vh;
}

.play-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  background: #e8e0f5;
}

.play-modal-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(132,112,174,0.12);
  color: #8470ae;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.play-modal-title {
  font-size: 28px;
  font-weight: 900;
  color: #1a1030;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.play-modal-desc {
  font-size: 16px;
  color: #4a4060;
  line-height: 1.8;
  margin-bottom: 20px;
}

.play-modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.play-modal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2d2650;
  padding: 10px 16px;
  background: #f8f4ff;
  border-radius: 10px;
  border-left: 3px solid #8470ae;
}

.play-modal-features li .feat-icon {
  font-size: 18px;
}

/* ============================================
   响应式 - 玩法轮播
   ============================================ */

@media (max-width: 700px) {
  .carousel-track { height: 340px; }

  .play-card {
    top: 20px;
    width: 220px;
    height: 320px;
    margin-left: -110px;
  }

  .play-card[data-index="0"] { transform: translateX(-280px) scale(0.76); opacity: 0.5; }
  .play-card[data-index="1"] { transform: translateX(0)     scale(1.3); opacity: 1.0; z-index: 3; }
  .play-card[data-index="2"] { transform: translateX(280px) scale(0.76); opacity: 0.5; }

  .play-modal-body { padding: 28px 24px; }
  .play-modal-img  { height: 200px; }
}

@media (max-width: 480px) {
  .play-card[data-index="0"] { transform: translateX(-200px) scale(0.70); opacity: 0.4; }
  .play-card[data-index="1"] { transform: translateX(0)     scale(1.3); opacity: 1.0; z-index: 3; }
  .play-card[data-index="2"] { transform: translateX(200px) scale(0.70); opacity: 0.4; }
}

@media (max-width: 768px) {
  .grid-6 {
    grid-template-columns: 1fr;
  }
  
  .news-item {
    flex-direction: column;
    gap: 16px;
  }
  
  .news-date {
    width: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
  }
  
  .news-date .day {
    font-size: 20px;
  }
  
  .strategy-card {
    flex-direction: column;
  }
  
  .strategy-thumb {
    width: 100%;
    height: 150px;
  }
  
  .about-content {
    padding: 28px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .message-form {
    padding: 24px;
  }
}

/* 分页按钮样式 */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.page-btn {
  padding: 10px 18px;
  border: 2px solid rgba(73, 69, 69, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: #494545;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 48px;
}

.page-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #494545 0%, #494545 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(73, 69, 69, 0.3);
}

.page-btn.active {
  background: linear-gradient(135deg, #494545 0%, #494545 100%);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ========== 图文攻略弹窗 ========== */
.strategy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.strategy-modal.show {
  display: flex;
}

.strategy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.strategy-modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(94, 75, 139, 0.3);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.strategy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, #A2A2A2 0%, #A2A2A2 100%);
  color: #fff;
}

.strategy-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.strategy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #fff;
}

.strategy-modal-images {
  margin-bottom: 20px;
  position: relative;
}

.strategy-carousel {
  width: 100%;
  max-height: 600px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1049/2330;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.carousel-slide.active {
  opacity: 1;
}

.strategy-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(87, 79, 79, 0.9);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #494545;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #494545;
  transform: scale(1.2);
}

.strategy-modal-images.multiple .strategy-modal-image {
  margin-bottom: 0;
}

.strategy-modal-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  white-space: pre-line;
}

/* 攻略卡片hover效果 */
.strategy-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(158, 118, 179, 0.3);
}

.strategy-thumb {
  position: relative;
  overflow: hidden;
}

.strategy-hover-btn {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.strategy-hover-btn .preview-hint {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PC端hover显示按钮 */
@media (min-width: 769px) {
  .strategy-thumb.image:hover .strategy-hover-btn {
    display: flex;
  }
}

/* 移动端直接点击 */
@media (max-width: 768px) {
  .strategy-modal-content {
    width: 95%;
    max-height: 80vh;
  }

  .strategy-modal-image {
    height: 180px;
  }

  .strategy-modal-text {
    font-size: 14px;
  }
}
/* ========== 经营服务·虚拟商品 ========== */
.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.shop-tab {
  padding: 14px 32px;
  border: 2px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-tab:hover {
  border-color: #aaa;
  color: #000;
  transform: translateY(-2px);
}

.shop-tab.active {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF4500 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

/* Tab内容 */
.shop-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.shop-content.active {
  display: block;
}

/* 首充礼包卡片 */
.first-reward-card {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.first-reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 20px;
  padding: 20px;
}

.first-reward-card {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border: 2px solid #ffd700;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
}

.first-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a1a2e;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 20px;
}
.first-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B6B;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.first-reward-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.first-reward-card h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 12px;
}

.first-reward-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
}

.first-reward-items {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.first-price {
  margin: 24px 0;
}

.original-price {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  margin-right: 12px;
}

.arrow {
  font-size: 18px;
  color: #FF6B6B;
  margin: 0 8px;
}

.special-price {
  font-size: 36px;
  font-weight: 800;
  color: #FF6B6B;
}

.btn-first-reward {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF4500 100%);
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.btn-first-reward:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
}

/* 充值中心 */
.recharge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.recharge-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(91, 88, 88, 0.2);
}

.recharge-card:hover {
  transform: translateY(-6px);
  border-color: #fdf8f8;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.diamond-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.diamond-count {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 8px;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 16px;
}

.btn-recharge {
  background: linear-gradient(135deg, #6B5B5B 0%, #5A4D4D 100%);
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-recharge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 特权服务 */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.vip-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(115, 112, 112, 0.2);
  border: 2px solid transparent;
}

.vip-card:hover {
  transform: translateY(-6px);
  border-color: #6B5B5B;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.vip-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.vip-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 8px;
}

.vip-price {
  font-size: 28px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 16px;
}

.vip-price span {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.vip-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.vip-benefits li {
  font-size: 14px;
  color: #B0B0B0;
  padding: 8px 0;
  border-bottom: 1px solid #444;
}

.vip-benefits li:last-child {
  border-bottom: none;
}

.btn-vip {
  background: linear-gradient(135deg, #6B5B5B 0%, #5A4D4D 100%);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-vip:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 永久特权 */
.vip-permanent {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border: 2px solid #6B5B5B;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vip-permanent-icon {
  font-size: 48px;
}

.vip-permanent-info {
  flex: 1;
  min-width: 150px;
}

.vip-permanent-info h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 4px;
}

.vip-permanent-info p {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
}

.vip-permanent-info p span {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.vip-permanent-benefits {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.vip-permanent-benefits li {
  font-size: 14px;
  color: #B0B0B0;
  padding: 4px 0;
}

/* 购买说明 */
.purchase-notice {
  max-width: 600px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
}

.purchase-notice p:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #B0B0B0;
  margin-bottom: 8px;
}

.purchase-notice p:last-child {
  font-size: 13px;
  color: #888;
}

/* 响应式 */
@media (max-width: 768px) {
  .recharge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vip-grid {
    grid-template-columns: 1fr;
  }
  
  .vip-permanent {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .recharge-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-tabs {
    flex-wrap: wrap;
  }
  
  .shop-tab {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ========== 游戏弹窗 ========== */
.game-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.game-modal.open {
  display: flex;
}

.game-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.game-modal-container {
  position: relative;
  z-index: 1;
  width: 380px;
  aspect-ratio: 9 / 16;
  max-height: 90vh;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

.game-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #252525;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-modal-header h3 {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.game-modal-header .close-btn {
  background: rgba(255, 255, 255, 0.1);
}

.game-modal-body {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.game-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 480px) {
  .game-modal-container {
    max-width: 100%;
    border-radius: 0;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }
  .game-modal-backdrop {
    display: none;
  }
  .game-modal-header {
    top: 0;
  }
  .game-modal-body {
    top: 52px;
  }
}

/* ========== 立即游玩按钮 ========== */
.btn-play-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 44px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(168, 85, 247, 0.9) 50%, rgba(192, 132, 252, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 496px;
  box-shadow: 
    0 8px 32px rgba(139, 92, 246, 0.4),
    0 0 0 0 rgba(139, 92, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse-glow-purple 2s ease-in-out infinite;
}

.btn-play-now:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(168, 85, 247, 1) 50%, rgba(192, 132, 252, 1) 100%);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(139, 92, 246, 0.5),
    0 0 30px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: none;
}

.btn-play-now:active {
  transform: translateY(-2px);
}

@keyframes pulse-glow-purple {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(139, 92, 246, 0.4),
      0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(139, 92, 246, 0.4),
      0 0 20px 5px rgba(139, 92, 246, 0.3);
  }
}

/* 移动端适配 */
@media (max-width: 600px) {
  .btn-play-now {
    padding: 20px 32px;
    font-size: 16px;
  }
  
  .download-buttons {
    width: 100%;
    max-width: 280px;
  }
}