/* =====================================================================
   91视频 · 顶级影视配音与声音设计工作室
   视觉系统：录音棚风 + 质感暗调（第 06 套专属）
   主色 #FF9800 / 海绵灰 #757575 / 背景 #121212 / 卡片 #1E1E1E / 正文 #E0E0E0
   命名前缀统一使用 vs-（Voice Studio），避免与其他模板雷同
   ===================================================================== */

:root {
  --vs-amber: #FF9800;          /* 温暖橙光 */
  --vs-amber-deep: #E07B00;
  --vs-amber-soft: rgba(255, 152, 0, .14);
  --vs-foam: #757575;           /* 隔音海绵灰 */
  --vs-bg: #121212;             /* 录音棚暗黑 */
  --vs-bg-2: #181818;
  --vs-card: #1E1E1E;           /* 深灰卡片 */
  --vs-card-2: #242424;
  --vs-line: #2c2c2c;
  --vs-text: #E0E0E0;           /* 正文 */
  --vs-text-dim: #9e9e9e;
  --vs-white: #f5f5f5;
  --vs-radius: 14px;
  --vs-radius-sm: 9px;
  --vs-shadow: 0 14px 40px rgba(0, 0, 0, .55);
  --vs-shadow-amber: 0 10px 30px rgba(255, 152, 0, .22);
  --vs-maxw: 1200px;
  --vs-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", "Source Han Sans CN", system-ui, -apple-system, sans-serif;
  --vs-font-display: "Songti SC", "Noto Serif SC", "Source Han Serif CN", Georgia, var(--vs-font);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--vs-font);
  background-color: var(--vs-bg);
  color: var(--vs-text);
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: .01em;
  /* 极简声波线条贯穿全站：背景叠加细微波纹纹理 */
  background-image:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 152, 0, .10), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, .015) 38px 39px);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--vs-amber); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--vs-amber-deep); }

h1, h2, h3, h4 { font-family: var(--vs-font-display); color: var(--vs-white); line-height: 1.35; font-weight: 700; }

.vs-container { width: 100%; max-width: var(--vs-maxw); margin-inline: auto; padding-inline: 22px; }

.vs-skip-link {
  position: absolute; left: -999px; top: 0; background: var(--vs-amber); color: #1b1b1b;
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; font-weight: 700;
}
.vs-skip-link:focus { left: 0; }

/* ============================ 顶部导航 ============================ */
.vs-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18, 18, 18, .82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--vs-line);
}
.vs-nav { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.vs-brand { display: flex; align-items: center; gap: 11px; font-family: var(--vs-font-display); font-weight: 700; font-size: 1.2rem; color: var(--vs-white); }
.vs-brand:hover { color: var(--vs-white); }
.vs-brand .vs-logo-wave {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  border: 2px solid var(--vs-amber);
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px rgba(255, 152, 0, .12);
}
.vs-brand .vs-logo-wave span {
  display: block; width: 3px; height: 13px; margin: 0 1px; background: var(--vs-amber); border-radius: 2px;
  animation: vs-eq 1.1s ease-in-out infinite;
}
.vs-brand .vs-logo-wave span:nth-child(2) { animation-delay: .18s; height: 18px; }
.vs-brand .vs-logo-wave span:nth-child(3) { animation-delay: .36s; height: 9px; }
.vs-logo-wave i { display: flex; align-items: center; }
@keyframes vs-eq { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1.25); } }

.vs-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.vs-menu a {
  color: var(--vs-text); padding: 8px 13px; border-radius: 8px; font-size: .95rem; font-weight: 500;
}
.vs-menu a:hover, .vs-menu a[aria-current="page"] { color: var(--vs-white); background: var(--vs-amber-soft); }
.vs-nav-search { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--vs-line); background: var(--vs-card); padding: 7px 12px; border-radius: 999px; color: var(--vs-text-dim); font-size: .9rem; }
.vs-nav-search:hover { border-color: var(--vs-amber); color: var(--vs-amber); }

.vs-burger { display: none; margin-left: auto; background: none; border: 1px solid var(--vs-line); color: var(--vs-text); width: 44px; height: 40px; border-radius: 9px; cursor: pointer; font-size: 1.3rem; }

/* ============================ 按钮 ============================ */
.vs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.vs-btn-primary { background: var(--vs-amber); color: #1b1b1b; box-shadow: var(--vs-shadow-amber); }
.vs-btn-primary:hover { color: #1b1b1b; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 152, 0, .36); }
.vs-btn-ghost { background: transparent; color: var(--vs-white); border-color: var(--vs-foam); }
.vs-btn-ghost:hover { border-color: var(--vs-amber); color: var(--vs-amber); }

/* 试听脉冲波纹按钮 */
.vs-listen-btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  background: var(--vs-amber); color: #1b1b1b; border: none; cursor: pointer;
  padding: 14px 26px 14px 22px; border-radius: 999px; font-weight: 700; font-size: 1rem;
}
.vs-listen-btn .vs-pulse-ring {
  position: absolute; left: 22px; top: 50%; width: 26px; height: 26px; transform: translateY(-50%);
  border-radius: 50%; border: 2px solid var(--vs-amber); animation: vs-pulse 1.8s ease-out infinite; pointer-events: none;
}
@keyframes vs-pulse { 0% { transform: translateY(-50%) scale(.6); opacity: .9; } 100% { transform: translateY(-50%) scale(2.6); opacity: 0; } }

/* ============================ 首屏 Hero ============================ */
.vs-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--vs-line); }
.vs-hero-bg { position: absolute; inset: 0; z-index: 0; }
.vs-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: grayscale(20%) contrast(108%); }
.vs-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18, 18, 18, .55), rgba(18, 18, 18, .92)); }
.vs-hero-inner { position: relative; z-index: 2; padding: 96px 0 84px; max-width: 760px; }
.vs-hero .vs-eyebrow { color: var(--vs-amber); font-weight: 700; letter-spacing: .14em; font-size: .82rem; text-transform: uppercase; }
.vs-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 14px 0 18px; }
.vs-hero p.vs-lead { font-size: 1.18rem; color: var(--vs-text); max-width: 620px; }
.vs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* 频谱动画条 */
.vs-equalizer { display: inline-flex; align-items: flex-end; gap: 4px; height: 40px; margin-top: 34px; }
.vs-equalizer span { width: 5px; background: linear-gradient(180deg, var(--vs-amber), var(--vs-amber-deep)); border-radius: 3px; animation: vs-bars 1.2s ease-in-out infinite; }
.vs-equalizer span:nth-child(odd) { animation-duration: .9s; }
.vs-equalizer span:nth-child(3n) { animation-duration: 1.5s; }
@keyframes vs-bars { 0%, 100% { height: 22%; } 50% { height: 100%; } }

/* ============================ 通用区块 ============================ */
.vs-section { padding: 72px 0; }
.vs-section.vs-alt { background: var(--vs-bg-2); }
.vs-section-head { max-width: 720px; margin-bottom: 40px; }
.vs-section-head .vs-kicker { color: var(--vs-amber); font-weight: 700; letter-spacing: .1em; font-size: .82rem; text-transform: uppercase; }
.vs-section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 10px 0 12px; position: relative; padding-left: 18px; }
.vs-section-head h2::before { content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 5px; background: var(--vs-amber); border-radius: 3px; }
.vs-section-head p { color: var(--vs-text-dim); font-size: 1.05rem; }

/* 卡片网格 */
.vs-grid { display: grid; gap: 24px; }
.vs-grid-2 { grid-template-columns: repeat(2, 1fr); }
.vs-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vs-grid-4 { grid-template-columns: repeat(4, 1fr); }

.vs-card {
  background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.vs-card:hover { transform: translateY(-5px); border-color: rgba(255, 152, 0, .5); box-shadow: var(--vs-shadow); }
.vs-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.vs-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vs-card:hover .vs-card-media img { transform: scale(1.06); }
.vs-card-tag { position: absolute; top: 12px; left: 12px; background: rgba(18, 18, 18, .82); color: var(--vs-amber); font-size: .76rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; border: 1px solid rgba(255, 152, 0, .4); }
.vs-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.vs-card-body h3 { font-size: 1.22rem; margin: 0; }
.vs-card-body p { color: var(--vs-text-dim); font-size: .96rem; margin: 0; flex: 1; }
.vs-card-more { margin-top: 6px; font-weight: 700; color: var(--vs-amber); display: inline-flex; align-items: center; gap: 6px; }
.vs-card-more::after { content: "›"; font-size: 1.3em; transition: transform .2s ease; }
.vs-card:hover .vs-card-more::after { transform: translateX(4px); }

/* ============================ 声优卡 + 角色台词弹出 ============================ */
.vs-actor-card { background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius); overflow: hidden; position: relative; transition: transform .2s ease, border-color .2s ease; }
.vs-actor-card:hover { transform: translateY(-5px); border-color: rgba(255, 152, 0, .5); }
.vs-actor-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #000; }
.vs-actor-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(28%); transition: filter .4s ease, transform .5s ease; }
.vs-actor-card:hover .vs-actor-photo img { filter: grayscale(0); transform: scale(1.05); }
.vs-actor-quote {
  position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(255, 152, 0, .92); color: #161616;
  padding: 10px 13px; border-radius: 10px; font-size: .9rem; font-weight: 600; opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease; line-height: 1.5;
}
.vs-actor-card:hover .vs-actor-quote { opacity: 1; transform: translateY(0); }
.vs-actor-info { padding: 16px 18px 20px; }
.vs-actor-info h3 { margin: 0 0 4px; font-size: 1.18rem; }
.vs-actor-info .vs-actor-line { color: var(--vs-amber); font-size: .86rem; font-weight: 700; }
.vs-actor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.vs-chip { font-size: .76rem; color: var(--vs-text-dim); border: 1px solid var(--vs-line); padding: 3px 10px; border-radius: 999px; }

/* 声线筛选器 */
.vs-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.vs-filter-btn { background: var(--vs-card); border: 1px solid var(--vs-line); color: var(--vs-text); padding: 9px 18px; border-radius: 999px; cursor: pointer; font-size: .92rem; font-weight: 600; transition: all .2s ease; }
.vs-filter-btn:hover { border-color: var(--vs-amber); color: var(--vs-amber); }
.vs-filter-btn.is-active { background: var(--vs-amber); color: #1b1b1b; border-color: var(--vs-amber); }

/* ============================ 试听播放器组件 ============================ */
.vs-player { background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius); padding: 18px 20px; display: flex; align-items: center; gap: 16px; }
.vs-player-play { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--vs-amber); border: none; color: #1b1b1b; font-size: 1.3rem; cursor: pointer; display: grid; place-items: center; transition: transform .15s ease; }
.vs-player-play:hover { transform: scale(1.08); }
.vs-player-main { flex: 1; min-width: 0; }
.vs-player-title { font-weight: 700; color: var(--vs-white); margin-bottom: 8px; font-size: .98rem; }
.vs-player-wave { display: flex; align-items: center; gap: 3px; height: 36px; }
.vs-player-wave span { flex: 1; background: var(--vs-foam); border-radius: 2px; height: 30%; transition: height .2s ease, background .2s ease; }
.vs-player.is-playing .vs-player-wave span { background: var(--vs-amber); animation: vs-bars 1s ease-in-out infinite; }
.vs-player.is-playing .vs-player-wave span:nth-child(2n) { animation-duration: 1.4s; }
.vs-player.is-playing .vs-player-wave span:nth-child(3n) { animation-duration: .8s; }
.vs-player-time { flex: none; color: var(--vs-text-dim); font-size: .85rem; font-variant-numeric: tabular-nums; }

/* A/B 轨切换组件 */
.vs-abtrack { background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius); padding: 22px; }
.vs-abtrack-switch { display: inline-flex; background: var(--vs-bg); border: 1px solid var(--vs-line); border-radius: 999px; padding: 4px; margin-bottom: 16px; }
.vs-abtrack-switch button { border: none; background: transparent; color: var(--vs-text-dim); padding: 8px 22px; border-radius: 999px; cursor: pointer; font-weight: 700; font-size: .92rem; transition: all .2s ease; }
.vs-abtrack-switch button.is-active { background: var(--vs-amber); color: #1b1b1b; }
.vs-abtrack-label { color: var(--vs-text-dim); font-size: .92rem; }
.vs-abtrack-label strong { color: var(--vs-amber); }

/* VR 全景导览占位 */
.vs-vr-stage { position: relative; border-radius: var(--vs-radius); overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--vs-line); }
.vs-vr-stage img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s linear; }
.vs-vr-stage:hover img { transform: scale(1.12); }
.vs-vr-badge { position: absolute; top: 14px; left: 14px; background: rgba(18, 18, 18, .8); border: 1px solid rgba(255, 152, 0, .45); color: var(--vs-amber); padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.vs-vr-hint { position: absolute; inset: 0; display: grid; place-items: center; }
.vs-vr-hint span { background: rgba(255, 152, 0, .92); color: #161616; padding: 12px 22px; border-radius: 999px; font-weight: 700; }

/* 档期预约日历 */
.vs-calendar { background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius); padding: 22px; }
.vs-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vs-cal-head h3 { margin: 0; font-size: 1.15rem; }
.vs-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.vs-cal-grid .vs-cal-dow { text-align: center; color: var(--vs-text-dim); font-size: .8rem; padding: 6px 0; }
.vs-cal-day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 8px; font-size: .9rem; border: 1px solid transparent; background: var(--vs-bg); cursor: default; }
.vs-cal-day.is-free { border-color: rgba(255, 152, 0, .5); color: var(--vs-amber); cursor: pointer; }
.vs-cal-day.is-free:hover { background: var(--vs-amber); color: #1b1b1b; }
.vs-cal-day.is-busy { color: #5a5a5a; text-decoration: line-through; }
.vs-cal-legend { display: flex; gap: 18px; margin-top: 14px; font-size: .85rem; color: var(--vs-text-dim); }
.vs-cal-legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }

/* ============================ 文本内容区 ============================ */
.vs-prose { max-width: 820px; }
.vs-prose p { margin: 0 0 18px; }
.vs-prose h2 { margin: 38px 0 14px; font-size: 1.6rem; }
.vs-prose h3 { margin: 28px 0 10px; font-size: 1.25rem; color: var(--vs-amber); }
.vs-prose ul, .vs-prose ol { padding-left: 22px; margin: 0 0 18px; }
.vs-prose li { margin-bottom: 8px; }
.vs-prose blockquote { border-left: 4px solid var(--vs-amber); background: var(--vs-amber-soft); margin: 22px 0; padding: 14px 20px; border-radius: 0 10px 10px 0; color: var(--vs-white); }

.vs-figure { margin: 26px 0; }
.vs-figure img { border-radius: var(--vs-radius); border: 1px solid var(--vs-line); }
.vs-figure figcaption { color: var(--vs-text-dim); font-size: .88rem; margin-top: 9px; text-align: center; }

/* 面包屑 */
.vs-breadcrumb { font-size: .88rem; color: var(--vs-text-dim); padding: 18px 0 0; }
.vs-breadcrumb a { color: var(--vs-text-dim); }
.vs-breadcrumb a:hover { color: var(--vs-amber); }
.vs-breadcrumb span { margin: 0 8px; }

/* 内页 banner */
.vs-pagehead { position: relative; overflow: hidden; border-bottom: 1px solid var(--vs-line); }
.vs-pagehead-bg { position: absolute; inset: 0; }
.vs-pagehead-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.vs-pagehead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 18, 18, .55), rgba(18, 18, 18, .92)); }
.vs-pagehead-inner { position: relative; z-index: 2; padding: 64px 0 56px; max-width: 760px; }
.vs-pagehead .vs-kicker { color: var(--vs-amber); font-weight: 700; letter-spacing: .1em; font-size: .82rem; text-transform: uppercase; }
.vs-pagehead h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 12px 0 14px; }
.vs-pagehead p { color: var(--vs-text); font-size: 1.08rem; max-width: 620px; }

/* FAQ */
.vs-faq details { background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius-sm); margin-bottom: 12px; padding: 4px 20px; }
.vs-faq summary { cursor: pointer; font-weight: 700; color: var(--vs-white); padding: 14px 0; list-style: none; position: relative; padding-right: 30px; }
.vs-faq summary::-webkit-details-marker { display: none; }
.vs-faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; color: var(--vs-amber); font-size: 1.4rem; transition: transform .2s ease; }
.vs-faq details[open] summary::after { transform: rotate(45deg); }
.vs-faq details p { color: var(--vs-text-dim); margin: 0 0 16px; }

/* 相关链接 */
.vs-related { display: flex; flex-wrap: wrap; gap: 12px; }
.vs-related a { background: var(--vs-card); border: 1px solid var(--vs-line); padding: 10px 18px; border-radius: 999px; color: var(--vs-text); font-size: .92rem; }
.vs-related a:hover { border-color: var(--vs-amber); color: var(--vs-amber); }

/* 数据条 */
.vs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vs-stat { text-align: center; padding: 26px 14px; background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius); }
.vs-stat b { display: block; font-family: var(--vs-font-display); font-size: 2.2rem; color: var(--vs-amber); }
.vs-stat span { color: var(--vs-text-dim); font-size: .92rem; }

/* 价格表 */
.vs-pricing { width: 100%; border-collapse: collapse; background: var(--vs-card); border-radius: var(--vs-radius); overflow: hidden; border: 1px solid var(--vs-line); }
.vs-pricing th, .vs-pricing td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--vs-line); font-size: .95rem; }
.vs-pricing thead th { background: var(--vs-card-2); color: var(--vs-amber); font-size: .9rem; }
.vs-pricing tbody tr:last-child td { border-bottom: none; }
.vs-pricing td:last-child { color: var(--vs-amber); font-weight: 700; }

/* 提示框 */
.vs-note { background: var(--vs-amber-soft); border: 1px solid rgba(255, 152, 0, .35); border-radius: var(--vs-radius-sm); padding: 16px 20px; color: var(--vs-white); margin: 22px 0; }
.vs-note strong { color: var(--vs-amber); }

/* 搜索 */
.vs-search-box { display: flex; gap: 10px; margin: 26px 0; }
.vs-search-box input { flex: 1; background: var(--vs-card); border: 1px solid var(--vs-line); color: var(--vs-white); padding: 14px 18px; border-radius: 999px; font-size: 1rem; }
.vs-search-box input:focus { outline: none; border-color: var(--vs-amber); }
.vs-search-results { display: grid; gap: 14px; margin-top: 24px; }
.vs-search-item { background: var(--vs-card); border: 1px solid var(--vs-line); border-radius: var(--vs-radius-sm); padding: 18px 20px; }
.vs-search-item h3 { margin: 0 0 6px; font-size: 1.1rem; }
.vs-search-item p { margin: 0; color: var(--vs-text-dim); font-size: .92rem; }
.vs-search-item .vs-search-url { color: var(--vs-foam); font-size: .8rem; }

/* ============================ 页脚 ============================ */
.vs-footer { background: #0d0d0d; border-top: 1px solid var(--vs-line); padding: 56px 0 26px; margin-top: 40px; }
.vs-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.vs-footer h4 { color: var(--vs-white); font-size: 1rem; margin: 0 0 16px; }
.vs-footer ul { list-style: none; padding: 0; margin: 0; }
.vs-footer li { margin-bottom: 10px; }
.vs-footer a { color: var(--vs-text-dim); font-size: .92rem; }
.vs-footer a:hover { color: var(--vs-amber); }
.vs-footer-desc { color: var(--vs-text-dim); font-size: .92rem; max-width: 320px; }
.vs-footer-bottom { border-top: 1px solid var(--vs-line); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--vs-foam); font-size: .85rem; }
.vs-footer-bottom a { color: var(--vs-foam); }

/* 404 / offline */
.vs-center-stage { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.vs-center-stage .vs-big { font-family: var(--vs-font-display); font-size: clamp(4rem, 16vw, 9rem); color: var(--vs-amber); line-height: 1; }
.vs-center-stage h1 { margin: 10px 0 14px; }
.vs-center-stage p { color: var(--vs-text-dim); max-width: 520px; margin: 0 auto 26px; }

/* CTA 区块 */
.vs-cta { text-align: center; background: linear-gradient(135deg, rgba(255, 152, 0, .16), rgba(30, 30, 30, .4)); border: 1px solid rgba(255, 152, 0, .3); border-radius: 20px; padding: 52px 30px; }
.vs-cta h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0 0 12px; }
.vs-cta p { color: var(--vs-text); max-width: 560px; margin: 0 auto 26px; }

/* 工具类 */
.vs-mt-0 { margin-top: 0; }
.vs-text-dim { color: var(--vs-text-dim); }
.vs-divider { height: 1px; background: var(--vs-line); border: none; margin: 40px 0; }

/* ============================ 响应式断点 ============================ */
@media (max-width: 1024px) {
  .vs-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .vs-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .vs-burger { display: inline-grid; place-items: center; }
  .vs-menu {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--vs-bg-2); border-bottom: 1px solid var(--vs-line); padding: 14px 22px 22px;
    margin-left: 0; gap: 2px; display: none; max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .vs-menu.is-open { display: flex; }
  .vs-menu a { padding: 13px 12px; }
  .vs-nav-search { width: 100%; justify-content: center; margin-top: 8px; }
  .vs-grid-3, .vs-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vs-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vs-grid-2, .vs-grid-3, .vs-grid-4 { grid-template-columns: 1fr; }
  .vs-footer-grid { grid-template-columns: 1fr; }
  .vs-hero-inner { padding: 64px 0 56px; }
  .vs-section { padding: 52px 0; }
  .vs-player { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* ===== A/B 轨对比（两种结构） ===== */
.vs-ab-player { margin: 20px 0; }
.vs-ab-tabs { display: flex; gap: 12px; margin-bottom: 16px; }
.vs-ab-tab {
  flex: 1; padding: 10px 16px; border: 1px solid var(--vs-line);
  background: var(--vs-card); color: var(--vs-text-dim); cursor: pointer;
  border-radius: var(--vs-radius-sm); font-size: 14px; font-weight: 500;
  transition: all .3s ease;
}
.vs-ab-tab:hover { border-color: var(--vs-amber); color: var(--vs-text); }
.vs-ab-tab.is-active { background: var(--vs-amber); color: var(--vs-bg); border-color: var(--vs-amber); }

.vs-player-lg { padding: 20px; background: var(--vs-card-2); border-radius: var(--vs-radius); }

/* ===== 站内搜索 ===== */
.vs-search-form {
  display: flex; gap: 12px; margin-bottom: 24px;
}
.vs-search-input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--vs-line);
  background: var(--vs-card); color: var(--vs-text); border-radius: var(--vs-radius-sm);
  font-size: 16px; font-family: inherit;
  transition: border-color .3s ease;
}
.vs-search-input:focus { outline: none; border-color: var(--vs-amber); }

.vs-search-hot { margin: 16px 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.vs-search-hot .vs-chip { cursor: pointer; }

.vs-search-results { margin-top: 24px; }
.vs-search-empty, .vs-search-count { color: var(--vs-text-dim); margin: 12px 0; }
.vs-search-list { list-style: none; padding: 0; margin: 16px 0; }
.vs-search-list li {
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--vs-line);
}
.vs-search-list a {
  display: block; text-decoration: none; color: inherit;
  transition: color .3s ease;
}
.vs-search-list a:hover { color: var(--vs-amber); }
.vs-search-list strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.vs-search-list span { display: block; color: var(--vs-text-dim); font-size: 14px; line-height: 1.6; }

/* ===== 表单 ===== */
.vs-form {
  display: flex; flex-direction: column; gap: 16px;
}
.vs-form label {
  display: flex; flex-direction: column; gap: 6px; font-weight: 500;
}
.vs-form input, .vs-form textarea, .vs-form select {
  padding: 10px 12px; border: 1px solid var(--vs-line);
  background: var(--vs-card); color: var(--vs-text);
  border-radius: var(--vs-radius-sm); font-size: 14px; font-family: inherit;
  transition: border-color .3s ease;
}
.vs-form input:focus, .vs-form textarea:focus, .vs-form select:focus {
  outline: none; border-color: var(--vs-amber);
}
.vs-form input.is-invalid, .vs-form textarea.is-invalid {
  border-color: #ff6b6b;
}
.vs-form-hint {
  padding: 10px 12px; border-radius: var(--vs-radius-sm); font-size: 14px;
  color: var(--vs-text-dim);
}
.vs-form-hint.is-ok { background: rgba(76, 175, 80, .15); color: #81c784; }
.vs-form-hint.is-error { background: rgba(244, 67, 54, .15); color: #ef5350; }

/* ===== 联系卡片 ===== */
.vs-contact-card {
  padding: 24px; background: var(--vs-card); border-radius: var(--vs-radius);
  border: 1px solid var(--vs-line);
}

/* ===== 声优 Hero ===== */
.vs-actor-hero {
  padding: 40px 0; background: linear-gradient(135deg, rgba(255,152,0,.08) 0%, transparent 100%);
}
.vs-actor-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 768px) {
  .vs-actor-hero-inner { grid-template-columns: 1fr; }
}
.vs-actor-hero-photo {
  margin: 0; border-radius: var(--vs-radius); overflow: hidden;
  box-shadow: var(--vs-shadow-amber);
}
.vs-actor-hero-photo img {
  width: 100%; height: auto; display: block;
}
.vs-actor-hero-info h1 {
  font-size: 48px; margin: 12px 0; color: var(--vs-white);
}
.vs-actor-line-lg {
  font-size: 18px; color: var(--vs-amber); font-weight: 500; margin: 12px 0;
}
.vs-actor-cta {
  display: flex; gap: 12px; margin-top: 20px;
}

/* ===== 信息卡片 ===== */
.vs-info-card {
  padding: 16px; background: var(--vs-card); border-radius: var(--vs-radius-sm);
  border-left: 3px solid var(--vs-amber);
  display: flex; flex-direction: column; gap: 6px;
}
.vs-info-k {
  font-size: 12px; color: var(--vs-text-dim); font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em;
}
.vs-info-v {
  font-size: 16px; color: var(--vs-text); font-weight: 500;
}

/* ===== 报价表 ===== */
.vs-pricing {
  width: 100%; border-collapse: collapse; margin: 20px 0;
}
.vs-pricing th {
  background: var(--vs-card-2); padding: 12px; text-align: left;
  font-weight: 600; border-bottom: 2px solid var(--vs-amber);
}
.vs-pricing td {
  padding: 12px; border-bottom: 1px solid var(--vs-line);
}
.vs-pricing tr:hover { background: var(--vs-card); }

/* ===== 相关链接 ===== */
.vs-related {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0;
}
.vs-related a {
  padding: 8px 12px; background: var(--vs-card); color: var(--vs-amber);
  border-radius: var(--vs-radius-sm); text-decoration: none; font-size: 14px;
  transition: all .3s ease; border: 1px solid var(--vs-line);
}
.vs-related a:hover {
  background: var(--vs-amber); color: var(--vs-bg);
  border-color: var(--vs-amber);
}

/* ===== 提示框 ===== */
.vs-note {
  padding: 16px; background: var(--vs-card); border-left: 3px solid var(--vs-amber);
  border-radius: var(--vs-radius-sm); margin: 20px 0; font-size: 14px;
  color: var(--vs-text-dim);
}
.vs-note strong { color: var(--vs-text); }

/* ===== 法律页面 ===== */
.vs-legal {
  max-width: 800px; margin: 0 auto;
}
.vs-legal h2 {
  margin-top: 28px; margin-bottom: 12px; font-size: 20px;
  color: var(--vs-white); border-bottom: 1px solid var(--vs-line);
  padding-bottom: 8px;
}
.vs-legal h3 {
  margin-top: 20px; margin-bottom: 12px; font-size: 16px;
  color: var(--vs-amber);
}
.vs-legal p {
  margin: 12px 0; line-height: 1.8; color: var(--vs-text);
}
.vs-legal ul, .vs-legal ol {
  margin: 12px 0; padding-left: 24px;
}
.vs-legal li {
  margin: 8px 0; line-height: 1.8;
}

/* ===== 错误页 ===== */
.vs-error-stage {
  padding: 80px 0; text-align: center;
}
.vs-error-wave {
  display: flex; gap: 4px; justify-content: center; margin-bottom: 24px;
  height: 40px; align-items: flex-end;
}
.vs-error-wave span {
  width: 4px; background: var(--vs-amber); border-radius: 2px;
  animation: wave .8s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: 32px; }
}
.vs-error-code {
  font-size: 72px; font-weight: 700; color: var(--vs-amber);
  margin: 12px 0; font-family: monospace;
}
.vs-error-actions {
  display: flex; gap: 12px; justify-content: center; margin-top: 24px;
}
@media (max-width: 480px) {
  .vs-error-actions { flex-direction: column; }
}

/* ===== APP 页面 ===== */
.vs-app-hero { padding: 60px 0; }
.vs-app-shot {
  border-radius: var(--vs-radius); overflow: hidden;
  box-shadow: var(--vs-shadow-amber);
}
.vs-app-badges {
  display: flex; gap: 16px; margin: 24px 0; flex-wrap: wrap;
}
.vs-store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: var(--vs-card); border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm); text-decoration: none; color: var(--vs-text);
  transition: all .3s ease;
}
.vs-store-badge:hover {
  border-color: var(--vs-amber); color: var(--vs-amber);
}
.vs-store-ico {
  width: 24px; height: 24px; background: var(--vs-amber); border-radius: 4px;
}
.vs-store-txt {
  display: flex; flex-direction: column; gap: 2px; font-size: 13px;
}
.vs-store-txt small {
  color: var(--vs-text-dim); font-size: 11px;
}
.vs-store-txt strong {
  font-weight: 600; color: var(--vs-text);
}

.vs-qr {
  margin: 24px 0; display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
.vs-qr-box {
  width: 120px; height: 120px; background: var(--vs-card);
  border: 2px solid var(--vs-line); border-radius: var(--vs-radius-sm);
}

/* ===== 面包屑 ===== */
.vs-breadcrumb {
  display: flex; gap: 8px; align-items: center; font-size: 14px;
  color: var(--vs-text-dim); margin: 20px 0;
}
.vs-breadcrumb a {
  color: var(--vs-amber); text-decoration: none;
  transition: color .3s ease;
}
.vs-breadcrumb a:hover { color: var(--vs-white); }
.vs-breadcrumb span { color: var(--vs-text-dim); }

/* ===== 特性卡片（APP/功能展示） ===== */
.vs-feature {
  padding: 20px; background: var(--vs-card); border-radius: var(--vs-radius-sm);
  border: 1px solid var(--vs-line); text-align: center;
  transition: all .3s ease;
}
.vs-feature:hover {
  border-color: var(--vs-amber); background: var(--vs-card-2);
}
.vs-feature-ico {
  font-size: 32px; margin-bottom: 12px;
}
.vs-feature h3 {
  font-size: 16px; margin: 12px 0; color: var(--vs-white);
}
.vs-feature p {
  font-size: 14px; color: var(--vs-text-dim); line-height: 1.6;
}

/* ===== 响应式微调 ===== */
@media (max-width: 768px) {
  .vs-grid { grid-template-columns: 1fr !important; }
  .vs-actor-hero-info h1 { font-size: 36px; }
  .vs-actor-line-lg { font-size: 16px; }
  .vs-error-code { font-size: 48px; }
}
