/* =============================================
   抖音风 - 主样式文件
   y576rx.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; }

/* ===== 顶部公告栏 ===== */
.uckp3gl {
  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;
}
.uckp3gl 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;
}
.rze7v821 {
  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 ===== */
.lw20l1 {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x9rb9 {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.x9rb9::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.5) 0%, rgba(10,14,26,0.85) 100%);
}
.maxiv {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.mg8ffx4d {
  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;
}
.maxiv 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;
}
.maxiv p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 24px;
}
.to3acl { 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;
}
.xadmibcr {
  text-align: center;
  margin-bottom: 40px;
}
.q68se3g {
  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;
}
.xadmibcr h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.xadmibcr p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.slarjh2d {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 0.88rem;
  margin-top: 24px;
}

/* ===== 视频卡片网格 ===== */
.x636rnw {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.crjghn {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.crjghn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.b9v0ye {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.b9v0ye img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.crjghn:hover .b9v0ye 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);
}
.crjghn: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;
}
.on8oy1 {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}
.qsxq74w {
  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;
}
.e67c2 { padding: 14px; }
.xyonm {
  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;
}
.om3gty {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hq0gocb {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hq0gocb span {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
}

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

/* ===== 专家展示 ===== */
.f95lvji {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.e36rztk {
  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);
}
.e36rztk:hover { border-color: var(--accent); }
.qstqiw7v {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.kdvplh h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.kdvplh .role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.kdvplh p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.zwv46 { display: flex; gap: 8px; }
.zwv46 a {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.78rem;
  background: var(--bg-light);
  color: var(--accent);
  border: 1px solid var(--border);
}
.zwv46 a:hover { background: var(--accent); color: #fff; }

/* ===== 用户评价 ===== */
.dj5nll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.xs9an39f {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.trahjg7 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.c12x2d {
  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;
}
.roosrdui { font-size: 0.88rem; color: #fff; font-weight: 600; }
.afvg2 { color: var(--accent); font-size: 0.82rem; }
.osue6 { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.q3s14jh { max-width: 800px; margin: 0 auto; }
.focwv3n {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.j2zv8 {
  padding: 16px 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.j2zv8:hover { background: var(--bg-light); }
.j2zv8::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform var(--transition);
}
.focwv3n.open .j2zv8::after { transform: rotate(45deg); }
.dj9z6ako {
  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;
}
.focwv3n.open .dj9z6ako {
  padding: 0 20px 16px;
  max-height: 300px;
}

/* ===== 合作伙伴 ===== */
.lsf8cyu3 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.f37ob {
  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);
}
.f37ob:hover { border-color: var(--accent); color: var(--accent); }

/* ===== 数据统计 ===== */
.u7tlplf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.ygfvvt1 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.vaa71r4y {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.r88850e {
  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;
}
.poeg0p4i {
  max-width: 1280px;
  margin: 0 auto;
}
.dniv4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.fu2s0v .logo { margin-bottom: 12px; }
.fu2s0v p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.z35tqf7 h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 12px;
}
.z35tqf7 a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.z35tqf7 a:hover { color: var(--accent); }
.rucimg {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.pg8zylp7 {
  text-align: center;
}
.pg8zylp7 svg {
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  background: #fff;
}
.pg8zylp7 p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.xut0qtae {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.n6xo2u {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.j2f5i { display: flex; gap: 10px; }
.j2f5i 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);
}
.j2f5i 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 ===== */
.y947k5 {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.y947k5 h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}
.y947k5 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; }
  .maxiv h1 { font-size: 1.8rem; }
  .lw20l1 { min-height: 360px; }
  .dniv4 { grid-template-columns: 1fr; }
  .u7tlplf { grid-template-columns: repeat(2, 1fr); }
  .x636rnw { grid-template-columns: 1fr; }
  .f95lvji { grid-template-columns: 1fr; }
  .dj5nll { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .maxiv h1 { font-size: 1.5rem; }
  .xadmibcr h2 { font-size: 1.4rem; }
  .u7tlplf { grid-template-columns: 1fr 1fr; }
}
