/* ============================================================
 * 找弹网 · 弹弹堂发布站
 * 基调：深蓝夜空底 + 金色描边 + 套红推荐位（游戏发布站风格）
 * ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #0b1220;
  --bg-panel: #121c30;
  --bg-panel2: #17233c;
  --line: #24345a;
  --gold: #f5c452;
  --gold-deep: #d99a2b;
  --red: #e8503a;
  --red-deep: #c03422;
  --text: #d7e0f2;
  --text-dim: #8fa0c2;
  --green: #4cd07d;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font: 14px/1.7 "Microsoft YaHei", "PingFang SC", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 14px; }

/* ---------- 顶部公告跑马灯 ---------- */
.notice-bar {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, #331111, #47190f 40%, #331111);
  border-bottom: 1px solid #5d2417;
  padding: 5px 14px; font-size: 13px; color: #ffd9a0;
  overflow: hidden;
}
.notice-label {
  flex: none; background: var(--red); color: #fff;
  font-size: 12px; padding: 0 8px; border-radius: 3px; line-height: 20px;
}
.notice-viewport { flex: 1; overflow: hidden; }
.notice-track { display: inline-flex; gap: 60px; white-space: nowrap; animation: marquee 40s linear infinite; }
.notice-track span { flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 页头 ---------- */
.site-header {
  background: linear-gradient(180deg, #101a30, #0d1526);
  border-bottom: 2px solid var(--gold-deep);
  position: sticky; top: 0; z-index: 90;
  box-shadow: 0 3px 14px rgba(0,0,0,.5);
}
.header-inner { display: flex; align-items: center; gap: 26px; height: 62px; }
.logo { display: flex; align-items: baseline; gap: 9px; }
.logo-main {
  font-size: 30px; font-weight: 900; letter-spacing: 2px;
  background: linear-gradient(180deg, #ffe9ae, #f5c452 55%, #c8871c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 2px 8px rgba(245,196,82,.25);
}
.logo-sub { font-size: 12px; color: var(--text-dim); line-height: 1.35; }
.logo-sub em { font-style: normal; color: var(--gold); }
.main-nav { display: flex; gap: 2px; margin-left: auto; }
.main-nav a {
  padding: 8px 15px; border-radius: 4px; font-size: 15px; font-weight: 600;
  color: var(--text); transition: .15s;
}
.main-nav a:hover, .main-nav a.on { background: rgba(245,196,82,.14); color: var(--gold); }
.main-nav a.nav-hot { background: linear-gradient(180deg, var(--red), var(--red-deep)); color: #fff; }
.main-nav a.nav-hot:hover { filter: brightness(1.15); }
.main-nav a.nav-gm { border: 1px solid var(--gold-deep); color: var(--gold); }
.main-nav a.nav-gm:hover { background: rgba(245,196,82,.18); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); color: var(--gold); font-size: 20px; padding: 4px 12px; border-radius: 5px; }

/* ---------- 主视觉 ---------- */
.hero {
  position: relative;
  background: url("../img/hero-dusk.png") center 38% / cover no-repeat;
  min-height: 300px;
  display: flex; align-items: center;
}
.hero-mask {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.25) 45%, rgba(11,18,32,.92) 96%);
}
.hero-inner {
  position: relative; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding-top: 44px; padding-bottom: 34px;
}
.hero-text h1 {
  font-size: 42px; letter-spacing: 4px; font-weight: 900; color: #fff;
  text-shadow: 0 0 22px rgba(245,196,82,.55), 0 3px 6px rgba(0,0,0,.8);
}
.hero-slogan { margin-top: 6px; font-size: 16px; color: #ffe6b0; text-shadow: 0 2px 5px rgba(0,0,0,.8); }
.hero-stats { display: flex; gap: 30px; margin-top: 18px; }
.stat b { display: block; font-size: 26px; color: var(--gold); font-family: "Arial Black", Arial, sans-serif; text-shadow: 0 2px 5px rgba(0,0,0,.7); }
.stat span { font-size: 12px; color: #cfd8ea; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; flex: none; }
.btn-gold, .btn-line {
  display: block; text-align: center; padding: 12px 34px; border-radius: 6px;
  font-size: 17px; font-weight: 800; letter-spacing: 2px; transition: .15s;
}
.btn-gold {
  background: linear-gradient(180deg, #ffd970, #e9a92f 60%, #cf8a17);
  color: #4a2c00; border: 1px solid #ffe9ae;
  box-shadow: 0 4px 16px rgba(233,169,47,.45);
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-line { border: 1px solid rgba(255,222,150,.65); color: #ffe6b0; background: rgba(11,18,32,.45); }
.btn-line:hover { background: rgba(245,196,82,.18); }

/* ---------- 搜索/筛选 ---------- */
.search-bar {
  margin: 22px 0 10px;
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: 8px;
  padding: 14px 16px;
}
.search-input-wrap { display: flex; gap: 0; }
.search-input-wrap input {
  flex: 1; background: #0d1526; border: 1px solid var(--line); border-right: none;
  border-radius: 5px 0 0 5px; padding: 10px 14px; color: var(--text); font-size: 14px; outline: none;
}
.search-input-wrap input:focus { border-color: var(--gold-deep); }
.search-input-wrap button {
  flex: none; padding: 0 30px; border: none; border-radius: 0 5px 5px 0; cursor: pointer;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 4px;
}
.search-input-wrap button:hover { filter: brightness(1.12); }
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ftag {
  padding: 3px 14px; border: 1px solid var(--line); border-radius: 20px;
  font-size: 13px; color: var(--text-dim); cursor: pointer; transition: .15s;
}
.ftag:hover { color: var(--gold); border-color: var(--gold-deep); }
.ftag.on { background: rgba(245,196,82,.16); color: var(--gold); border-color: var(--gold-deep); }

/* ---------- 区块标题（图标用游戏大厅真实图标） ---------- */
.zone-title { font-size: 21px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 9px; }
.zone-title .zone-ico {
  width: 32px; height: 32px; flex: none; border-radius: 6px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.6));
}
.zone-title small { font-size: 12px; font-weight: 400; color: var(--text-dim); letter-spacing: 2px; }
.inline-ico { display: inline-block; width: 18px; height: 18px; vertical-align: -4px; margin-right: 3px; }

/* ---------- 置顶推荐 ---------- */
.rec-zone { margin: 22px 0; }
.rec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.rec-card {
  position: relative; border-radius: 9px; overflow: hidden;
  border: 1px solid #6b4a15;
  background: var(--bg-panel);
  box-shadow: 0 0 0 1px rgba(245,196,82,.25), 0 6px 18px rgba(0,0,0,.45);
  transition: .18s;
}
.rec-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--gold), 0 10px 26px rgba(0,0,0,.6); }
.rec-thumb { height: 108px; position: relative; overflow: hidden; }
.rec-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rec-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(18,28,48,.95)); }
.rec-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: linear-gradient(180deg, #ff6a4d, var(--red-deep));
  color: #fff; font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.rec-body { padding: 10px 12px 13px; position: relative; margin-top: -26px; z-index: 2; }
.rec-name { font-size: 18px; font-weight: 800; color: var(--gold); text-shadow: 0 2px 4px rgba(0,0,0,.8); }
.rec-meta { font-size: 12px; color: var(--text-dim); margin: 3px 0 7px; }
.rec-meta b { color: #ff9b6a; font-weight: 600; }
.rec-desc {
  font-size: 12.5px; color: var(--text); height: 3.4em; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.rec-count { margin: 8px 0; font-size: 13px; color: #ffce7a; }
.rec-count b { color: #ff5f47; font-family: Consolas, monospace; font-size: 15px; }
.rec-btn {
  display: block; text-align: center; padding: 8px 0; border-radius: 5px;
  background: linear-gradient(180deg, #ffd970, #e9a92f 60%, #cf8a17);
  color: #4a2c00; font-weight: 800; font-size: 14px; letter-spacing: 2px;
}
.rec-btn:hover { filter: brightness(1.1); }

/* ---------- 主两栏 ---------- */
.main-cols { display: grid; grid-template-columns: 1fr 300px; gap: 16px; margin: 26px 0; align-items: start; }

/* ---------- 开服表 ---------- */
.kaifu-zone { background: var(--bg-panel); border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.kaifu-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #17233c, #121c30);
}
.kaifu-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.ktab {
  padding: 5px 16px; border-radius: 5px; font-size: 14px; cursor: pointer;
  color: var(--text-dim); border: 1px solid transparent; transition: .15s;
}
.ktab:hover { color: var(--gold); }
.ktab.on {
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  color: #fff; font-weight: 700;
}
.kaifu-table-wrap { overflow-x: auto; }
.kaifu-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.kaifu-table th {
  background: #0f1830; color: var(--gold); font-size: 13px; font-weight: 700;
  padding: 9px 10px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap;
}
.kaifu-table td { padding: 9px 10px; border-bottom: 1px solid #1b2745; font-size: 13.5px; vertical-align: middle; }
.kaifu-table tbody tr:hover { background: rgba(245,196,82,.06); }
.kaifu-table tr.row-today { background: rgba(232,80,58,.10); }
.kaifu-table tr.row-today:hover { background: rgba(232,80,58,.16); }
.kaifu-table tr.row-taohong { background: rgba(232,80,58,.22); box-shadow: inset 3px 0 0 var(--red); }
.kaifu-table tr.row-taohong:hover { background: rgba(232,80,58,.3); }
.sv-name .tag-hl {
  display: inline-block; margin-left: 5px; background: linear-gradient(180deg,#ff6a4d,var(--red-deep));
  color: #fff; font-size: 11px; font-weight: 400; padding: 0 5px; border-radius: 3px; vertical-align: 2px;
}
.sv-name { font-weight: 800; font-size: 15px; color: #fff; white-space: nowrap; }
.sv-name .tag-new {
  display: inline-block; margin-left: 5px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 400; padding: 0 5px; border-radius: 3px; vertical-align: 2px;
  animation: blink 1.2s infinite;
}
.sv-name .tag-rec { display: inline-block; margin-left: 5px; background: var(--gold-deep); color: #3a2500; font-size: 11px; font-weight: 700; padding: 0 5px; border-radius: 3px; vertical-align: 2px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.sv-ver { color: #7ec3ff; white-space: nowrap; }
.sv-line { color: var(--text-dim); white-space: nowrap; }
.sv-time { white-space: nowrap; font-family: Consolas, monospace; }
.sv-time.today { color: #ff6a4d; font-weight: 700; }
.sv-time.long { color: var(--green); }
.sv-time .cd { display: block; font-size: 12px; color: var(--gold); }
.sv-desc { color: var(--text); max-width: 320px; }
.sv-qq { color: var(--text-dim); font-family: Consolas, monospace; white-space: nowrap; }
.sv-go {
  display: inline-block; padding: 5px 15px; border-radius: 4px; white-space: nowrap;
  background: linear-gradient(180deg, #ffd970, #e9a92f 60%, #cf8a17);
  color: #4a2c00; font-weight: 700; font-size: 13px;
}
.sv-go:hover { filter: brightness(1.12); }
.sv-go.gray { background: #2a3a5e; color: var(--text-dim); }
.kaifu-empty { text-align: center; color: var(--text-dim); padding: 34px 0 !important; }
.kaifu-tip { padding: 10px 16px; font-size: 12px; color: var(--text-dim); border-top: 1px solid var(--line); }

/* ---------- 侧栏 ---------- */
.side-col { display: flex; flex-direction: column; gap: 14px; }
.side-card { background: var(--bg-panel); border: 1px solid var(--line); border-radius: 9px; padding: 14px 15px; }
.side-title {
  font-size: 16px; color: #fff; margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.side-title .t-ico { width: 26px; height: 26px; flex: none; filter: drop-shadow(0 1px 3px rgba(0,0,0,.6)); }

.rank-list { list-style: none; }
.rank-list li { display: flex; align-items: center; gap: 9px; padding: 6px 0; border-bottom: 1px dashed #1b2745; font-size: 13.5px; }
.rank-list li:last-child { border-bottom: none; }
.rank-no {
  flex: none; width: 21px; height: 21px; line-height: 21px; text-align: center;
  background: #223353; color: var(--text-dim); font-size: 12px; border-radius: 4px; font-family: Consolas, monospace;
}
.rank-list li:nth-child(1) .rank-no { background: linear-gradient(180deg,#ffd970,#cf8a17); color: #4a2c00; font-weight: 700; }
.rank-list li:nth-child(2) .rank-no { background: linear-gradient(180deg,#e3e9f5,#96a5c2); color: #26324c; font-weight: 700; }
.rank-list li:nth-child(3) .rank-no { background: linear-gradient(180deg,#ffb08a,#b56a3c); color: #4a2200; font-weight: 700; }
.rank-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.rank-name:hover { color: var(--gold); }
.rank-hot { flex: none; color: #ff8a63; font-size: 12px; font-family: Consolas, monospace; }

.feed-list { list-style: none; height: 218px; overflow: hidden; }
.feed-list li { padding: 5px 0; border-bottom: 1px dashed #1b2745; font-size: 12.5px; color: var(--text-dim); line-height: 1.55; }
.feed-list b { color: #7ec3ff; font-weight: 600; }
.feed-list em { font-style: normal; color: var(--gold); }

.warn-card { border-color: #5d2417; background: linear-gradient(180deg, #241318, #121c30); }
.warn-card p { font-size: 12.5px; color: #e8c9b4; }
.warn-card b { color: #ff8a63; }
.domain-em { color: var(--gold) !important; }
.warn-link { display: inline-block; margin-top: 8px; font-size: 12.5px; color: #ff8a63; }
.warn-link:hover { text-decoration: underline; }

.qq-card { text-align: center; }
.qq-num { font-size: 26px; font-weight: 800; color: var(--gold); font-family: Consolas, monospace; letter-spacing: 1px; }
.qq-tip { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* ---------- 截图墙 ---------- */
.shot-zone { margin: 30px 0; }
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.shot-grid figure {
  position: relative; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-panel);
}
.shot-grid img { width: 100%; height: 190px; object-fit: cover; transition: .3s; }
.shot-grid figure:hover img { transform: scale(1.06); }
.shot-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(8,12,22,.92));
  color: #ffe6b0; font-size: 13px; padding: 22px 12px 8px;
}
.pet-strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 14px; padding: 10px 14px;
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: 8px;
}
.pet-strip-label { font-size: 13px; color: var(--text-dim); }
.pet-strip img {
  width: 46px; height: 46px; border-radius: 8px; border: 1px solid var(--line);
  background: #0d1526; padding: 2px; transition: .15s;
}
.pet-strip img:hover { border-color: var(--gold); transform: translateY(-3px); }

/* ---------- 攻略资讯 ---------- */
.news-zone { margin: 30px 0 36px; }
.news-head { display: flex; align-items: center; justify-content: space-between; }
.more-link { font-size: 13px; color: var(--text-dim); }
.more-link:hover { color: var(--gold); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.news-item {
  display: block; background: var(--bg-panel); border: 1px solid var(--line);
  border-radius: 8px; padding: 13px 15px; transition: .15s;
}
.news-item:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.news-item-top { display: flex; align-items: center; gap: 8px; }
.news-cat { flex: none; background: rgba(126,195,255,.14); color: #7ec3ff; font-size: 11px; padding: 1px 8px; border-radius: 3px; }
.news-title { flex: 1; font-size: 15px; font-weight: 700; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-item:hover .news-title { color: var(--gold); }
.news-summary {
  margin-top: 6px; font-size: 12.5px; color: var(--text-dim);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-meta { margin-top: 7px; font-size: 12px; color: #5f7098; }

/* ---------- FAQ（SEO） ---------- */
.faq-zone { margin: 30px 0; }
.faq-list { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: 8px;
  padding: 0 16px;
}
.faq-item summary {
  cursor: pointer; padding: 13px 0; font-size: 15px; font-weight: 700; color: #fff;
  list-style: none; position: relative; padding-right: 26px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 19px; font-weight: 400;
}
.faq-item[open] summary { color: var(--gold); border-bottom: 1px dashed var(--line); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 12px 0 15px; font-size: 13.5px; color: var(--text-dim); line-height: 1.85; }
.faq-item p a { color: var(--gold); }

/* ---------- SEO 文字区 ---------- */
.seo-zone {
  margin: 30px 0 36px; padding: 20px 22px;
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: 9px;
}
.seo-zone h2 { font-size: 17px; color: var(--text); margin-bottom: 10px; }
.seo-zone p { font-size: 13px; color: var(--text-dim); line-height: 1.9; margin-bottom: 10px; }
.seo-zone p:last-child { margin-bottom: 0; }
.seo-zone strong { color: var(--text); font-weight: 600; }
.seo-zone a { color: var(--gold); }

/* ---------- 页脚 ---------- */
.site-footer {
  background: #080d18; border-top: 1px solid var(--line);
  padding: 22px 0 30px; margin-top: 10px;
}
.hot-search { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; line-height: 2.1; }
.hot-search b { color: var(--text); }
.hot-search a {
  display: inline-block; margin: 0 4px; padding: 0 10px;
  border: 1px solid var(--line); border-radius: 4px; color: var(--text-dim); font-size: 12.5px;
}
.hot-search a:hover { color: var(--gold); border-color: var(--gold-deep); }
.copyright a { color: var(--text-dim); text-decoration: underline; }
.copyright a:hover { color: var(--gold); }
.friend-links { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }
.friend-links b { color: var(--text); }
.friend-links a { margin: 0 9px; color: var(--text-dim); }
.friend-links a:hover { color: var(--gold); }
.disclaimer { font-size: 12px; color: #5f7098; line-height: 1.8; }
.copyright { margin-top: 8px; font-size: 12px; color: #5f7098; }

.back-top {
  position: fixed; right: 18px; bottom: 26px; width: 42px; height: 42px;
  line-height: 40px; text-align: center; font-size: 19px; border-radius: 8px;
  background: var(--bg-panel2); border: 1px solid var(--gold-deep); color: var(--gold);
  opacity: 0; pointer-events: none; transition: .25s; z-index: 80;
}
.back-top.show { opacity: 1; pointer-events: auto; }

/* ---------- 攻略页 / 联系页 ---------- */
.page-body { margin: 24px auto 40px; }
.page-cols { display: grid; grid-template-columns: 1fr 300px; gap: 16px; align-items: start; }
.article-list { display: flex; flex-direction: column; gap: 12px; }
.article-card { background: var(--bg-panel); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; transition: .15s; display: block; }
.article-card:hover { border-color: var(--gold-deep); }
.article-card h3 { font-size: 17px; color: #fff; }
.article-card:hover h3 { color: var(--gold); }
.article-detail { background: var(--bg-panel); border: 1px solid var(--line); border-radius: 9px; padding: 24px 26px; }
.article-detail h1 { font-size: 24px; color: #fff; line-height: 1.45; }
.article-detail .art-meta { margin: 10px 0 18px; font-size: 13px; color: var(--text-dim); padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.article-detail p.art-para { margin-bottom: 14px; font-size: 15px; line-height: 1.9; color: var(--text); }
.detail-back { display: inline-block; margin-bottom: 14px; color: var(--text-dim); font-size: 13px; }
.detail-back:hover { color: var(--gold); }

.contact-panel { background: var(--bg-panel); border: 1px solid var(--line); border-radius: 9px; padding: 26px 28px; }
.contact-panel h1 { font-size: 26px; color: #fff; margin-bottom: 4px; }
.contact-panel .sub { color: var(--text-dim); margin-bottom: 20px; }
.price-table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; }
.price-table th { background: #0f1830; color: var(--gold); padding: 10px; font-size: 14px; border: 1px solid var(--line); }
.price-table td { padding: 10px; border: 1px solid var(--line); font-size: 14px; text-align: center; }
.price-table td.pos-name { font-weight: 700; color: #fff; }
.price-table .hl { color: #ff8a63; font-weight: 700; }
.contact-steps { margin: 6px 0 6px 18px; }
.contact-steps li { margin-bottom: 9px; font-size: 14.5px; }
.contact-qq-big {
  margin: 18px 0; padding: 16px; text-align: center; border-radius: 8px;
  background: linear-gradient(180deg, #1a2743, #121c30); border: 1px dashed var(--gold-deep);
}
.contact-qq-big b { display: block; font-size: 32px; color: var(--gold); font-family: Consolas, monospace; }
.contact-qq-big span { font-size: 13px; color: var(--text-dim); }
.rule-list { margin-left: 18px; }
.rule-list li { font-size: 13.5px; color: var(--text-dim); margin-bottom: 7px; }

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .rec-grid { grid-template-columns: repeat(2, 1fr); }
  .main-cols, .page-cols { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: row; }
}
@media (max-width: 640px) {
  .header-inner { height: 56px; }
  .logo-main { font-size: 24px; }
  .logo-sub { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #101a30; border-bottom: 2px solid var(--gold-deep);
    padding: 8px 14px 14px;
  }
  .main-nav.open { display: flex; }
  .hero { min-height: 240px; }
  .hero-text h1 { font-size: 28px; letter-spacing: 2px; }
  .hero-stats { gap: 18px; }
  .stat b { font-size: 20px; }
  .btn-gold, .btn-line { padding: 10px 18px; font-size: 14px; }
  .rec-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .shot-grid img { height: 160px; }
  .news-grid { grid-template-columns: 1fr; }
  .kaifu-head { flex-direction: column; align-items: flex-start; }
}
