:root {
  --pc-bg: #010406;
  --pc-surface: #0d0e0f;
  --pc-surface-soft: rgba(255, 255, 255, 0.05);
  --pc-text: rgba(255, 255, 255, 0.9);
  --pc-text-soft: rgba(255, 255, 255, 0.55);
  --pc-accent: #e9b54b;
  --pc-content-width: 1200px;
}

body.pc-content-page {
  min-height: 100vh;
  background: var(--pc-bg);
  color: var(--pc-text);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  --color-primary-500: var(--pc-accent);
  --color-primary-alpha-10: rgba(233, 181, 75, 0.12);
  --color-black-alpha-5: rgba(255, 255, 255, 0.05);
  --color-black-alpha-10: rgba(255, 255, 255, 0.1);
  --color-black-alpha-20: rgba(255, 255, 255, 0.2);
  --text-primary: var(--pc-text);
  --text-secondary: var(--pc-text-soft);
  --surface-input: var(--pc-surface);
  --surface-foreground: var(--pc-surface);
}

.pc-content-page > .mobile-tabbar { display: none; }

.pc-content-main {
  display: flex;
  width: min(var(--pc-content-width), calc(100% - 48px));
  min-height: 889px;
  margin: 0 auto;
  padding: 32px 0 64px;
  flex-direction: column;
  gap: 24px;
}

.pc-filter-stack { display: flex; flex-direction: column; gap: 16px; }
.pc-filter-row {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pc-filter-row::-webkit-scrollbar { display: none; }
.pc-filter-row a {
  display: inline-flex;
  min-width: 80px;
  height: 40px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--pc-text-soft);
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}
.pc-filter-row--compact { min-height: 30px; gap: 12px; }
.pc-filter-row--compact a { height: 30px; padding: 0 12px; font-size: 14px; }
.pc-filter-row a:hover { color: var(--pc-text); background: var(--pc-surface-soft); }
.pc-filter-row a.is-active { color: #111; background: var(--pc-accent); }

.pc-category-strip {
  position: relative;
  min-width: 0;
}
.pc-category-strip > .pc-filter-row {
  width: 100%;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 48px;
  -webkit-overflow-scrolling: touch;
}
.pc-category-strip > .pc-filter-row a { scroll-snap-align: start; }

@media (min-width: 769px) {
  .pc-category-strip::before,
  .pc-category-strip::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 76px;
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .pc-category-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--pc-bg) 10%, rgba(1, 4, 6, 0.88) 36%, rgba(1, 4, 6, 0));
  }
  .pc-category-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--pc-bg) 10%, rgba(1, 4, 6, 0.88) 36%, rgba(1, 4, 6, 0));
  }
  .pc-category-strip.is-scrollable:not(.is-at-start)::before,
  .pc-category-strip.is-scrollable:not(.is-at-end)::after { opacity: 1; }
  .pc-category-strip.is-scrollable > .pc-filter-row {
    cursor: grab;
    scroll-snap-type: x proximity;
  }
  .pc-category-strip.is-dragging > .pc-filter-row {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
  }
  .pc-filter-row:not(.pc-filter-row--compact) a {
    border-radius: 999px;
    background: var(--pc-surface);
  }
  .pc-filter-row a { transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease; }
  .pc-filter-row a:focus-visible {
    color: var(--pc-accent);
    box-shadow: inset 0 0 0 1px var(--pc-accent);
  }
  .pc-filter-row a.is-active { color: #111; background: var(--pc-accent); }
}

@media (min-width: 769px) and (hover: hover) {
  .pc-filter-row a:not(.is-active):hover {
    color: var(--pc-accent);
    background: var(--pc-surface);
    box-shadow: inset 0 0 0 1px var(--pc-accent);
  }
}

/* Desktop long-video sort row, grounded from Figma 45568:22741. */
@media (min-width: 769px) {
  .pc-long-list-page .pc-filter-row--compact {
    width: 464px;
    max-width: 100%;
    min-height: 30px;
    gap: 10px;
  }
  .pc-long-list-page .pc-filter-row--compact a {
    min-width: 0;
    height: 30px;
    padding: 4px 20px;
    border-radius: 6px;
    background: transparent;
    box-shadow: none;
    color: var(--pc-text-soft);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
  .pc-long-list-page .pc-filter-row--compact a.is-active {
    background: transparent;
    color: var(--pc-text);
    font-weight: 500;
  }
  .pc-long-list-page .pc-filter-row--compact a:not(.is-active):hover {
    background: transparent;
    box-shadow: none;
    color: var(--pc-text);
  }
  .pc-long-list-page .pc-filter-row--compact a:focus-visible {
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--pc-accent);
  }
}

.pc-long-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 16px; }
.pc-long-grid-ad[hidden] { display: none; }

.pc-content-empty { display: flex; min-height: 280px; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--pc-text-soft); }
.pc-content-empty strong { color: var(--pc-text); font-size: 18px; }
.pc-content-empty a { color: var(--pc-accent); }
.pc-short-drama-page .pc-short-drama-grid > .pc-content-empty { grid-column: 1 / -1; width: 100%; }

@media (min-width: 769px) {
  /* Keep short final pages aligned with the first page's two-row card grid. */
  .pc-long-list-page .pc-long-grid { min-height: calc(28.125% + 114.5px); align-content: start; }
}

/* PC short-video canvas, grounded from Figma 45744:217626. */
.pc-short-video-main { min-height: 969px; padding: 32px 0 50px; }
.pc-short-video-page .site-footer { margin-top: 0; }
.pc-short-video-stage { position: relative; width: 500px; height: 887px; margin: 0 auto; }
.pc-short-video-page .mobile-douyin-shell { position: relative; width: 500px; height: 887px; overflow: hidden; border-radius: 12px; background: #08090b; }
.pc-short-video-page .mobile-douyin-media,
.pc-short-video-page .mobile-douyin-media__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pc-short-video-page .mobile-douyin-media__shade { position: absolute; right: 0; left: 0; pointer-events: none; }
.pc-short-video-page .mobile-douyin-media__shade--top { top: 0; height: 160px; background: linear-gradient(#000, transparent); }
.pc-short-video-page .mobile-douyin-media__shade--bottom { bottom: 0; height: 360px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.88)); }
.pc-short-video-page .mobile-douyin-player-toggle { position: absolute; top: 50%; left: 50%; z-index: 4; display: grid; width: 64px; height: 64px; place-items: center; border: 0; border-radius: 50%; background: rgba(0, 0, 0, 0.35); transform: translate(-50%, -50%); cursor: pointer; }
.pc-short-video-page .mobile-douyin-player-toggle.is-playing { opacity: 0; pointer-events: none; }
.pc-short-video-page .mobile-douyin-shell.is-player-loading .mobile-douyin-player-toggle { visibility: hidden; opacity: 0; pointer-events: none; }
.pc-short-video-page .mobile-douyin-player-toggle img { width: 30px; height: 30px; }
.pc-short-video-page .mobile-douyin-copy { position: absolute; right: 86px; bottom: 54px; left: 24px; z-index: 3; display: flex; flex-direction: column; gap: 12px; }
.pc-short-video-page .mobile-douyin-copy h1 { margin: 0; color: #fff; font-size: 20px; line-height: 28px; }
.pc-short-video-page .mobile-douyin-copy__description { margin: 0; color: var(--pc-text-soft); font-size: 16px; line-height: 22px; }
.pc-short-video-page .mobile-douyin-copy__description span { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.pc-short-video-page .mobile-douyin-copy__description.is-expanded span { display: inline; }
.pc-short-video-page .mobile-douyin-copy__description button { border: 0; background: transparent; color: #fff; cursor: pointer; }
.pc-short-video-page .mobile-douyin-copy__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-short-video-page .mobile-douyin-copy__tag { padding: 3px 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.1); color: var(--pc-text-soft); font-size: 12px; }
.pc-short-video-page .mobile-douyin-actions { position: absolute; right: 20px; bottom: 72px; z-index: 4; display: flex; flex-direction: column; gap: 20px; }
.pc-short-video-page .mobile-douyin-action { display: flex; min-width: 42px; padding: 0; border: 0; align-items: center; flex-direction: column; gap: 4px; background: transparent; color: #fff; cursor: pointer; font-size: 12px; }
.pc-short-video-page .mobile-douyin-action .mobile-like-motion-graphic { width: 38px; height: 38px; }
.pc-short-video-page .mobile-douyin-action .mobile-like-motion-frame { width: 38px; height: 38px; }
.pc-short-video-page .mobile-douyin-progress { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 4; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; color: #fff; font-size: 12px; }
.pc-short-video-page .mobile-douyin-progress input { width: 100%; accent-color: var(--pc-accent); }
.pc-short-video-page .mobile-douyin-player-loading { position: absolute; inset: 0; z-index: 5; display: flex; align-items: center; justify-content: center; gap: 10px; background: rgba(1, 4, 6, 0.4); color: #fff; }
.pc-short-video-page .mobile-douyin-player-loading[hidden] { display: none; }
.pc-short-video-page .mobile-douyin-player-loading__spinner { width: 24px; height: 24px; border: 2px solid rgba(255,255,255,.25); border-top-color: #fff; border-radius: 50%; animation: pc-spin .8s linear infinite; }
.pc-short-video-page .mobile-douyin-feed-status { position: absolute; top: 50%; left: 50%; z-index: 6; margin: 0; padding: 8px 14px; border-radius: 8px; background: rgba(0,0,0,.66); transform: translate(-50%,-50%); color: #fff; }
.pc-short-video-switch { position: absolute; top: 50%; left: calc(100% + 16px); display: flex; flex-direction: column; gap: 32px; transform: translateY(-50%); }
.pc-short-video-switch button { position: relative; display: grid; width: 36px; height: 36px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }
.pc-short-video-switch button::before { content: ""; width: 9px; height: 9px; border-right: 3px solid currentColor; border-bottom: 3px solid currentColor; }
.pc-short-video-switch button[data-pc-short-previous]::before { transform: rotate(225deg); }
.pc-short-video-switch button[data-pc-short-next]::before { transform: rotate(45deg); }
.pc-short-video-switch button:hover { background: var(--pc-accent); color: #111; }
@keyframes pc-spin { to { transform: rotate(360deg); } }

/* Both lists keep the same pagination-to-footer gap, including short pages. */
@media (min-width: 769px) {
  body.pc-long-list-page,
  body.pc-short-drama-page { display: flex; flex-direction: column; }
  .pc-long-list-page .pc-content-main,
  .pc-short-drama-page .pc-content-main { min-height: 0; flex: 1 0 auto; }
  .pc-long-list-page .pc-pagination,
  .pc-short-drama-page .pc-pagination { margin-top: auto; flex-shrink: 0; }
  .pc-long-list-page .site-footer,
  .pc-short-drama-page .site-footer { margin-top: 0; }
}

/* PC short-drama detail, grounded from Figma 45762:263834. */
.pc-drama-detail-page .pc-drama-detail { min-height: 1588px; }
.pc-drama-detail { display: flex; width: min(var(--pc-content-width), calc(100% - 48px)); margin: 0 auto; padding: 32px 0 72px; flex-direction: column; gap: 24px; }
.pc-detail-breadcrumb { display: flex; height: 40px; align-items: center; gap: 14px; color: var(--pc-text-soft); }
.pc-detail-breadcrumb a { color: var(--pc-text); }
.pc-detail-breadcrumb strong { color: var(--pc-text-soft); font-weight: 400; }
.pc-drama-detail__heading { display: flex; margin-top: 8px; align-items: center; gap: 24px; }
.pc-drama-detail__heading h1 { margin: 0; font-size: 24px; line-height: 32px; }
.pc-drama-detail__heading p { display: flex; margin: 0; gap: 8px; color: var(--pc-text-soft); font-size: 16px; }
.pc-drama-detail__heading i { font-style: normal; }
.pc-drama-player { position: relative; width: 100%; height: 800px; overflow: hidden; border-radius: 16px 16px 0 0; background: #0f0f15; }
.pc-drama-player__video,
.pc-drama-player__poster { position: absolute; inset: 0 0 auto; display: block; width: 100%; height: calc(100% - 64px); object-fit: contain; background: #0f0f15; }
.pc-drama-player__poster { pointer-events: none; }
.pc-drama-player__poster.is-hidden { opacity: 0; }
.pc-drama-preroll { position: absolute; inset: 0; z-index: 8; overflow: hidden; background: #0f0f15; }
.pc-drama-preroll[hidden] { display: none; }
.pc-drama-preroll__media,
.pc-drama-preroll__media img { display: block; width: 100%; height: 100%; }
.pc-drama-preroll__media img { object-fit: cover; }
.pc-drama-preroll__controls { position: absolute; top: 16px; right: 16px; display: flex; height: 32px; align-items: center; gap: 12px; }
.pc-drama-preroll__controls span,
.pc-drama-preroll__controls button { display: inline-flex; height: 32px; padding: 0 12px; align-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(0,0,0,.62); color: #fff; font-size: 13px; }
.pc-drama-preroll__controls b { margin: 0 2px; color: var(--pc-accent); font-weight: 500; }
.pc-drama-preroll__controls button { cursor: pointer; }
.pc-drama-preroll__controls button:hover { border-color: var(--pc-accent); color: var(--pc-accent); }
.pc-drama-toolbar { display: flex; height: 64px; margin-top: -24px; padding: 0 16px; align-items: center; gap: 24px; border-radius: 0 0 12px 12px; background: var(--pc-surface); color: var(--pc-text-soft); }
.pc-drama-toolbar button { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: transparent; color: var(--pc-text-soft); cursor: pointer; }
.pc-drama-toolbar button.is-active { color: var(--pc-accent); }
.pc-drama-toolbar .mobile-like-motion-graphic { width: 30px; height: 30px; flex-basis: 30px; }
.pc-drama-toolbar .mobile-like-motion-frame { width: 40px; height: 40px; }
.pc-drama-tags { display: flex; gap: 8px; }
.pc-drama-tags span { padding: 4px 8px; border-radius: 4px; background: var(--pc-surface-soft); color: var(--pc-text-soft); font-size: 14px; }
.pc-drama-description { margin: 0; color: var(--pc-text-soft); font-size: 16px; line-height: 22px; }
.pc-drama-episodes { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px 32px; }
.pc-drama-episodes h2 { margin: 0; font-size: 20px; line-height: 28px; }
.pc-drama-episode-ranges { display: flex; gap: 12px; }
.pc-drama-episode-ranges button { height: 28px; padding: 0 12px; border: 0; border-radius: 5px; background: var(--pc-surface-soft); color: var(--pc-text-soft); cursor: pointer; }
.pc-drama-episode-ranges button.is-active { background: var(--pc-accent); color: #111; }
.pc-drama-episode-grid { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 16px 12px; }
.pc-drama-episode { position: relative; display: flex; height: 40px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 4px; background: var(--pc-surface-soft); color: var(--pc-text); }
.pc-drama-episode[hidden] { display: none; }
.pc-drama-episode:hover { color: #111; background: var(--pc-accent); }
.pc-drama-episode.is-current { border-color: var(--pc-accent); background: transparent; color: var(--pc-accent); }
.pc-drama-episode small { display: none; }
.pc-drama-episode.is-vip small { position: absolute; top: 3px; right: 3px; display: block; color: #e9b54b; font-size: 9px; font-weight: 600; line-height: 11px; }
.pc-drama-episode.is-vip:hover small { color: #111; }

.pc-drama-detail-page .short-drama-vip-dialog,
.pc-long-detail-page .video-unlock-dialog { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; }
.pc-drama-detail-page .short-drama-vip-dialog[hidden],
.pc-long-detail-page .video-unlock-dialog[hidden],
.pc-long-detail-page .video-unlock-dialog__condition[hidden] { display: none !important; }
.pc-drama-detail-page .short-drama-vip-dialog__backdrop,
.pc-long-detail-page .video-unlock-dialog__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.72); }
.pc-drama-detail-page .short-drama-vip-dialog__stack,
.pc-long-detail-page .video-unlock-dialog__stack { position: relative; display: flex; align-items: center; flex-direction: column; gap: 24px; }
.pc-drama-detail-page .short-drama-vip-dialog__panel,
.pc-long-detail-page .video-unlock-dialog__panel { width: 400px; overflow: hidden; border-radius: 12px; background: var(--pc-surface); color: var(--pc-text); }
.pc-drama-detail-page .short-drama-vip-dialog__content,
.pc-long-detail-page .video-unlock-dialog__content { padding: 32px 24px 20px; }
.pc-drama-detail-page .short-drama-vip-dialog__content h2,
.pc-long-detail-page .video-unlock-dialog__title { margin: 0 0 18px; font-size: 20px; line-height: 28px; }
.pc-drama-detail-page .short-drama-vip-dialog__content p,
.pc-long-detail-page .video-unlock-dialog__condition p { margin: 8px 0; color: var(--pc-text-soft); font-size: 16px; line-height: 22px; }
.pc-drama-detail-page .short-drama-vip-dialog__footer,
.pc-long-detail-page .video-unlock-dialog__footer { display: flex; height: 92px; padding: 24px; gap: 12px; }
.pc-drama-detail-page .short-drama-vip-dialog__footer a,
.pc-drama-detail-page .short-drama-vip-dialog__button,
.pc-long-detail-page .video-unlock-dialog__button { display: inline-flex; height: 44px; flex: 1; align-items: center; justify-content: center; border: 0; border-radius: 8px; background: var(--pc-accent); color: #111; cursor: pointer; }
.pc-drama-detail-page .short-drama-vip-dialog__button--secondary { background: rgba(255,255,255,.1); color: var(--pc-text); }
.pc-drama-detail-page .short-drama-vip-dialog__button--secondary:disabled { color: var(--pc-text-soft); cursor: not-allowed; opacity: .55; }
.pc-drama-detail-page .short-drama-unlock-dialog__condition[hidden] { display: none; }
.pc-drama-detail-page .short-drama-unlock-dialog__condition { display: flex; flex-direction: column; gap: 10px; }
.pc-drama-detail-page .short-drama-unlock-dialog__condition strong { color: var(--pc-accent); }
.pc-long-detail-page .video-unlock-dialog__button--secondary { background: rgba(255,255,255,.1); color: var(--pc-text); }
.pc-drama-detail-page .short-drama-vip-dialog__close,
.pc-long-detail-page .video-unlock-dialog__close { width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.pc-drama-detail-page .short-drama-vip-dialog__close img,
.pc-long-detail-page .video-unlock-dialog__close img { width: 36px; height: 36px; }

/* Long-video unlock variants, grounded from Figma 45734:217083 / 45744:218082. */
.pc-long-detail-page .video-unlock-dialog__panel:focus { outline: none; }
.pc-long-detail-page .video-unlock-dialog__content {
  box-sizing: border-box;
  height: 174px;
  padding: 32px 24px 0;
  text-align: center;
}
.pc-long-detail-page .video-unlock-dialog[data-video-unlock-active-condition="coin"] .video-unlock-dialog__content { height: 208px; }
.pc-long-detail-page .video-unlock-dialog__title { margin: 0 0 12px; }
.pc-long-detail-page .video-unlock-dialog__divider { height: 1px; margin-bottom: 11px; background: rgba(255,255,255,.08); }
.pc-long-detail-page .video-unlock-dialog__condition { display: flex; flex-direction: column; gap: 12px; }
.pc-long-detail-page .video-unlock-dialog__condition p { margin: 0; }
.pc-long-detail-page .video-unlock-dialog__balance { text-align: center; }

@media (min-width: 769px) {
  body.pc-content-page { min-width: 1024px; }
  .pc-long-detail-page .video-detail { width: min(var(--pc-content-width), calc(100% - 48px)); min-height: 1588px; max-width: none; padding: 32px 0 72px; flex-direction: column; gap: 32px; }
  .pc-long-detail-page .video-detail__main { width: 100%; max-width: none; gap: 24px; }
  .pc-long-detail-page .breadcrumb { height: 40px; display: flex; margin-bottom: 8px; align-items: center; gap: 10px; color: var(--pc-text-soft); font-size: 16px; }
  .pc-long-detail-page .breadcrumb__back { width: 24px; height: 24px; flex: 0 0 24px; background: url("/static/images/video-detail-mobile-back.svg") center / 24px 24px no-repeat; }
  .pc-long-detail-page .video-detail__app-rows,
  .pc-long-detail-page .video-detail__notice,
  .pc-long-detail-page .detail-banners,
  .pc-long-detail-page .video-detail__divider,
  .pc-long-detail-page .comment-section,
  .pc-long-detail-page .video-detail__title,
  .pc-long-detail-page .video-detail__tags,
  .pc-long-detail-page .video-detail__meta,
  .pc-long-detail-page .video-detail__actions { display: none; }
  .pc-long-detail-page .video-detail-mobile-tabs { display: none; }
  .pc-long-detail-page .video-detail-mobile-info { display: flex; flex-direction: column; gap: 24px; }
  .pc-long-detail-page .video-detail-mobile-info__title { display: none; }
  .pc-long-detail-page .video-detail-mobile-info__stats { order: 1; display: flex; height: 64px; margin-top: -24px; padding: 0 16px; align-items: center; border-radius: 0 0 12px 12px; background: var(--pc-surface); color: var(--pc-text-soft); font-size: 14px; }
  .pc-long-detail-page .video-detail-mobile-info__views { display: none; }
  .pc-long-detail-page .video-detail-mobile-info__actions { display: flex; width: 100%; align-items: center; gap: 24px; }
  .pc-long-detail-page .video-detail-mobile-info__ticket { margin-left: auto; }
  .pc-long-detail-page .video-detail-mobile-info__ticket strong { color: var(--pc-accent); font-weight: 400; }
  .pc-long-detail-page .video-detail-mobile-info__stat { display: inline-flex; padding: 0; border: 0; align-items: center; gap: 8px; background: transparent; color: inherit; cursor: pointer; }
  .pc-long-detail-page .video-detail-mobile-info__like-icon,
  .pc-long-detail-page .video-detail-mobile-info__like-idle,
  .pc-long-detail-page .video-detail-mobile-info__like .mobile-like-motion-graphic { width: 28px; height: 28px; flex-basis: 28px; }
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame { width: 40px; height: 40px; }
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame[data-mobile-like-frame="1"],
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame[data-mobile-like-frame="2"] { height: 44px; }
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame[data-mobile-like-frame="0"],
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame[data-mobile-like-frame="1"],
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame[data-mobile-like-frame="2"],
  .pc-long-detail-page .video-detail-mobile-info__like[data-mobile-like-motion] .mobile-like-motion-frame[data-mobile-like-frame="3"] { transform: translate(-50%, calc(-50% + 10px)); }
  .pc-long-detail-page .video-detail-mobile-info__like-idle { filter: brightness(0) invert(1); opacity: 0.55; }
  .pc-long-detail-page .video-detail-mobile-info__like.is-like-animating .video-detail-mobile-info__like-idle,
  .pc-long-detail-page .video-detail-mobile-info__like[aria-pressed="true"] .video-detail-mobile-info__like-idle { opacity: 0; }
  .pc-long-detail-page .video-detail-mobile-info__favorite .favorite-motion { --favorite-motion-icon-size: 28px; --favorite-motion-inactive-filter: grayscale(1) opacity(0.55); }
  .pc-long-detail-page .video-detail-mobile-info__tags { order: 2; display: flex; gap: 12px; }
  .pc-long-detail-page .video-detail-mobile-info__tag { padding: 4px 8px; border-radius: 4px; background: var(--pc-surface-soft); color: var(--pc-text-soft); font-size: 14px; line-height: 22px; }
  .pc-long-detail-page .video-player { height: 736px; border-radius: 12px 12px 0 0; }
  .pc-long-detail-page .video-player__mobile-preroll { position: absolute; inset: 0; z-index: 30; display: block; }
  .pc-long-detail-page .video-player__mobile-preroll-viewport,
  .pc-long-detail-page .video-player__mobile-preroll-track,
  .pc-long-detail-page .video-player__mobile-preroll-slide,
  .pc-long-detail-page .video-player__mobile-preroll-link,
  .pc-long-detail-page .video-player__mobile-preroll-image { width: 100%; height: 100%; display: block; object-fit: cover; }
  .pc-long-detail-page .video-player__mobile-ad { position: absolute; right: 16px; top: 16px; z-index: 34; display: flex; height: 32px; padding: 0 12px; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(0,0,0,.58); color: #fff; cursor: pointer; }
  .pc-long-detail-page .video-player__mobile-ad-divider { width: 1px; height: 16px; background: rgba(255,255,255,.3); }
  .pc-long-detail-page .video-player__mobile-preroll-pagination { position: absolute; bottom: 18px; left: 50%; z-index: 34; display: flex; gap: 6px; transform: translateX(-50%); }
  .pc-long-detail-page .video-player__mobile-preroll-dot { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.4); }
  .pc-long-detail-page .video-player__mobile-preroll-dot.is-active { width: 16px; border-radius: 8px; background: var(--pc-accent); }
  .pc-long-detail-page .video-detail__title { font-size: 24px; line-height: 32px; }
  .pc-long-detail-page .video-detail__tags-label { font-size: 16px; }
  .pc-long-detail-page .video-detail__tag { background: var(--pc-surface-soft); color: var(--pc-text-soft); }
  .pc-long-detail-page .video-detail__summary { padding: 0; border-radius: 0; background: transparent; }
  .pc-long-detail-page .detail-panel { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .pc-long-detail-page .detail-panel__divider,
  .pc-long-detail-page .detail-panel__mark { display: none; }
  .pc-long-detail-page .detail-panel__title { font-size: 20px; color: var(--pc-text); }
  .pc-long-detail-page .detail-panel__text { color: var(--pc-text-soft); font-size: 16px; line-height: 24px; }
  .pc-long-detail-page .video-detail__actions { border-color: rgba(255,255,255,.1); }
  .pc-long-detail-page .video-detail__action,
  .pc-long-detail-page .video-detail__download { color: var(--pc-text-soft); }
  .pc-long-detail-page .video-detail__notice { background: var(--pc-surface); border-color: rgba(255,255,255,.08); }
  .pc-long-detail-page .video-detail__aside { width: 100%; gap: 24px; }
  .pc-long-detail-page .video-detail__aside-mark { display: none; }
  .pc-long-detail-page .video-detail__aside-title { margin: 0; font-size: 20px; font-weight: 500; line-height: 28px; color: var(--pc-text); }
  .pc-long-detail-page .video-detail__aside-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 16px; }
}

@media (max-width: 1280px) and (min-width: 769px) {
  .pc-content-main,
  .pc-drama-detail,
  .pc-long-detail-page .video-detail { width: calc(100% - 48px); }
}

@media (max-width: 768px) {
  body.pc-content-page { min-width: 320px; }
  .pc-content-page .site-header { height: 60px; }
  .pc-content-page .site-header__inner { width: 100%; padding-right: 16px; padding-left: 16px; }
  .pc-content-page > .mobile-tabbar { display: flex; }
  .pc-long-list-page > .site-footer,
  .pc-short-video-page > .site-footer,
  .pc-short-drama-page > .site-footer { display: none; }

  .pc-content-main { width: 100%; min-height: calc(100svh - 60px); padding: 16px 16px 84px; gap: 16px; }
  .pc-filter-stack { gap: 10px; }
  .pc-filter-row { min-height: 34px; gap: 8px; }
  .pc-filter-row a { min-width: auto; height: 34px; padding: 0 12px; border-radius: 6px; font-size: 14px; line-height: 20px; }
  .pc-filter-row--compact { min-height: 30px; }
  .pc-filter-row--compact a { height: 30px; padding: 0 10px; }
  .pc-long-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 10px; }
  .pc-drama-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 10px; }
  .pc-drama-grid .mobile-short-drama-card__title { min-height: 40px; font-size: 14px; line-height: 20px; }
  .pc-short-video-main { width: 100%; min-height: calc(100svh - 60px); padding: 0 0 60px; }
  .pc-short-video-stage { width: 100%; height: calc(100svh - 60px); }
  .pc-short-video-page .mobile-douyin-shell { width: 100%; height: 100%; border-radius: 0; }
  .pc-short-video-switch { display: none; }
  .pc-short-video-page .mobile-douyin-copy { right: 74px; bottom: 52px; left: 16px; }
  .pc-short-video-page .mobile-douyin-copy h1 { font-size: 17px; line-height: 24px; }
  .pc-short-video-page .mobile-douyin-copy__description { font-size: 14px; line-height: 20px; }
  .pc-short-video-page .mobile-douyin-actions { right: 12px; bottom: 68px; }
  .pc-short-video-page .mobile-douyin-progress { right: 12px; bottom: 16px; left: 12px; }

  .pc-drama-detail { width: 100%; min-height: calc(100svh - 60px); padding: 16px 16px 80px; gap: 16px; }
  .pc-drama-detail-page .pc-drama-detail { min-height: calc(100svh - 60px); }
  .pc-detail-breadcrumb { height: 28px; font-size: 14px; }
  .pc-drama-detail__heading { margin-top: 0; align-items: flex-start; flex-direction: column; gap: 6px; }
  .pc-drama-detail__heading h1 { font-size: 20px; line-height: 28px; }
  .pc-drama-detail__heading p { flex-wrap: wrap; font-size: 13px; }
  .pc-drama-player { height: auto; aspect-ratio: 9 / 16; max-height: 70svh; border-radius: 10px 10px 0 0; }
  .pc-drama-toolbar { height: 56px; margin-top: -16px; padding: 0 12px; gap: 16px; }
  .pc-drama-tags { overflow-x: auto; }
  .pc-drama-description { font-size: 14px; line-height: 20px; }
  .pc-drama-episodes { grid-template-columns: 1fr; gap: 12px; }
  .pc-drama-episode-ranges { overflow-x: auto; }
  .pc-drama-episode-grid { grid-column: 1; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px 8px; }
  .pc-drama-detail-page .short-drama-vip-dialog__panel { width: min(360px, calc(100vw - 32px)); }
}
