/* ========================================
   传奇发布网 - 全局样式表
   设计风格：暗色游戏风 + 现代扁平化
   ======================================== */

/* Reset & Base */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  background: #0a0e1a;
  overflow-x: hidden;
}

a { color: #f0a500; text-decoration: none; transition: color .2s; }
a:hover { color: #ffd700; }

img { max-width:100%; height:auto; }
button { cursor:pointer; border:none; outline:none; font-family:inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   顶部公告栏
   ======================================== */
.top-bar {
  background: linear-gradient(90deg, #1a0a2e, #2d1057, #1a0a2e);
  border-bottom: 1px solid #4a1a7a;
  font-size: 13px;
  padding: 8px 0;
  color: #c0a0e0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left strong { color: #ff6b35; font-size: 15px; }
.top-bar-right a {
  color: #c0a0e0;
  margin-left: 18px;
  transition: color .2s;
}
.top-bar-right a:hover { color: #ffd700; }

/* ========================================
   主导航
   ======================================== */
.main-header {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #f0a500;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255,215,0,0.3);
}
.logo-icon { font-size: 28px; }
.main-nav {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #b0b0b0;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s;
}
.main-nav a:hover {
  color: #ffd700;
  background: rgba(240,165,0,0.1);
}
.main-nav a.nav-active {
  color: #0a0e1a;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(240,165,0,0.4);
}
.header-search {
  display: flex;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.header-search input {
  background: transparent;
  border: none;
  padding: 8px 14px;
  color: #fff;
  width: 200px;
  outline: none;
  font-size: 14px;
}
.header-search button {
  background: #f0a500;
  color: #0a0e1a;
  padding: 8px 14px;
  font-size: 16px;
  transition: background .2s;
}
.header-search button:hover { background: #ffd700; }

/* ========================================
   页面标题区
   ======================================== */
.page-header {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1b2a 50%, #1b2838 100%);
  padding: 50px 0 40px;
  text-align: center;
  border-bottom: 1px solid #222;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(240,165,0,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-header h1 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,215,0,0.3);
  position: relative;
}
.page-header-desc {
  color: #8899aa;
  font-size: 16px;
  position: relative;
}
.page-header-desc strong { color: #ff6b35; }

/* 筛选条 */
.filter-bar {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.filter-label { color: #8899aa; font-size: 14px; align-self: center; }
.filter-btn {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #333;
  border-radius: 20px;
  color: #8899aa;
  font-size: 14px;
  transition: all .25s;
  background: rgba(255,255,255,0.02);
}
.filter-btn:hover, .filter-btn.active {
  border-color: #f0a500;
  color: #ffd700;
  background: rgba(240,165,0,0.1);
}

/* ========================================
   Section 通用
   ======================================== */
.section {
  padding: 60px 0;
  position: relative;
}
.section-alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section-header h2 {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 10px;
}
.section-header p {
  color: #8899aa;
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
}
.section-header p strong { color: #ff6b35; }
.section-more {
  display: inline-block;
  margin-top: 12px;
  color: #f0a500;
  font-size: 15px;
  font-weight: 600;
}
.section-more:hover { color: #ffd700; }

/* ========================================
   Hero 区域（首页主视觉）
   ======================================== */
.hero-section {
  background: linear-gradient(180deg, #0d1b2a 0%, #0a0e1a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(240,165,0,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(100,50,200,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f0a500);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255,107,53,0.3);
}
.hero-left h1 {
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-left h1 .highlight {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
}
.hero-desc {
  color: #99aabb;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
.stat-item {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid #1e2a3a;
  border-radius: 10px;
  padding: 15px 10px;
}
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #ffd700;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: #667788;
  margin-top: 4px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(240,165,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(240,165,0,0.5);
  color: #0a0e1a;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #f0a500;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #f0a500;
  transition: all .3s;
}
.btn-secondary:hover {
  background: rgba(240,165,0,0.1);
  color: #ffd700;
}

/* Hero 右侧排行榜 */
.hero-right { position: relative; }
.hero-card {
  background: linear-gradient(135deg, #111827, #1a1a2e);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2a2a4a;
}
.hero-card-header span {
  font-size: 16px;
  font-weight: 700;
  color: #ffd700;
}
.hero-card-header small {
  font-size: 12px;
  color: #667788;
}
.rank-list { list-style: none; }
.rank-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 12px;
}
.rank-item:last-child { border-bottom: none; }
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a2a3a;
  color: #8899aa;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.rank-1 .rank-num { background: linear-gradient(135deg,#ffd700,#f0a500); color:#0a0e1a; }
.rank-2 .rank-num { background: linear-gradient(135deg,#c0c0c0,#a0a0a0); color:#0a0e1a; }
.rank-3 .rank-num { background: linear-gradient(135deg,#cd7f32,#a0522d); color:#fff; }
.rank-name {
  flex: 1;
  font-size: 14px;
  color: #ccddee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-hot {
  font-size: 12px;
  color: #ff6b35;
  white-space: nowrap;
}

/* ========================================
   服务器卡片（首页）
   ======================================== */
.server-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.server-card {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 24px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.server-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f0a500, transparent);
  opacity: 0;
  transition: opacity .3s;
}
.server-card:hover {
  transform: translateY(-5px);
  border-color: #f0a500;
  box-shadow: 0 10px 30px rgba(240,165,0,0.15);
}
.server-card:hover::before { opacity: 1; }
.server-card.server-hot {
  border-color: rgba(255,107,53,0.3);
}
.server-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f0a500);
  color: #fff;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.server-tag.tag-classic {
  background: linear-gradient(135deg, #4a90d9, #357abd);
}
.server-tag.tag-new {
  background: linear-gradient(135deg, #50c878, #2e8b57);
}
.server-card h3 {
  font-size: 17px;
  color: #ffd700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.server-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.server-meta span {
  font-size: 12px;
  color: #667788;
  background: rgba(255,255,255,0.04);
  padding: 2px 8px;
  border-radius: 4px;
}
.server-desc {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.7;
  margin-bottom: 14px;
}
.server-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #1e2a3a;
  border-bottom: 1px solid #1e2a3a;
  margin-bottom: 14px;
}
.server-info span {
  font-size: 13px;
  color: #99aabb;
}
.server-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
}
.server-btn:hover {
  transform: scale(1.05);
  color: #0a0e1a;
  box-shadow: 0 4px 15px rgba(240,165,0,0.4);
}

/* ========================================
   版本分类卡片
   ======================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: all .35s;
}
.cat-card:hover {
  transform: translateY(-5px);
  border-color: #f0a500;
  box-shadow: 0 10px 30px rgba(240,165,0,0.12);
}
.cat-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.cat-card h3 {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 14px;
  color: #667788;
  margin-bottom: 12px;
}
.cat-count {
  display: inline-block;
  background: rgba(240,165,0,0.1);
  color: #f0a500;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

/* ========================================
   攻略区域
   ======================================== */
.guide-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}
.guide-main {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s;
}
.guide-main:hover {
  border-color: #f0a500;
  box-shadow: 0 8px 25px rgba(240,165,0,0.1);
}
.guide-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #1a1a3e, #2a1a4e);
}
.cover-1 { background: linear-gradient(135deg, #2a1057, #4a1a7a); }
.guide-content { padding: 24px; }
.guide-cat {
  display: inline-block;
  background: rgba(240,165,0,0.15);
  color: #f0a500;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.guide-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
}
.guide-content p {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.8;
  margin-bottom: 15px;
}
.guide-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #667788;
  padding: 10px 0;
  border-top: 1px solid #1e2a3a;
  margin-bottom: 15px;
}
.guide-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
}
.guide-btn:hover { transform:scale(1.05); color:#0a0e1a; }

.guide-side { display: flex; flex-direction: column; gap: 16px; }
.guide-item {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  padding: 20px;
  transition: all .3s;
}
.guide-item:hover {
  border-color: #f0a500;
  transform: translateX(5px);
}
.guide-item h4 {
  font-size: 15px;
  color: #ccddee;
  margin: 8px 0;
  line-height: 1.5;
}
.guide-item p {
  font-size: 13px;
  color: #667788;
  line-height: 1.7;
  margin-bottom: 10px;
}
.guide-btn-sm {
  display: inline-block;
  border: 1px solid #f0a500;
  color: #f0a500;
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 13px;
  transition: all .2s;
}
.guide-btn-sm:hover {
  background: #f0a500;
  color: #0a0e1a;
}

/* ========================================
   Why 区域
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: all .3s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: #f0a500;
}
.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.why-card h3 {
  font-size: 17px;
  color: #ffd700;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.8;
}

/* ========================================
   资讯列表
   ======================================== */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item {
  display: flex;
  gap: 24px;
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 24px;
  transition: all .3s;
}
.news-item:hover {
  border-color: #f0a500;
  transform: translateX(5px);
}
.news-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  border-radius: 10px;
  padding: 12px 8px;
  height: fit-content;
}
.news-date span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.news-date small {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.news-body { flex: 1; }
.news-body h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}
.news-body p {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.8;
  margin-bottom: 10px;
}
.news-more {
  color: #f0a500;
  font-size: 14px;
  font-weight: 600;
}
.news-more:hover { color: #ffd700; }

/* ========================================
   FAQ
   ======================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 10px;
  padding: 18px 22px;
  transition: border-color .3s;
}
.faq-item:hover { border-color: #f0a500; }
.faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: #ccddee;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #f0a500;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: #8899aa;
  line-height: 1.8;
}
.faq-item p a { color: #f0a500; }

/* ========================================
   页脚
   ======================================== */
.main-footer {
  background: #080c16;
  border-top: 2px solid #f0a500;
  padding: 50px 0 0;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13px;
  color: #667788;
  line-height: 1.8;
  margin-bottom: 10px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 13px;
  color: #667788;
  padding: 4px 0;
}
.footer-col ul li a {
  color: #8899aa;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #ffd700; }
.footer-bottom {
  background: #050810;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid #111;
}
.footer-bottom p {
  font-size: 12px;
  color: #445566;
  margin: 4px 0;
}

/* ========================================
   开服详情页（xinkai.html）
   ======================================== */
.server-detail {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all .3s;
}
.server-detail:hover { border-color: #f0a500; }
.sd-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #1e2a3a;
  margin-bottom: 20px;
}
.sd-rank {
  font-size: 14px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff6b35, #f0a500);
  color: #fff;
}
.sd-header h2 {
  flex: 1;
  font-size: 22px;
  color: #ffd700;
  min-width: 300px;
}
.sd-status {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
}
.sd-status.online {
  background: rgba(80,200,120,0.15);
  color: #50c878;
}
.sd-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 20px;
}
.sd-info p {
  font-size: 14px;
  color: #99aabb;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.sd-info p strong { color: #ccddee; }
.sd-desc h4 {
  font-size: 15px;
  color: #ffd700;
  margin: 15px 0 10px;
}
.sd-desc ul {
  list-style: none;
  padding: 0;
}
.sd-desc ul li {
  font-size: 14px;
  color: #8899aa;
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.7;
}
.sd-desc ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #f0a500;
}
.sd-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #1e2a3a;
}
.sd-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
}
.sd-btn.primary {
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
}
.sd-btn.primary:hover { transform:scale(1.05); color:#0a0e1a; }
.sd-btn:not(.primary) {
  border: 1px solid #445566;
  color: #8899aa;
}
.sd-btn:not(.primary):hover {
  border-color: #f0a500;
  color: #f0a500;
}
.sd-btn-sm {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #f0a500;
  color: #f0a500;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 8px;
}

/* 简略服务器卡片 */
.server-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.server-simple {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 10px;
  padding: 18px;
  transition: all .3s;
}
.server-simple:hover {
  border-color: #f0a500;
  transform: translateY(-3px);
}
.server-simple h3 {
  font-size: 15px;
  color: #ffd700;
  margin-bottom: 8px;
}
.server-simple p {
  font-size: 12px;
  color: #667788;
  margin-bottom: 10px;
}

/* 开服时间表 */
.timetable {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #111827, #161b2e);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e2a3a;
}
.timetable thead {
  background: linear-gradient(135deg, #1a1a3e, #2a2a4e);
}
.timetable th {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #ffd700;
  border-bottom: 1px solid #2a2a4a;
}
.timetable td {
  padding: 12px 16px;
  font-size: 14px;
  color: #99aabb;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.timetable tr:hover td { background: rgba(240,165,0,0.03); }
.tag-live {
  display: inline-block;
  background: rgba(80,200,120,0.15);
  color: #50c878;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}
.tag-wait {
  display: inline-block;
  background: rgba(240,165,0,0.15);
  color: #f0a500;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

/* ========================================
   版本页（banben.html）
   ======================================== */
.version-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 24px;
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
}
.vh-icon { font-size: 48px; }
.version-header h2 {
  font-size: 24px;
  color: #ffd700;
  flex: 1;
  min-width: 200px;
}
.version-header p {
  font-size: 14px;
  color: #8899aa;
  width: 100%;
  margin-top: 5px;
}
.version-header p strong { color: #ff6b35; }
.vh-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .25s;
}
.vh-btn:hover { transform:scale(1.05); color:#0a0e1a; }

.version-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.vb-left h4 {
  font-size: 16px;
  color: #ffd700;
  margin: 20px 0 12px;
}
.vb-left h4:first-child { margin-top: 0; }
.vb-left ul {
  list-style: none;
  padding: 0;
}
.vb-left ul li {
  font-size: 14px;
  color: #8899aa;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.7;
}
.vb-left ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #50c878;
  font-weight: 700;
}
.vb-left p {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.8;
}
.vb-right h4 {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 15px;
}
.rec-list { display: flex; flex-direction: column; gap: 10px; }
.rec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e2a3a;
  border-radius: 8px;
  transition: all .25s;
}
.rec-item:hover {
  border-color: #f0a500;
  background: rgba(240,165,0,0.03);
}
.rec-item span:first-child {
  flex: 1;
  font-size: 14px;
  color: #ccddee;
}
.rec-online {
  font-size: 12px;
  color: #ff6b35;
  white-space: nowrap;
}
.rec-item a {
  font-size: 13px;
  color: #f0a500;
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid #f0a500;
  border-radius: 4px;
}
.rec-item a:hover { background:#f0a500; color:#0a0e1a; }

/* 对比表 */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #111827, #161b2e);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e2a3a;
}
.compare-table thead {
  background: linear-gradient(135deg, #1a1a3e, #2a2a4e);
}
.compare-table th {
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffd700;
  border-bottom: 1px solid #2a2a4a;
}
.compare-table td {
  padding: 12px;
  font-size: 14px;
  color: #99aabb;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.compare-table tr:hover td { background: rgba(240,165,0,0.03); }

/* ========================================
   攻略页（gonglue.html）
   ======================================== */
.article-full {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 30px;
}
.article-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1e2a3a;
}
.article-cat {
  display: inline-block;
  background: rgba(240,165,0,0.15);
  color: #f0a500;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.article-header h2 {
  font-size: 26px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 14px;
}
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #667788;
}
.article-summary {
  background: rgba(240,165,0,0.03);
  border-left: 3px solid #f0a500;
  padding: 18px 22px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}
.article-summary p {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.8;
}
.expand-btn {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s;
}
.expand-btn:hover { transform:scale(1.05); box-shadow:0 4px 15px rgba(240,165,0,0.4); }

.article-body { animation: fadeIn .4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.article-body h3 {
  font-size: 20px;
  color: #ffd700;
  margin: 28px 0 14px;
  padding-left: 14px;
  border-left: 4px solid #f0a500;
}
.article-body p {
  font-size: 15px;
  color: #99aabb;
  line-height: 1.9;
  margin-bottom: 14px;
}
.article-body p strong { color: #ccddee; }
.article-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-body ul li {
  font-size: 15px;
  color: #99aabb;
  line-height: 1.9;
}
.article-body ul li strong { color: #ccddee; }
.article-tags {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid #1e2a3a;
  font-size: 14px;
  color: #667788;
}
.article-tags a {
  display: inline-block;
  background: rgba(240,165,0,0.1);
  color: #f0a500;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-left: 8px;
  transition: all .2s;
}
.article-tags a:hover { background: #f0a500; color: #0a0e1a; }

/* ========================================
   关于本站页
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.about-main h2 {
  font-size: 22px;
  color: #ffd700;
  margin: 30px 0 15px;
  padding-left: 14px;
  border-left: 4px solid #f0a500;
}
.about-main h2:first-child { margin-top: 0; }
.about-main p {
  font-size: 15px;
  color: #99aabb;
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-main ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.about-main ul li {
  font-size: 15px;
  color: #99aabb;
  line-height: 1.9;
}
.about-main ul li strong { color: #ccddee; }

.standard-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.standard-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e2a3a;
  border-radius: 10px;
  padding: 18px;
}
.standard-item h4 {
  font-size: 15px;
  color: #ffd700;
  margin-bottom: 8px;
}
.standard-item p {
  font-size: 13px;
  color: #8899aa;
  line-height: 1.7;
  margin: 0;
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #111827, #161b2e);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1e2a3a;
  margin-bottom: 20px;
}
.score-table th {
  padding: 12px 14px;
  background: linear-gradient(135deg, #1a1a3e, #2a2a4e);
  color: #ffd700;
  font-size: 14px;
  text-align: left;
}
.score-table td {
  padding: 11px 14px;
  font-size: 14px;
  color: #99aabb;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.changelog { margin-bottom: 20px; }
.log-item {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.log-date {
  flex-shrink: 0;
  width: 100px;
  font-size: 13px;
  color: #f0a500;
  font-weight: 600;
}
.log-text {
  font-size: 14px;
  color: #8899aa;
}

.about-side { display: flex; flex-direction: column; gap: 20px; }
.side-card {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  padding: 22px;
}
.side-card h3 {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 14px;
}
.side-card ul { list-style: none; padding: 0; }
.side-card ul li {
  font-size: 14px;
  color: #8899aa;
  padding: 6px 0;
}
.side-card ul li strong { color: #ffd700; }
.side-card ul li a { color: #8899aa; }
.side-card ul li a:hover { color: #ffd700; }
.side-card p {
  font-size: 13px;
  color: #667788;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ========================================
   下载页（xiazai.html）
   ======================================== */
.download-notice {
  background: rgba(255,107,53,0.05);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 40px;
}
.download-notice h3 {
  font-size: 17px;
  color: #ff6b35;
  margin-bottom: 12px;
}
.download-notice ul { padding-left: 20px; }
.download-notice ul li {
  font-size: 14px;
  color: #99aabb;
  line-height: 1.8;
}
.download-notice ul li strong { color: #ccddee; }

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.download-grid.dl-small {
  grid-template-columns: repeat(3, 1fr);
}
.dl-card {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 26px 24px;
  text-align: center;
  transition: all .35s;
}
.dl-card:hover {
  transform: translateY(-5px);
  border-color: #f0a500;
  box-shadow: 0 10px 30px rgba(240,165,0,0.12);
}
.dl-card.dl-card-sm { padding: 20px; }
.dl-icon {
  font-size: 42px;
  margin-bottom: 14px;
}
.dl-card h3 {
  font-size: 17px;
  color: #ffd700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.dl-card.dl-card-sm h3 { font-size: 15px; }
.dl-version {
  font-size: 12px;
  color: #667788;
  margin-bottom: 10px;
}
.dl-desc {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.7;
  margin-bottom: 14px;
}
.dl-card-sm .dl-desc { font-size: 13px; margin-bottom: 10px; }
.dl-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 12px;
  color: #667788;
}
.dl-md5 {
  font-size: 11px;
  color: #445566;
  font-family: 'Courier New', monospace;
  background: #0a0e1a;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  word-break: break-all;
}
.dl-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  padding: 10px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s;
}
.dl-btn:hover { transform:scale(1.05); box-shadow:0 4px 15px rgba(240,165,0,0.4); color:#0a0e1a; }
.dl-btn-sm {
  display: inline-block;
  border: 1px solid #f0a500;
  color: #f0a500;
  padding: 6px 18px;
  border-radius: 5px;
  font-size: 13px;
  transition: all .2s;
}
.dl-btn-sm:hover { background:#f0a500; color:#0a0e1a; }

/* 安装教程 */
.tutorial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-item {
  background: linear-gradient(135deg, #111827, #161b2e);
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.step-item:hover { border-color: #f0a500; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0a500, #ffd700);
  color: #0a0e1a;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}
.step-item h4 {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: #8899aa;
  line-height: 1.7;
}

/* ========================================
   响应式
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .server-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .version-body { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .tutorial-steps { grid-template-columns: repeat(2, 1fr); }
  .sd-body { grid-template-columns: 1fr; }
  .standard-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-left h1 { font-size: 28px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .server-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .tutorial-steps { grid-template-columns: 1fr; }
  .server-simple-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 24px; }
  .header-search input { width: 140px; }
  .main-nav a { padding: 6px 10px; font-size: 13px; }
  .article-full { padding: 20px; }
  .article-header h2 { font-size: 20px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 8px 6px; }
}
