/* ============================================
   男同网 游戏解说主题 - 原创CSS样式
   域名: 163673.cn
   配色: 深空蓝 + 电光蓝 + 霓虹紫 + 流星橙
   ============================================ */

/* === CSS变量 === */
:root {
  --bg-primary: #060B18;
  --bg-secondary: #0D1528;
  --bg-card: #111D35;
  --bg-card-hover: #162545;
  --accent-blue: #00D4FF;
  --accent-purple: #8B5CF6;
  --accent-orange: #FF6B35;
  --accent-pink: #FF3CAC;
  --accent-green: #00E676;
  --text-primary: #E8EDF5;
  --text-secondary: #8A9BBF;
  --text-muted: #5A6B8A;
  --border-color: #1A2744;
  --gradient-main: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 50%, #FF3CAC 100%);
  --gradient-card: linear-gradient(180deg, #111D35 0%, #0D1528 100%);
  --gradient-hero: linear-gradient(135deg, #060B18 0%, #0D1528 40%, #1A1040 100%);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1280px;
  --font-main: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
}

/* === 全局重置 === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--accent-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-purple); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; }

/* === 容器 === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* === 流星雨背景动画 === */
.wwzopx {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.wwzopx .3w0ic {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,212,255,0.8), transparent);
  animation: meteorFall linear infinite;
  opacity: 0;
}
.wwzopx .3w0ic:nth-child(1) { left: 10%; animation-duration: 3s; animation-delay: 0s; }
.wwzopx .3w0ic:nth-child(2) { left: 25%; animation-duration: 2.5s; animation-delay: 1s; }
.wwzopx .3w0ic:nth-child(3) { left: 45%; animation-duration: 3.5s; animation-delay: 0.5s; }
.wwzopx .3w0ic:nth-child(4) { left: 65%; animation-duration: 2.8s; animation-delay: 2s; }
.wwzopx .3w0ic:nth-child(5) { left: 80%; animation-duration: 3.2s; animation-delay: 1.5s; }
.wwzopx .3w0ic:nth-child(6) { left: 92%; animation-duration: 2.6s; animation-delay: 0.8s; }
@keyframes meteorFall {
  0% { transform: translateY(-100px) rotate(25deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(25deg); opacity: 0; }
}

/* === 顶部导航 === */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(6, 11, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 42px; width: auto; border-radius: var(--radius-sm); }
.site-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.08);
}
.snimkq {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.snimkq span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === Hero Banner === */
.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: var(--gradient-hero);
  overflow: hidden;
}
.96e5uv {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.6b6h2 {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.6b6h2 h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.6b6h2 h2 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 24px;
}
.6b6h2 p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}
.xun3xjut {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.xun3xjut .pfeir6i3 { text-align: center; }
.xun3xjut .sqh73r2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
}
.xun3xjut .b8z5toss {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === 按钮 === */
.ipmyqame {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gradient-main);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.ipmyqame:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
  color: #fff;
}
.yk2u7 {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.yk2u7:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
}
.1us9yf4e { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === 区块通用 === */
.section {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
.hk4vh { background: var(--bg-secondary); }
.eh66p {
  text-align: center;
  margin-bottom: 48px;
}
.eh66p h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.eh66p h2 span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eh66p p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}
.yta1a {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-blue);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* === 视频卡片网格 === */
.6n8kg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kdus7hvi {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.35s;
  cursor: pointer;
}
.kdus7hvi:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}
.pz376y {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg-card);
  overflow: hidden;
}
.pz376y img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.kdus7hvi:hover .pz376y img { transform: scale(1.08); }
.kgpel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(0, 212, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}
.kgpel::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.kdus7hvi:hover .kgpel { opacity: 1; }
.s9ls3s {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.nqt22rhm { padding: 14px; }
.nqt22rhm h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.xgjvx4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.xgjvx4 .g3omw {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
}

/* === 特色模块卡片 === */
.ech74t {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.978vhp6 {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s;
}
.978vhp6:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}
.o0jlnr {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.978vhp6 h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.978vhp6 p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === 社区动物吉祥物 === */
.kjalu0 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.40v6wlm {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s;
}
.40v6wlm:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.12);
  transform: translateY(-4px);
}
.gxz0k7a { font-size: 3rem; margin-bottom: 12px; }
.40v6wlm h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent-blue);
}
.40v6wlm p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* === 专家团队 === */
.ntpmg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.8mwhug44 {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.35s;
}
.8mwhug44:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.12);
  transform: translateY(-4px);
}
.hv18c0yn {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.8mwhug44 h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.8mwhug44 .l7635 {
  font-size: 0.8rem;
  color: var(--accent-purple);
  margin-bottom: 8px;
}
.8mwhug44 p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* === 图文区块 === */
.m9ng04s {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.m9ng04s.reverse { direction: rtl; }
.m9ng04s.reverse > * { direction: ltr; }
.qaov70q { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); }
.qaov70q img { width: 100%; display: block; }
.l5y4e958 h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.l5y4e958 p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}
.l5y4e958 .flc6ra { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.l5y4e958 .flc6ra span {
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-purple);
  border-radius: 50px;
  font-size: 0.82rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* === FAQ === */
.42xzff5z { max-width: 800px; margin: 0 auto; }
.ykshdf86 {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.116li {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}
.116li:hover { background: var(--bg-card-hover); }
.116li .ix6el0 {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--accent-blue);
}
.ykshdf86.active .116li .ix6el0 { transform: rotate(180deg); }
.8tb5une {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.8tb5une-inner {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* === 面包屑 === */
.breadcrumb {
  padding: 90px 0 16px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-blue); }
.breadcrumb span { color: var(--text-muted); margin: 0 6px; }
.breadcrumb em { color: var(--text-secondary); font-style: normal; }

/* === 页脚 === */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 0;
  position: relative;
  z-index: 1;
}
.vqygy {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.1p0k5 p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}
.odsuw4 h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.odsuw4 ul li { margin-bottom: 8px; }
.odsuw4 ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.odsuw4 ul li a:hover { color: var(--accent-blue); }
.0ziwhwzq {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.0ziwhwzq img {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}
.q7zic1l {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.q7zic1l a { color: var(--text-muted); }
.q7zic1l a:hover { color: var(--accent-blue); }

/* === 搜索框 === */
.zcz553e {
  position: relative;
  max-width: 320px;
}
.zcz553e input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.zcz553e input:focus { border-color: var(--accent-blue); }
.zcz553e input::placeholder { color: var(--text-muted); }
.zcz553e button {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--accent-blue);
  cursor: pointer;
  padding: 8px;
  font-size: 1rem;
}

/* === 内页通用 === */
.zsm2j {
  padding: 100px 0 50px;
  text-align: center;
  background: var(--gradient-hero);
}
.zsm2j h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.zsm2j p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.zbwlir7 {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.zbwlir7 h2 { font-size: 1.6rem; margin: 32px 0 16px; color: var(--text-primary); }
.zbwlir7 h3 { font-size: 1.3rem; margin: 24px 0 12px; color: var(--text-primary); }
.zbwlir7 p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }

/* === 视频播放页 === */
.zeqxw5h {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.zeqxw5h video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.30mzsl { padding: 20px 0; }
.30mzsl h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.vbqadkjj {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.71chu {
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.6erdr {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}
.6erdr .vfl9firn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
}
.6erdr .vfl9firn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.u7htbh {
  font-size: 1.3rem;
  margin: 32px 0 20px;
  color: var(--text-primary);
}

/* === 标签云 === */
.drwq1i { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.drwq1i a {
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.drwq1i a:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.08);
}

/* === 公告/横幅 === */
.nzv7rwmp {
  background: linear-gradient(90deg, rgba(0,212,255,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.nzv7rwmp .f4xr1 {
  background: var(--accent-blue);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.nzv7rwmp p { color: var(--text-secondary); font-size: 0.9rem; }

/* === 响应式 === */
@media (max-width: 1024px) {
  .6n8kg { grid-template-columns: repeat(3, 1fr); }
  .ech74t { grid-template-columns: repeat(2, 1fr); }
  .ntpmg { grid-template-columns: repeat(3, 1fr); }
  .vqygy { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(6, 11, 24, 0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
  }
  .main-nav.active { display: flex; }
  .snimkq { display: flex; }
  .6b6h2 h1 { font-size: 1.8rem; }
  .xun3xjut { gap: 20px; }
  .xun3xjut .sqh73r2 { font-size: 1.5rem; }
  .6n8kg { grid-template-columns: repeat(2, 1fr); }
  .ech74t { grid-template-columns: 1fr; }
  .kjalu0 { grid-template-columns: repeat(2, 1fr); }
  .ntpmg { grid-template-columns: repeat(2, 1fr); }
  .m9ng04s { grid-template-columns: 1fr; gap: 24px; }
  .m9ng04s.reverse { direction: ltr; }
  .vqygy { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .eh66p h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .6n8kg { grid-template-columns: 1fr; }
  .kjalu0 { grid-template-columns: 1fr; }
  .ntpmg { grid-template-columns: 1fr; }
  .hero-section { min-height: 420px; padding: 90px 16px 40px; }
  .6b6h2 h1 { font-size: 1.5rem; }
}
