/* =============================================
   国产 - 主样式文件
   y00tna.cn | 游戏解说主题
   ============================================= */

:root {
  --primary: #0d1b2a;
  --primary-light: #1b2838;
  --accent: #f5a623;
  --accent2: #ff7e29;
  --blue: #1e90ff;
  --purple: #9b59b6;
  --green: #2ecc71;
  --red: #e74c3c;
  --text: #e8e8e8;
  --text-dark: #1a1a2e;
  --text-muted: #8892a4;
  --bg: #0a0e1a;
  --bg-card: #141b2d;
  --bg-light: #1a2340;
  --border: #2a3a5c;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'PingFang SC','Microsoft YaHei','Noto Sans SC',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);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== 顶部公告栏 ===== */
.t8dbdgs {
  background: linear-gradient(90deg, var(--primary) 0%, #2d1b69 100%);
  color: #ccc;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.t8dbdgs a { color: var(--accent); font-weight: 600; }

/* ===== 头部导航 ===== */
.site-header {
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
}
.ycxxox8k {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
}
.logo-text { color: #fff; }
.logo-text span { color: var(--accent); }

.main-nav { display: flex; gap: 6px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: #bbb;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--bg-light);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 搜索栏 ===== */
.search-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.search-wrap {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.search-wrap input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-wrap input:focus { border-color: var(--accent); }
.search-wrap button {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition);
}
.search-wrap button:hover { transform: scale(1.05); }

/* ===== Hero Banner ===== */
.ns5bzaq {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ktvpi {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ktvpi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.5) 0%, rgba(10,14,26,0.85) 100%);
}
.r47tdiq {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.pnwbz {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.r47tdiq h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.r47tdiq p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 24px;
}
.lsp5il { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.3); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== 通用Section ===== */
.section {
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.e7g5j {
  text-align: center;
  margin-bottom: 40px;
}
.o0qu2il {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.e7g5j h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.e7g5j p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.tjzhas {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 0.88rem;
  margin-top: 24px;
}

/* ===== 视频卡片网格 ===== */
.onb6v5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.hcuhz8 {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.hcuhz8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.ocsjop2 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ocsjop2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.hcuhz8:hover .ocsjop2 img { transform: scale(1.05); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition);
}
.hcuhz8:hover .play-btn { opacity: 1; }
.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,166,35,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.ew500y {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}
.rpl1g {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.72rem;
}
.u3bfl { padding: 14px; }
.f418tx6 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ogtyd85 {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.k2wyk {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.k2wyk span {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
}

/* ===== 特色模块 ===== */
.iygpce {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.f4v7uvh7 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.f4v7uvh7:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.j63il0 {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.xq01xudf { background: rgba(245,166,35,0.15); }
.a2nq2 { background: rgba(30,144,255,0.15); }
.c3jjyvhu { background: rgba(155,89,182,0.15); }
.j481e { background: rgba(46,204,113,0.15); }
.f4v7uvh7 h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}
.f4v7uvh7 p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== 专家展示 ===== */
.ytvlln63 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.fk7y7v54 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.fk7y7v54:hover { border-color: var(--accent); }
.ymdjo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.h5fzd5b h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.h5fzd5b .role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.h5fzd5b p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.fhgry { display: flex; gap: 8px; }
.fhgry a {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.78rem;
  background: var(--bg-light);
  color: var(--accent);
  border: 1px solid var(--border);
}
.fhgry a:hover { background: var(--accent); color: #fff; }

/* ===== 用户评价 ===== */
.a2d0xws {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.guat22 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.mjexs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ruxhux {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.hqs2c { font-size: 0.88rem; color: #fff; font-weight: 600; }
.f21rz { color: var(--accent); font-size: 0.82rem; }
.h5zsroy3 { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.lexuc7 { max-width: 800px; margin: 0 auto; }
.aizyhi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.oji7r4tf {
  padding: 16px 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.oji7r4tf:hover { background: var(--bg-light); }
.oji7r4tf::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform var(--transition);
}
.aizyhi.open .oji7r4tf::after { transform: rotate(45deg); }
.e2rz6mtg {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.aizyhi.open .e2rz6mtg {
  padding: 0 20px 16px;
  max-height: 300px;
}

/* ===== 合作伙伴 ===== */
.zicfvdg5 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.t4o8fev {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: all var(--transition);
}
.t4o8fev:hover { border-color: var(--accent); color: var(--accent); }

/* ===== 数据统计 ===== */
.ztmz6vut {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.co49ne {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.lzrj1e {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.g7dp7uvn {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 60px;
}
.ho0o09e8 {
  max-width: 1280px;
  margin: 0 auto;
}
.n907b3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.v73qm .logo { margin-bottom: 12px; }
.v73qm p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.xu1x6 h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 12px;
}
.xu1x6 a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.xu1x6 a:hover { color: var(--accent); }
.yxkfzoh {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.e87l9g8 {
  text-align: center;
}
.e87l9g8 svg {
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  background: #fff;
}
.e87l9g8 p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.rgf63d5m {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.wfc45l {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.wbfmw { display: flex; gap: 10px; }
.wbfmw a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.wbfmw a:hover { background: var(--accent); color: #fff; }

/* ===== 面包屑 ===== */
.breadcrumb {
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ===== 内页Hero ===== */
.jma1ivn {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.jma1ivn h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}
.jma1ivn p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .r47tdiq h1 { font-size: 1.8rem; }
  .ns5bzaq { min-height: 360px; }
  .n907b3 { grid-template-columns: 1fr; }
  .ztmz6vut { grid-template-columns: repeat(2, 1fr); }
  .onb6v5 { grid-template-columns: 1fr; }
  .ytvlln63 { grid-template-columns: 1fr; }
  .a2d0xws { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .r47tdiq h1 { font-size: 1.5rem; }
  .e7g5j h2 { font-size: 1.4rem; }
  .ztmz6vut { grid-template-columns: 1fr 1fr; }
}
