﻿/* ============================================================
   全局重置 & 基础变量
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #c9a15a;
  --gold-light: #f0d080;
  --dark:   #0a0805;
  --nav-h:  64px;
  --transition: 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}

html, body { width: 100%; height: 100%; overflow: hidden; background: var(--dark); font-family: "Microsoft YaHei", "PingFang SC", sans-serif; }

/* ============================================================
   固定顶部导航
============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1000;
  transition: background 0.4s;
}
#nav.scrolled { background: rgba(5,3,2,.95); border-bottom: 1px solid rgba(201,161,90,.25); }

.nav-logo {
  display: flex;
  align-items: flex-start;
  padding-top: 50px;
}
.nav-logo img { display: block; }

.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links li { display: flex; }
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: #f0d080; font-size: 17px; }
.nav-links a:hover::after { transform: scaleX(1); }
/* 当前页导航项高亮 */
.nav-links a.nav-active {
  color: #f0d080;
  font-size: 17px;
  transition: color 0.3s, font-size 0.3s;
}
.nav-links a.nav-active::after { transform: scaleX(0); }

.nav-btn {
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  color: #fff;
  border: 1px solid rgba(255,100,80,.4);
  padding: 9px 24px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: filter 0.3s;
}
.nav-btn:hover { filter: brightness(1.2); }

/* ============================================================
   分页容器
============================================================ */
#pages {
  width: 100%;
  height: 100%;
  transition: transform var(--transition);
}

/* ============================================================
   通用 Section 样式
============================================================ */
.page {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 背景层 */
.page-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease-out;
}
.page.active .page-bg { transform: scale(1.04); }

/* 通用遮罩 */
.page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* 内容层 */
.page-content {
  position: relative;
  z-index: 2;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

/* 章节标题装饰 */
.section-title {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--gold-light);
  letter-spacing: 8px;
  text-shadow: 0 2px 20px rgba(201,161,90,.5);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  letter-spacing: 4px;
  margin-bottom: 48px;
}

/* 金色分割线装饰 */
.deco-line {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.deco-line::before, .deco-line::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.deco-line span {
  color: var(--gold);
  font-size: 18px;
}

/* ============================================================
   PAGE 1 — 首页 Banner
============================================================ */
#page-1 .page-bg {
  background-image: url('新官网美术资源/新背景图带字.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#page-1 .page-overlay {
  background: transparent;
}

.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn-primary, .btn-secondary {
  padding: 14px 44px;
  font-size: 16px;
  letter-spacing: 3px;
  cursor: pointer;
  border: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, #a01010 0%, #d4302a 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(180,40,30,.4);
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.btn-secondary:hover { background: rgba(201,161,90,.12); transform: translateY(-2px); }

/* ============================================================
   PAGE 3 — 门派介绍
============================================================ */
}

.mp-tags {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mp-tag {
  cursor: pointer;
  transition: all 0.3s;
}

.mp-tag:hover { opacity: 0.8; }

/* 右侧门派内容 */
.mp-content {
  display: block;
  flex: 1;
}

/* 左侧信息区 */
.mp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

.mp-name {
  font-size: 80px;
  color: #f0d080;
  font-family: 'SimSun', '宋体', serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 30;
}

.mp-divider {
  width: 500px;
  height: 2px;
  background: linear-gradient(to right, #f0d080, transparent);
  margin-top: -10px;
  margin-bottom: 0;
}

.mp-desc {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  white-space: pre-wrap;
  height: calc(14px * 1.8 * 7);
  overflow: hidden;
}

.mp-skills {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mp-skill-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mp-skill-btn {
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.mp-skill-btn:hover, .mp-skill-btn.active {
  border: 1px solid #f0d080;
}

.mp-skill-desc {
  color: #aaa;
  font-size: 13px;
}

.mp-skill-gif {
  width: auto;
  height: auto;
  max-width: 280px;
  margin-top: 10px;
}

/* 右侧角色图 */
.mp-char {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.mp-char-img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

/* ============================================================
   PAGE 2 — 游戏特色（Tab+轮播）
============================================================ */

/* 内容区域整体下移100px */
#page-2 .gx-content-wrapper {
  margin-top: 100px;
}

.gx-tab-bar {
  display: flex;
  gap: 49px;
  justify-content: center;
  align-items: center;
  margin-bottom: 42px;
  background-image: url('新官网美术资源/小按钮装饰线.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

.gx-tab-img {
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}
.gx-tab-img:hover { opacity: 0.85; }

/* 轮播区域 */
.gx-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 34px;
}

.gx-arrow-left {
  margin-right: 80px;
}

.gx-arrow-right {
  margin-left: 80px;
}

/* 卡片容器（叠放效果） */
.gx-cards {
  position: relative;
  width: 931px;
  height: 430px;
}

/* 每张卡片 - 绝对定位实现叠放 */
.gx-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 931px;
  height: 430px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}

/* 活跃卡片在最前 */
.gx-card.active {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}

/* 左侧卡片（缩小显示，向右偏移100px） */
.gx-card.prev-1 {
  z-index: 5;
  transform: translate(calc(-50% - 150px), -50%) scale(0.8);
  opacity: 0.7;
  pointer-events: auto;
}

/* 右侧卡片（缩小显示，向左偏移100px） */
.gx-card.next-1 {
  z-index: 5;
  transform: translate(calc(-50% + 150px), -50%) scale(0.8);
  opacity: 0.7;
  pointer-events: auto;
}

/* 卡片装饰框（内容框背景） */
.gx-card-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 931px;
  height: 430px;
  background-image: url('新官网美术资源/游戏特色内容框.webp');
  background-size: 931px 430px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* 卡片内的内容图片（在内容框上方，位置偏移13px, 10px） */
.gx-card-img {
  position: absolute;
  top: 10px;
  left: 13px;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

/* 左右翻页箭头 */
.gx-arrow {
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
  z-index: 20;
}
.gx-arrow:hover { 
  opacity: 0.8; 
  transform: scale(1.1);
}

/* 底部标签指示图 */
.gx-dots {
  display: flex;
  gap: 37px;
  justify-content: center;
}
.gx-tab-label {
  cursor: pointer;
  transition: all 0.3s;
}
#page-2 .page-bg {
  background-image: url('新官网美术资源/游戏特色底图.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#page-2 .page-overlay {
  background: transparent;
}
#page-2 .page-content {
  min-height: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 90vw;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(201,161,90,.2);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,161,90,.6);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 24px rgba(201,161,90,.15);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: radial-gradient(circle, rgba(201,161,90,.2) 0%, transparent 70%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  letter-spacing: 1px;
}

/* ============================================================
   PAGE 3 — 门派介绍
============================================================ */
#page-3 .page-bg {
  background-image: url('新官网美术资源/门派介绍背景图.webp');
  background-size: cover;
  background-position: center;
}
#page-3 .page-overlay {
  background: transparent;
}
#page-3 .page-content {
  max-width: 1920px;
  margin: 0 auto;
}

/* 内容wrapper */
.mp-content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 100px;
  padding: 0 40px;
  position: relative;
}

/* 左侧门派标签（竖排） */
.mp-sidebar {
  flex-shrink: 0;
  padding-left: 200px;
}

.mp-tags {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mp-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.mp-tag-icon {
  width: auto;
  height: auto;
}

.mp-tag-name {
  color: #fff;
  font-size: 22px;
  font-family: 'Microsoft YaHei', sans-serif;
  letter-spacing: 2px;
}

/* 高亮状态：黄色文字 */
.mp-tag.active .mp-tag-name {
  color: #f0d080;
}

.mp-tag span {
  font-size: 16px;
  letter-spacing: 2px;
}

/* 右侧内容区 */
.mp-content {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 左侧信息区 */
.mp-info {
  flex: 1;
  text-align: left;
  margin-top: -20px;
  position: relative;
  z-index: 20;
}

.mp-name {
  font-size: 80px;
  color: #f0d080;
  font-family: 'LiSu', '隶书', serif;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  z-index: 30;
}

.mp-divider {
  width: 300px;
  height: 2px;
  background: linear-gradient(to right, #f0d080, transparent);
  margin-top: -10px;
  margin-bottom: 0;
  text-align: left;
}

.mp-desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
}

/* 技能按钮 */
.mp-skill-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.mp-skill-btn {
  padding: 8px 20px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 2px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.3s;
  text-align: center;
}

/* 未选中状态：黄色边框，透明底，黄色文字 */
.mp-skill-btn:not(.active) {
  border: 1px solid #f0d080;
  color: #f0d080;
}

/* 选中状态：黄色底，白色文字 */
.mp-skill-btn.active {
  background: #f0d080;
  color: #ffffff;
}

.mp-skill-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.mp-skill-gif {
  width: auto;
  height: auto;
  max-width: 280px;
  display: block;
}

/* 右侧角色图 */
.mp-char {
  position: absolute;
  right: 200px;
  bottom: 0;
  z-index: 10;
}

.mp-char-img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  transform: translateX(40px);
  transition: transform 30s ease-out;
}

.mp-char-img.animate-in {
  transform: translateX(-20px);
}

.role-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
}
.role-info h3 { color: var(--gold-light); font-size: 18px; letter-spacing: 3px; margin-bottom: 6px; }
.role-info p { color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: 1px; line-height: 1.6; }

/* ============================================================
   PAGE 4 — 精彩特效展示 (GIF)
============================================================ */
#page-4 .page-bg {
  background-color: #050508;
  background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10,10,60,.4) 0%, transparent 70%);
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  width: 92vw;
}

.effect-cell {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(201,161,90,.15);
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
}
.effect-cell:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.effect-cell:hover { transform: scale(1.03); border-color: rgba(201,161,90,.5); z-index: 5; }

.effect-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.effect-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(201,161,90,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,161,90,.3);
  font-size: 13px;
  letter-spacing: 2px;
}

/* ============================================================
   PAGE 5 — 坐骑展示
============================================================ */
#page-5 .page-bg {
  background-color: #060b08;
  background-image: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(10,50,20,.3) 0%, transparent 70%);
}

/* ============================================================
   PAGE 4 — 游戏福利
   ============================================================ */
   
   .welfare-center {
     display: flex;
     gap: 40px;
     align-items: flex-start;
     justify-content: center;
     margin-top: 60px;
   }
   
   .welfare-cards-row {
     display: flex;
     gap: 55px;
     justify-content: center;
     margin-top: 60px;
   }
   
   .welfare-gif-card {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
   }
   
   .card-gif-area {
     position: relative;
     width: auto;
     height: auto;
   }
   
   .card-gif-content {
     display: block;
     width: auto;
     height: auto;
   }
   
   .card-gif-frame {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
   }
   
   .card-text-wrapper {
     position: absolute;
     top: 37px;
     left: 0;
     width: auto;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     pointer-events: none;
   }
   
   .card-text-frame {
     display: block;
   }
   
   .card-vertical-text {
     position: absolute;
     writing-mode: vertical-rl;
     font-family: 'SimHei', '黑体', sans-serif;
     font-size: 24px;
     font-weight: bold;
     color: #7f1a00;
     letter-spacing: 4px;
     text-align: center;
   }
   
   .card-info {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     margin-top: -10px;
   }
   
   .card-name {
     color: #8d3809;
     font-size: 24px;
     font-family: 'Microsoft YaHei', sans-serif;
     font-weight: bold;
     letter-spacing: 2px;
   }
   
   .card-desc {
     color: #585a64;
     font-size: 18px;
     font-family: 'Microsoft YaHei', sans-serif;
     font-weight: bold;
   }
   
   .card-btn {
     cursor: pointer;
     width: auto;
     height: auto;
   }
   
   .welfare-bottom {
     display: flex;
     justify-content: center;
     margin-top: 60px;
     padding-bottom: 80px;
   }
   
   .welfare-bottom-buttons {
     display: flex;
     gap: 30px;
   }
   
   .welfare-bottom-btn {
     cursor: pointer;
     width: auto;
     height: auto;
   }

    .mount-showcase {
      display: flex;
      gap: 48px;
      align-items: center;
      max-width: 1100px;
      width: 90vw;
    }

    .mount-display {
      flex: 1.2;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mount-display img {
      max-width: 100%;
      max-height: 55vh;
      object-fit: contain;
      filter: drop-shadow(0 0 30px rgba(201,161,90,.3));
    }
    .mount-display .mount-placeholder {
      width: 360px;
      height: 300px;
      border: 1px dashed rgba(201,161,90,.25);
      display: flex; align-items: center; justify-content: center;
      color: rgba(201,161,90,.35);
      font-size: 14px;
      letter-spacing: 2px;
    }

    .mount-desc { flex: 1; }
    .mount-desc h2 {
      font-size: clamp(22px, 3vw, 40px);
      color: var(--gold-light);
      letter-spacing: 6px;
      margin-bottom: 16px;
    }
    .mount-desc p {
      font-size: 15px;
      color: rgba(255,255,255,.6);
      line-height: 2;
      letter-spacing: 1px;
      margin-bottom: 32px;
    }

    .mount-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }
    .mount-tag {
      padding: 6px 18px;
      border: 1px solid rgba(201,161,90,.4);
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 2px;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }

    /* ============================================================
       PAGE 6 — 新闻公告
    ============================================================ */
    #page-6 {
      overflow-y: auto;
    }
    #page-6 .page-bg {
      background-color: #080608;
      background-image:
        linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.6) 100%),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(40,10,60,.25) 0%, transparent 70%);
    }

    .news-main-content {
      display: flex;
      gap: 40px;
      justify-content: center;
      align-items: flex-start;
    }
    
    /* 左侧新闻专栏 */
    .news-column {
      flex: 1;
    }
    
    .news-column-header {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(201,161,90,.3);
    }
    
    .news-column-title {
      font-size: 30px;
      color: #f0d080;
      letter-spacing: 3px;
      font-weight: bold;
      padding-left: 10px;
      border-left: 3px solid #f0d080;
    }
    
    .news-column-subtitle {
      font-size: 14px;
      color: rgba(201,161,90,.6);
      letter-spacing: 2px;
    }
    
    .news-tabs {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 20px;
    }
    
    .news-tab {
      padding: 8px 20px;
      font-size: 14px;
      color: rgba(255,255,255,.6);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all 0.3s;
      letter-spacing: 2px;
    }
    .news-tab.active { 
      color: #f0d080; 
      border-bottom-color: #f0d080; 
    }
    .news-tab:hover { color: rgba(255,255,255,.9); }
    
    .news-more {
      margin-left: auto;
      font-size: 12px;
      color: rgba(201,161,90,.6);
      text-decoration: none;
      letter-spacing: 1px;
      transition: color 0.3s;
    }
    .news-more:hover { color: #f0d080; }
    
    .news-highlight {
      font-size: 21px;
      font-weight: bold;
      color: #f0d080;
      letter-spacing: 2px;
      margin-bottom: 15px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .news-highlight:hover {
      color: #fff;
      text-shadow: 0 0 10px rgba(240,208,128,0.5);
    }
    
    .news-list {
      display: flex;
      flex-direction: column;
    }
    
    .news-item {
      display: flex;
      align-items: center;
      padding: 12px 10px;
      border-bottom: 1px dashed rgba(201,161,90,.2);
      cursor: pointer;
      transition: all 0.3s;
    }
    .news-item:hover { 
      background: rgba(201,161,90,.1);
      padding-left: 15px;
    }
    
    .news-tag {
      flex-shrink: 0;
      font-size: 12px;
      color: #c9a15a;
      letter-spacing: 1px;
      margin-right: 10px;
    }
    
    .news-title {
      flex: 1;
      font-size: 14px;
      color: rgba(255,255,255,.75);
      letter-spacing: 1px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color 0.3s;
    }
    .news-item:hover .news-title { color: #f0d080; }
    
    .news-date {
      flex-shrink: 0;
      font-size: 12px;
      color: rgba(255,255,255,.4);
      letter-spacing: 1px;
    }
    
    /* 右侧游戏真实截图 */
    .news-screenshot {
      flex: 1;
    }
    
    .news-screenshot-header {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(201,161,90,.3);
    }
    
    .news-screenshot-title {
      font-size: 30px;
      color: #f0d080;
      letter-spacing: 3px;
      font-weight: bold;
      padding-left: 10px;
      border-left: 3px solid #f0d080;
    }
    
    .news-screenshot-subtitle {
      font-size: 14px;
      color: rgba(201,161,90,.6);
      letter-spacing: 2px;
    }
    
    .news-screenshot-img {
      width: 100%;
      border: 1px solid rgba(201,161,90,.3);
    }
    
    .news-screenshot-img img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* 底部按钮 */
    .news-bottom-btns {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-top: 10px;
    }
    
    .news-bottom-btn {
      cursor: pointer;
      transition: transform 0.3s, filter 0.3s;
    }
    .news-bottom-btn:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    /* 底部版权信息 */
    .footer-strip {
      width: 100%;
      background-color: #0a0808;
      margin-top: 40px;
      padding: 30px 20px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer-strip-notice {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .footer-strip-notice p {
      font-size: 12px;
      color: rgba(255,255,255,.4);
      letter-spacing: 1px;
      line-height: 1.8;
    }
    
    .footer-strip-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .footer-strip-logo img {
      width: auto;
      height: auto;
    }
    
    .footer-strip-info {
      text-align: center;
    }
    
    .footer-strip-info p {
      font-size: 11px;
      color: rgba(255,255,255,.35);
      letter-spacing: 1px;
      line-height: 1.8;
    }
    
    .footer-strip-info a {
      color: rgba(255,255,255,.35);
      text-decoration: none;
    }
    
    .footer-strip-info a:hover {
      color: rgba(201,161,90,.6);
    }

    /* ============================================================
       分页指示器 (右侧圆点)
    ============================================================ */
    #page-dots {
      position: fixed;
      right: 28px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 14px;
      z-index: 900;
    }
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.25);
      cursor: pointer;
      transition: all 0.4s;
      position: relative;
    }
    .dot.active {
      background: var(--gold);
      box-shadow: 0 0 8px rgba(201,161,90,.6);
      transform: scale(1.4);
    }
    .dot::before {
      content: attr(data-label);
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      white-space: nowrap;
      font-size: 11px;
      color: rgba(255,255,255,.4);
      letter-spacing: 1px;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .dot:hover::before { opacity: 1; }

    /* ============================================================
       入场动画
    ============================================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* 延迟动画 */
    .delay-1 { transition-delay: 0.15s; }
    .delay-2 { transition-delay: 0.3s; }
    .delay-3 { transition-delay: 0.45s; }
    .delay-4 { transition-delay: 0.6s; }

    /* ============================================================
       响应式
    ============================================================ */
    @media (max-width: 900px) {
      #nav { padding: 0 24px; }
      .nav-links { gap: 20px; }
      .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .roles-showcase { gap: 10px; }
      .role-card, .role-card:hover, .role-card.active { max-width: unset; flex: 1; }
      .effects-grid { grid-template-columns: repeat(2, 1fr); }
      .mount-showcase { flex-direction: column; gap: 24px; }
      
      /* 游戏福利移动端 */
      .welfare-cards-row { flex-wrap: wrap; justify-content: center; gap: 20px; }
      .card-gif-container { width: 200px; height: 190px; }
      .card-btn { width: 80px; }
      .welfare-bottom-buttons { flex-wrap: wrap; justify-content: center; gap: 20px; }
      .welfare-bottom-btn { width: 140px; }
      .news-container { flex-direction: column; }
    }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .features-grid { grid-template-columns: 1fr; }
      .effects-grid { grid-template-columns: 1fr 1fr; }
      .effect-cell:first-child { grid-column: span 2; }
    }
