/* ============================================
   幼幼 游戏解说主题 - 原创CSS样式
   域名: 855937.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; }

/* === 流星雨背景动画 === */
.wp6mj {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.wp6mj .dgtxuk {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,212,255,0.8), transparent);
  animation: meteorFall linear infinite;
  opacity: 0;
}
.wp6mj .dgtxuk:nth-child(1) { left: 10%; animation-duration: 3s; animation-delay: 0s; }
.wp6mj .dgtxuk:nth-child(2) { left: 25%; animation-duration: 2.5s; animation-delay: 1s; }
.wp6mj .dgtxuk:nth-child(3) { left: 45%; animation-duration: 3.5s; animation-delay: 0.5s; }
.wp6mj .dgtxuk:nth-child(4) { left: 65%; animation-duration: 2.8s; animation-delay: 2s; }
.wp6mj .dgtxuk:nth-child(5) { left: 80%; animation-duration: 3.2s; animation-delay: 1.5s; }
.wp6mj .dgtxuk: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);
}
.bf6xx2 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.bf6xx2 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;
}
.xsa320 {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.5zvyavv {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.5zvyavv h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.5zvyavv h2 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 24px;
}
.5zvyavv p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}
.xm730881 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.xm730881 .pxdgme { text-align: center; }
.xm730881 .mm7qy16c {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
}
.xm730881 .q20gmfx {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === 按钮 === */
.6cez58 {
  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);
}
.6cez58:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
  color: #fff;
}
.fhup79 {
  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;
}
.fhup79:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
}
.732qag8 { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === 区块通用 === */
.section {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
.csh1z3g0 { background: var(--bg-secondary); }
.0tiewk4 {
  text-align: center;
  margin-bottom: 48px;
}
.0tiewk4 h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.0tiewk4 h2 span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.0tiewk4 p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}
.7xo7qzde {
  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);
}

/* === 视频卡片网格 === */
.h8dn5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.h37ot {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.35s;
  cursor: pointer;
}
.h37ot:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}
.z2clnnc {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg-card);
  overflow: hidden;
}
.z2clnnc img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.h37ot:hover .z2clnnc img { transform: scale(1.08); }
.0vdx8 {
  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;
}
.0vdx8::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.h37ot:hover .0vdx8 { opacity: 1; }
.a6lnpct {
  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;
}
.s77q0gad { padding: 14px; }
.s77q0gad 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;
}
.p89s3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.p89s3 .7qjftc {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
}

/* === 特色模块卡片 === */
.78ha0p {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.uic4x2zl {
  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;
}
.uic4x2zl:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}
.vnarrp {
  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;
}
.uic4x2zl h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.uic4x2zl p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === 社区动物吉祥物 === */
.nkpkb {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.d829m1k {
  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;
}
.d829m1k:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.12);
  transform: translateY(-4px);
}
.fy32g7 { font-size: 3rem; margin-bottom: 12px; }
.d829m1k h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent-blue);
}
.d829m1k p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* === 专家团队 === */
.22rtn {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.y41c9yyb {
  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;
}
.y41c9yyb:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.12);
  transform: translateY(-4px);
}
.v63e1 {
  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;
}
.y41c9yyb h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.y41c9yyb .eitcuw5 {
  font-size: 0.8rem;
  color: var(--accent-purple);
  margin-bottom: 8px;
}
.y41c9yyb p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* === 图文区块 === */
.victn6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.victn6.reverse { direction: rtl; }
.victn6.reverse > * { direction: ltr; }
.gqbds { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); }
.gqbds img { width: 100%; display: block; }
.67dei h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.67dei p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}
.67dei .1n0psidm { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.67dei .1n0psidm 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 === */
.xe335y04 { max-width: 800px; margin: 0 auto; }
.h01zr {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.qc47h {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}
.qc47h:hover { background: var(--bg-card-hover); }
.qc47h .3r8b4 {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--accent-blue);
}
.h01zr.active .qc47h .3r8b4 { transform: rotate(180deg); }
.zefoak9 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.zefoak9-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;
}
.7okuf {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.zeapj p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}
.rpth18 h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.rpth18 ul li { margin-bottom: 8px; }
.rpth18 ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.rpth18 ul li a:hover { color: var(--accent-blue); }
.8rvq3yp {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.8rvq3yp img {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}
.9kotchy7 {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.9kotchy7 a { color: var(--text-muted); }
.9kotchy7 a:hover { color: var(--accent-blue); }

/* === 搜索框 === */
.u0u316v6 {
  position: relative;
  max-width: 320px;
}
.u0u316v6 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;
}
.u0u316v6 input:focus { border-color: var(--accent-blue); }
.u0u316v6 input::placeholder { color: var(--text-muted); }
.u0u316v6 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;
}

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

/* === 视频播放页 === */
.pztmt2s {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.pztmt2s video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.rnu2k { padding: 20px 0; }
.rnu2k h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.mjizy {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sunid {
  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);
}
.x2g3v {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}
.x2g3v .bvzs3a {
  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;
}
.x2g3v .bvzs3a:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.kq1h55h {
  font-size: 1.3rem;
  margin: 32px 0 20px;
  color: var(--text-primary);
}

/* === 标签云 === */
.lcvicim5 { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.lcvicim5 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;
}
.lcvicim5 a:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.08);
}

/* === 公告/横幅 === */
.tldczb {
  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;
}
.tldczb .tvicu {
  background: var(--accent-blue);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.tldczb p { color: var(--text-secondary); font-size: 0.9rem; }

/* === 响应式 === */
@media (max-width: 1024px) {
  .h8dn5 { grid-template-columns: repeat(3, 1fr); }
  .78ha0p { grid-template-columns: repeat(2, 1fr); }
  .22rtn { grid-template-columns: repeat(3, 1fr); }
  .7okuf { 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; }
  .bf6xx2 { display: flex; }
  .5zvyavv h1 { font-size: 1.8rem; }
  .xm730881 { gap: 20px; }
  .xm730881 .mm7qy16c { font-size: 1.5rem; }
  .h8dn5 { grid-template-columns: repeat(2, 1fr); }
  .78ha0p { grid-template-columns: 1fr; }
  .nkpkb { grid-template-columns: repeat(2, 1fr); }
  .22rtn { grid-template-columns: repeat(2, 1fr); }
  .victn6 { grid-template-columns: 1fr; gap: 24px; }
  .victn6.reverse { direction: ltr; }
  .7okuf { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .0tiewk4 h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .h8dn5 { grid-template-columns: 1fr; }
  .nkpkb { grid-template-columns: 1fr; }
  .22rtn { grid-template-columns: 1fr; }
  .hero-section { min-height: 420px; padding: 90px 16px 40px; }
  .5zvyavv h1 { font-size: 1.5rem; }
}
