:root {
  color-scheme: light;
  --accent: #6b5600;
  --accent-fill: #f5c400;
  --accent-deep: #e0a800;
  --ink: #f4f5f7;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-solid: #ffffff;
  --panel-2: #eceef2;
  --line: #d7dbe3;
  --muted: #3f4550;
  --fg: #141820;
  --header: rgba(255, 255, 255, 0.9);
  --scrim: rgba(244, 245, 247, 0.72);
  --scrim-blur: 28px;
  --chip: rgba(0, 0, 0, 0.72);
  --tag-bg: rgba(255, 255, 255, 0.78);
  --tag-border: rgba(20, 24, 32, 0.12);
}
html.dark {
  color-scheme: dark;
  --accent: #f5c400;
  --accent-fill: #f5c400;
  --accent-deep: #e0a800;
  --ink: #0a0a0a;
  --panel: rgba(20, 20, 20, 0.82);
  --panel-solid: #141414;
  --panel-2: #1c1c1c;
  --line: #2e2e2e;
  --muted: #9a9a9a;
  --fg: #f2f2f2;
  --header: rgba(10, 10, 10, 0.86);
  --scrim: rgba(8, 8, 10, 0.48);
  --scrim-blur: 32px;
  --chip: rgba(0, 0, 0, 0.72);
  --tag-bg: rgba(255, 255, 255, 0.06);
  --tag-border: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--fg);
  background: var(--ink);
  font: 16px/1.6 "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input { font: inherit; }

/* —— 照片墙 —— */
.wall {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  pointer-events: none;
}
.wall-row { flex: 1; min-height: 0; overflow: hidden; }
.wall-track {
  display: flex;
  gap: 6px;
  width: max-content;
  height: 100%;
  animation: wall-left 90s linear infinite;
}
.wall-row-right .wall-track { animation-name: wall-right; animation-duration: 110s; }
.wall-track img {
  width: 28vw;
  height: 100%;
  min-width: 180px;
  max-width: none;
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 8px;
  animation: wall-ken 16s ease-in-out infinite alternate;
}
.wall-track img:nth-child(3n) { animation-duration: 22s; }
.wall-track img:nth-child(4n) { animation-duration: 19s; animation-delay: -6s; }
@keyframes wall-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes wall-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes wall-ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .wall-track, .wall-track img { animation: none; }
}
.scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: var(--scrim);
  -webkit-backdrop-filter: blur(var(--scrim-blur)) saturate(1.15);
  backdrop-filter: blur(var(--scrim-blur)) saturate(1.15);
  pointer-events: none;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .scrim {
    background: linear-gradient(to bottom, rgba(244, 245, 247, 0.88), rgba(244, 245, 247, 0.62));
  }
  html.dark .scrim {
    background: linear-gradient(to bottom, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.62));
  }
}

/* —— 布局 / 顶栏（对齐客户端） —— */
.wrap {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 12px 80px;
}
.top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  margin: 0 -12px 18px;
  padding: 0 12px;
  background: var(--header);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  margin-left: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  min-width: 0;
}
.brand-logo {
  width: 32px;
  height: 32px;
  flex: none;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.top-spacer { flex: 1; min-width: 0; }
.crumbs {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
}
.crumbs a {
  flex: none;
  white-space: nowrap;
}
.crumbs a:hover { color: var(--accent); }
.crumbs-sep { opacity: 0.55; flex: none; }
.crumbs-current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--fg);
  font-weight: 500;
}
.go-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: none;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: #1a1404;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245, 196, 0, 0.32);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.go-main:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 196, 0, 0.38);
}
.go-main svg {
  width: 13px;
  height: 13px;
  flex: none;
}
.theme-dock {
  position: relative;
  flex: none;
}
.theme-fab {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-solid);
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.theme-fab:hover { border-color: var(--accent-fill); color: var(--accent); }
.theme-fab .ico { display: none; width: 18px; height: 18px; }
.theme-fab .ico.is-on { display: block; }
.theme-menu {
  position: absolute;
  top: 42px;
  right: 0;
  min-width: 148px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-solid);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.theme-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
}
.theme-menu button svg { width: 16px; height: 16px; flex: none; }
.theme-menu button[aria-pressed="true"] {
  background: var(--accent-fill);
  color: #1a1404;
  font-weight: 700;
}

/* —— 页脚：18+ / 投诉 —— */
.site-foot {
  margin-top: 40px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.site-foot-age,
.site-foot-legal {
  margin: 0;
}
.site-foot-age {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--fg);
  font-weight: 600;
}
.site-foot-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  padding: 0 6px;
  border-radius: 5px;
  background: var(--accent-fill);
  color: #1a1404;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 1px;
}
.site-foot-link {
  display: inline;
  margin-left: 6px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-foot-link:hover { color: var(--accent-deep); }

/* —— 通用文案 / 区块 —— */
h1 { margin: 0; font-size: 22px; line-height: 1.35; }
h2 { margin: 0; font-size: 18px; }
.muted { color: var(--muted); }
.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { color: var(--accent-deep); }
.empty-state { padding: 48px 0; text-align: center; }
.prose {
  white-space: pre-line;
  margin: 0 0 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.pill-gold { background: var(--accent-fill); color: #1a1404; }
.pill-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1a1404;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-fill);
  color: #1a1404;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 8px 22px rgba(245, 196, 0, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }

.sec { margin-top: 28px; }
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sec-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.sec-title::before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent-fill);
  flex: none;
}
.sec-sub {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

/* —— 首页英雄区 —— */
.home-hero {
  position: relative;
  margin-bottom: 22px;
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(245, 196, 0, 0.16), transparent 55%),
    var(--panel);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset;
}
html.dark .home-hero {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.home-hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.home-hero-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.home-hero-title {
  margin: 0;
  max-width: 18em;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.home-hero-intro {
  margin: 12px 0 0;
  max-width: 42em;
  color: var(--fg);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.82;
  white-space: pre-line;
}
html.dark .home-hero-intro { color: var(--muted); opacity: 1; }

/* —— 分类 Tab（横向滑动，内嵌轨道） —— */
.cats { margin: 8px 0 16px; }
.cat-tabs-wrap {
  margin: 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-2);
}
.cat-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.cat-tab:hover {
  color: var(--fg);
  background: var(--panel-solid);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.cat-tab:active {
  color: #1a1404;
  background: var(--accent-fill);
  box-shadow: none;
}
.cat-tab:focus-visible {
  outline: 2px solid var(--accent-fill);
  outline-offset: 1px;
}
html.dark .cat-tab:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* —— 分类页 —— */
.cat-page { padding-top: 2px; }
.cat-hero {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.cat-hero-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cat-hero-meta {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

/* —— 播放页 —— */
.watch { padding-top: 2px; }
.player-shell {
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.watch-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 3.4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}
.watch-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.meta-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.meta-chip {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  background: var(--panel-solid);
  color: var(--fg);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.meta-chip:hover { color: var(--accent); border-color: var(--accent-fill); }
.watch-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--accent-fill) 35%, var(--line));
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.16), transparent 55%),
    var(--panel);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.watch-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.watch-cta-copy strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.watch-cta-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}
.watch-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: none;
  min-height: 42px;
  padding: 0 16px 0 18px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: #1a1404;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(245, 196, 0, 0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}
.watch-cta-btn svg { width: 18px; height: 18px; }
.watch-cta-btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.hero-still {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin: 0;
  background: #000;
}

/* —— 分页（对齐客户端 NPagination） —— */
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.pager-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  color: var(--fg);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pager-item svg { width: 16px; height: 16px; }
.pager-item:hover:not(.is-disabled):not(.is-active) {
  border-color: var(--accent-fill);
  color: var(--accent);
}
.pager-item.is-active {
  border-color: transparent;
  background: var(--accent-fill);
  color: #1a1500;
  font-weight: 700;
}
.pager-item.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

/* —— 播放器 —— */
.player {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  background: #000;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.player:fullscreen, .player:-webkit-full-screen {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.player:fullscreen video, .player:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}
.player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}
.player-trial-banner {
  pointer-events: none;
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 12px 32px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent);
}
.player-trial-tip {
  border-radius: 6px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}
.player-bigplay {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  color: #1a1500;
  background: var(--accent-fill);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.player-bigplay svg { width: 36px; height: 36px; }
.player [hidden] { display: none !important; }
.player-loading,
.player-end {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
}
.player-end { background: rgba(0, 0, 0, 0.55); }
.spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--accent-fill);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.player-shade {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  opacity: 0;
}
.player-shade.show { opacity: 1; }
.player-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 8px calc(8px + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  pointer-events: none;
}
.player-bar.show { opacity: 1; pointer-events: auto; }
.player.is-touch .player-shade,
.player.is-touch .player-bar { opacity: 1; }
.player.is-touch .player-bar { pointer-events: auto; }
.player-seek { padding: 12px 4px 6px; touch-action: none; cursor: pointer; }
.player-seek-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.player-seek-buffer, .player-seek-played {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
}
.player-seek-buffer { background: rgba(255, 255, 255, 0.35); }
.player-seek-played { background: var(--accent-fill); }
.player-seek-thumb {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.player-row { display: flex; align-items: center; gap: 4px; }
.player-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.player-btn svg { width: 22px; height: 22px; }
.player-btn-end { margin-left: auto; }
.player-vol { width: 84px; accent-color: var(--accent-fill); }
.player-time { color: #fff; font-size: 12px; font-variant-numeric: tabular-nums; }
.player-error {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  margin: 0;
  color: #fff;
}

/* —— 卡片墙 —— */
.badge {
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.badge-vip { background: #fbbf24; color: #111; }
.badge-free { background: #10b981; color: #fff; }
.focus { display: flex; flex-direction: column; gap: 16px; }
.focus-group { display: flex; flex-direction: column; gap: 12px; }
.focus-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.focus-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111;
  color: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.focus-tile:hover {
  border-color: color-mix(in srgb, var(--accent-fill) 55%, var(--line));
  transform: translateY(-1px);
}
.focus-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.focus-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.focus-tile:hover .focus-media img { transform: scale(1.03); }
.focus-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 46%, transparent);
  pointer-events: none;
}
.focus-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 12px;
}
.focus-small .focus-copy { padding: 10px; }
.focus-name { flex-basis: 100%; font-weight: 700; line-height: 1.35; }
.focus-large .focus-name { font-size: 16px; }
.focus-small .focus-name { font-size: 13px; }
.focus-meta { font-size: 10px; color: rgba(255, 255, 255, 0.75); }
.focus-copy .badge-vip,
.focus-copy .badge-free { position: static; }

@media (max-width: 720px) {
  .player-vol { display: none; }
  .wrap { padding-left: 12px; padding-right: 12px; }
  .top {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 8px 12px;
  }
  .brand {
    max-width: calc(100% - 168px);
  }
  .brand-logo { width: 28px; height: 28px; border-radius: 7px; }
  .brand-text {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .top-spacer { display: none; }
  .top-actions {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    margin-left: 0;
    z-index: 2;
    max-width: calc(100% - 96px);
  }
  /* 窄屏不显示顶栏下方面包屑/标题文字 */
  .crumbs { display: none; }
  .go-main {
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
    letter-spacing: 0;
  }
  .go-main svg { width: 11px; height: 11px; }
  .home-hero { padding: 18px 14px 16px; border-radius: 16px; }
  .home-hero-title { font-size: 22px; }
  .cat-tabs-wrap {
    margin: 0;
    border-radius: 12px;
    padding: 3px;
  }
  .cat-tab {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13px;
    border-radius: 9px;
  }
  .cat-hero { flex-direction: column; align-items: flex-start; gap: 4px; }
  .watch-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 12px;
  }
  .watch-cta-btn { width: 100%; }
  .wall-track img { width: 46vw; min-width: 140px; }
}
@media (min-width: 720px) {
  .wrap { padding-left: 16px; padding-right: 16px; }
  .top {
    min-height: 64px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
