.collector-catalog-panel[hidden] { display: none !important; }
body.collector-catalog-mode #cardsScroll,
body.collector-catalog-mode .lottery-inline-panel { display: none !important; }
body.collector-catalog-mode .page-shell > .site-footer { display: none !important; }

.collector-catalog-panel {
  max-width: 100%;
  color: #17243a;
  font-family: system-ui, -apple-system, "PingFang SC", sans-serif;
}

.collector-catalog-shell {
  overflow: hidden;
  border: 1px solid #dbe5f2;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 45px rgba(44, 72, 120, .08);
}

.collector-refresh-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 34%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ng-accent, #2f6bff), var(--ng-accent-2, #62b7ff), transparent);
  pointer-events: none;
  animation: collector-refresh-slide .8s ease-in-out infinite alternate;
}

.collector-refresh-notice {
  margin: 8px 0;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, #e5484d 28%, transparent);
  border-radius: 10px;
  color: #b4232a;
  background: color-mix(in srgb, #fff 88%, #ffe9ea);
  font-size: 12px;
  text-align: center;
}

.collector-catalog-panel.is-refreshing .collector-results {
  pointer-events: none;
}

@keyframes collector-refresh-slide {
  from { transform: translateX(-12%); }
  to { transform: translateX(206%); }
}

.collector-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid #edf1f7;
}
.collector-category-filters {
  position: relative;
  display: block;
  align-items: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}
.collector-category-list {
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  padding: 9px 10px 10px;
  scroll-padding-inline: 10px;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}
.collector-category-list::-webkit-scrollbar { display: none; }
.collector-category-list .collector-category-tab {
  --category-tint: #2f6bff;
  --category-soft: #edf3ff;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: max-content;
  min-height: 42px;
  padding: 6px 11px 6px 7px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #667085;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.collector-category-list .collector-category-tab:nth-child(5n + 2) { --category-tint: #7c5ce7; --category-soft: #f1edff; }
.collector-category-list .collector-category-tab:nth-child(5n + 3) { --category-tint: #1677c8; --category-soft: #eaf6ff; }
.collector-category-list .collector-category-tab:nth-child(5n + 4) { --category-tint: #0c9b74; --category-soft: #e8f8f2; }
.collector-category-list .collector-category-tab:nth-child(5n + 5) { --category-tint: #e48a18; --category-soft: #fff5e5; }
.collector-category-list .collector-category-tab:hover {
  border-color: color-mix(in srgb, var(--category-tint) 18%, transparent);
  color: var(--category-tint);
  background: var(--category-soft);
  transform: translateY(-1px);
}
.collector-category-list .collector-category-tab.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(125deg, var(--category-tint), color-mix(in srgb, var(--category-tint) 68%, #78a9ff));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--category-tint) 24%, transparent);
}
html[data-theme="dark"] .collector-category-list .collector-category-tab { color: #9cafc8; }
html[data-theme="dark"] .collector-category-list .collector-category-tab:hover { color: #fff; background: #182b48; }
.collector-toolbar input,
.collector-toolbar select {
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  padding: 9px 12px;
  border: 1px solid #d3deed;
  border-radius: 12px;
  outline: 0;
  background: #fbfdff;
  color: #26364f;
  font: inherit;
}
.collector-toolbar input:focus,
.collector-toolbar select:focus { border-color: #6795f7; box-shadow: 0 0 0 3px rgba(37, 99, 235, .1); }
.collector-toolbar button,
.collector-age-actions button,
.collector-empty button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #5b91ff);
  box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
  font-weight: 700;
  cursor: pointer;
}

.collector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  padding: 22px 24px;
}
.collector-card {
  overflow: hidden;
  border: 1px solid #e0e8f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(35, 59, 95, .07);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.collector-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(35, 59, 95, .13); }
.collector-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, #e7eef9, #f5f8fd);
}
.collector-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.collector-cover.is-empty::after {
  content: "南宫影视";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #8ca0bc;
  font-weight: 800;
  letter-spacing: 2px;
}
.collector-remarks {
  position: absolute;
  right: 7px;
  bottom: 7px;
  max-width: calc(100% - 14px);
  overflow: hidden;
  padding: 4px 7px;
  border-radius: 7px;
  color: #fff;
  background: rgba(15, 23, 42, .72);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collector-card-copy { padding: 11px 12px 13px; }
.collector-card-copy strong {
  display: -webkit-box;
  min-height: 2.8em;
  overflow: hidden;
  color: #17243a;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.collector-card-copy span { display: block; margin-top: 6px; overflow: hidden; color: #77849a; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }

.collector-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 24px 22px;
}
.collector-pagination button {
  min-width: 84px;
  min-height: 38px;
  border: 1px solid #d0dced;
  border-radius: 11px;
  background: #fff;
  color: #31527e;
  font-weight: 700;
  cursor: pointer;
}
.collector-pagination button:disabled { opacity: .42; cursor: default; }
.collector-pagination span { color: #6b7890; font-size: 13px; }

.collector-empty,
.collector-age-gate {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 220px;
  padding: 32px 24px;
  box-sizing: border-box;
  text-align: center;
}
.collector-age-gate {
  min-height: 190px;
  gap: 8px;
  padding: 24px 20px;
}
.collector-empty-icon,
.collector-age-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  color: #2563eb;
  background: #eaf1ff;
  font-size: 26px;
  font-weight: 900;
}
.collector-empty h3,
.collector-age-gate h3 { margin: 7px 0 0; font-size: 20px; }
.collector-empty p,
.collector-age-gate p { max-width: 560px; margin: 0; color: #6b7890; font-size: 13px; line-height: 1.8; }
.collector-age-actions { display: flex; gap: 10px; margin-top: 7px; }
.collector-age-actions .is-quiet { border: 1px solid #d6e0ee; color: #596a83; background: #fff; box-shadow: none; }

.collector-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 9, 20, .76);
  backdrop-filter: blur(12px) saturate(.82);
  animation: collector-overlay-in .18s ease-out both;
}
.collector-detail-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, .9fr);
  width: min(1160px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid var(--ng-line, rgba(176, 196, 229, .7));
  border-radius: var(--ng-radius, 24px);
  color: var(--ng-ink, #17243a);
  background: #07101e;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .48), 0 0 0 1px rgba(255, 255, 255, .08) inset;
  animation: collector-dialog-fade .18s ease-out both;
}
html[data-ui-theme] body .collector-detail-dialog {
  animation: collector-dialog-fade .18s ease-out both !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}
.collector-detail-dialog::before { z-index: 0 !important; }
.collector-detail-close {
  position: relative;
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: #fff;
  background: rgba(9, 18, 32, .72);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.collector-detail-close::before, .collector-detail-close::after { content: ''; position: absolute; top: 50%; left: 50%; width: 15px; height: 2px; border-radius: 999px; background: currentColor; pointer-events: none; transform-origin: center; }
.collector-detail-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.collector-detail-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.collector-detail-close:hover { background: rgba(22, 36, 57, .92); }
.collector-player-column { position: relative; z-index: 1; display: flex; min-width: 0; min-height: 0; flex-direction: column; overflow: hidden; background: #07101e; }
.collector-player-head {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 10px 14px 10px 18px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(90deg, rgba(var(--ng-accent-rgb, 47,107,255), .14), transparent 46%),
    linear-gradient(105deg, #07101e, #10223a 62%, #0b182a);
}
.collector-player-heading {
  display: grid;
  min-width: 0;
  gap: 2px;
}
.collector-player-kicker {
  color: color-mix(in srgb, var(--ng-accent-2, #68a4ff) 80%, #fff);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}
.collector-player-stage {
  position: relative;
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--ng-accent-rgb, 47,107,255), .11), transparent 47%),
    linear-gradient(145deg, #060c17, #091523 58%, #070e1a);
}
.collector-player-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.collector-video-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  place-items: stretch;
  overflow: hidden;
  background: #080f1c;
  color-scheme: dark;
  contain: paint;
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
  place-self: center stretch;
}
.collector-video-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #080f1c;
  pointer-events: none;
}
.collector-video-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--ng-accent-rgb, 47,107,255), .14), transparent 42%),
    #080f1c;
  opacity: 1;
  visibility: visible;
  will-change: opacity;
  pointer-events: none;
  transition: opacity .16s ease, visibility 0s linear .16s;
}
.collector-video-shell video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #080f1c !important;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transform: none;
  will-change: opacity;
  transition: opacity .16s ease;
}
.collector-video-shell.is-portrait,
.collector-video-shell.is-square {
  width: auto;
  max-width: 100%;
  height: min(72vh, 760px);
  aspect-ratio: var(--collector-media-aspect, 9 / 16);
  place-self: center;
}
.collector-video-shell.is-square {
  height: min(68vh, 650px);
  aspect-ratio: var(--collector-media-aspect, 1 / 1);
}
.collector-video-shell video[hidden],
.collector-parser-frame[hidden] { display: none !important; }
.collector-parser-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background-color: #080f1c !important;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transform: none;
  will-change: opacity;
  transition: opacity .16s ease;
}
.collector-video-shell.is-video-ready video:not([hidden]),
.collector-video-shell.is-frame-ready .collector-parser-frame:not([hidden]) {
  opacity: 1;
  visibility: visible;
}
.collector-video-shell:is(.is-video-ready, .is-frame-ready)::after {
  opacity: 0;
  visibility: hidden;
}
.collector-player-title {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collector-player-note[hidden] { display: none !important; }
.collector-player-note {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 46px;
  gap: 9px;
  overflow: hidden;
  padding: 8px 16px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #dce8fb;
  background: linear-gradient(90deg, #0d1a2d, #12233a);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collector-player-note::before {
  content: '';
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ng-accent-2, #68a4ff);
  box-shadow: 0 0 0 4px rgba(var(--ng-accent-rgb, 47,107,255), .12), 0 0 12px rgba(var(--ng-accent-rgb, 47,107,255), .36);
}
.collector-info-column {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--ng-accent-rgb, 47,107,255), .1), transparent 34%),
    var(--ng-panel-solid, #fff);
  scrollbar-width: thin;
}
.collector-info-overview {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-width: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ng-line, #e2e9f3);
}
.collector-info-poster {
  position: relative;
  width: 78px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--ng-line, #d9e3f0);
  border-radius: calc(var(--ng-radius-small, 12px) + 2px);
  background: linear-gradient(145deg, rgba(var(--ng-accent-rgb, 47,107,255), .16), rgba(var(--ng-accent-rgb, 47,107,255), .04));
  box-shadow: 0 10px 24px rgba(16, 36, 68, .16);
}
.collector-info-poster img { display: block; width: 100%; height: 100%; object-fit: cover; }
.collector-info-poster.is-empty img { display: none; }
.collector-info-poster.is-empty::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--ng-accent, #2f6bff);
  transform: translate(-38%, -50%);
}
.collector-info-overview-copy { min-width: 0; }
.collector-info-column h3 {
  overflow: hidden;
  display: -webkit-box;
  margin: 0 0 10px;
  color: var(--ng-ink, #17243a);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.28;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.collector-meta { display: flex; gap: 6px; flex-wrap: wrap; color: var(--ng-muted, #75829a); font-size: 11px; }
.collector-meta span {
  max-width: 100%;
  overflow: hidden;
  padding: 4px 8px;
  border: 1px solid var(--ng-line, #dbe5f2);
  border-radius: 999px;
  background: rgba(var(--ng-accent-rgb, 47,107,255), .07);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collector-info-section {
  min-width: 0;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--ng-line, #e0e7f1);
  border-radius: var(--ng-radius-small, 14px);
  background: rgba(var(--ng-accent-rgb, 47,107,255), .035);
}
.collector-info-section-title { margin: 0; color: var(--ng-ink, #17243a); font-size: 13px; font-weight: 850; }
.collector-info-row { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 10px; margin-top: 12px; min-width: 0; }
.collector-info-label { color: var(--ng-accent, #2f6bff); font-size: 12px; font-weight: 850; }
.collector-description {
  min-width: 0;
  margin: 0;
  color: var(--ng-muted, #526078);
  font-size: 12px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.collector-episode-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.collector-episode-count { color: var(--ng-muted, #75829a); font-size: 11px; white-space: nowrap; }
.collector-episodes { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.collector-episode {
  min-height: 38px;
  overflow: hidden;
  padding: 0 9px;
  border: 1px solid var(--ng-line, #d8e2ef);
  border-radius: var(--ng-control-radius, 10px);
  background: rgba(var(--ng-accent-rgb, 47,107,255), .055);
  color: var(--ng-ink, #425676);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.collector-episode:hover { border-color: var(--ng-accent, #2563eb); color: var(--ng-accent, #2563eb); }
.collector-episode.is-active {
  border-color: transparent;
  color: #fff;
  background: var(--ng-button, linear-gradient(135deg, #2563eb, #5b91ff));
  box-shadow: var(--ng-button-shadow, 0 8px 18px rgba(37,99,235,.2));
}
.collector-episodes-empty { padding: 18px 10px; color: var(--ng-muted, #75829a); font-size: 12px; text-align: center; }
.collector-episodes-more {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 1px solid var(--ng-line, #cddbef);
  border-radius: var(--ng-control-radius, 11px);
  color: var(--ng-accent, #315d9f);
  background: rgba(var(--ng-accent-rgb, 47,107,255), .07);
  font-weight: 800;
  cursor: pointer;
}
.collector-episodes-more:hover { border-color: var(--ng-accent, #7aa0ed); background: rgba(var(--ng-accent-rgb, 47,107,255), .12); }

body.collector-detail-open { overflow: hidden; }
@keyframes collector-overlay-in { from { opacity: 0; } }
@keyframes collector-dialog-fade { from { opacity: 0; } }

@media (max-width: 900px) {
  .collector-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .collector-detail-dialog { grid-template-columns: 1fr; width: min(760px, 100%); }
  .collector-video-shell { min-height: 0; }
  .collector-video-shell.is-portrait { height: min(68vh, 680px); }
  .collector-video-shell.is-square { height: min(62vh, 560px); }
  .collector-info-column { overflow: visible; }
  html[data-ui-theme] body.collector-detail-open .collector-detail-overlay {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  html[data-ui-theme] body.collector-detail-open .collector-detail-dialog {
    display: block;
    min-height: 0;
    max-height: calc(100vh - 24px) !important;
    max-height: calc(100dvh - max(12px, env(safe-area-inset-top, 0px)) - max(12px, env(safe-area-inset-bottom, 0px))) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    scroll-padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
  html[data-ui-theme] body.collector-detail-open .collector-info-column { overflow: visible !important; }
}

@media (max-width: 620px) {
  .collector-catalog-panel { width: calc(100% - 16px); margin-top: 14px; }
  .collector-catalog-shell { border-radius: 19px; }
  .collector-toolbar { grid-template-columns: minmax(0, 1fr) auto; padding: 14px; }
  .collector-category-list { gap: 5px; padding: 7px 8px 8px; scroll-padding-inline: 8px; }
  .collector-category-list .collector-category-tab { gap: 5px; min-height: 40px; padding: 5px 9px 5px 5px; border-radius: 11px; font-size: 12px; }
  .collector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 14px; }
  .collector-card { border-radius: 12px; }
  .collector-card-copy { padding: 8px; }
  .collector-card-copy strong { min-height: 2.7em; font-size: 13px; line-height: 1.35; }
  .collector-card-copy span { font-size: 11px; }
  .collector-age-gate { min-height: 0; padding: 20px 14px; }
  .collector-age-icon { width: 58px; height: 58px; border-radius: 18px; font-size: 23px; }
  .collector-detail-overlay { padding: 0; place-items: end center; }
  .collector-detail-dialog { max-height: 96dvh; border-radius: 22px 22px 0 0; }
  .collector-player-head { min-height: 58px; padding: 8px 10px 8px 14px; }
  .collector-detail-close { flex-basis: 34px; width: 34px; height: 34px; }
  .collector-video-shell { min-height: 0; }
  .collector-video-shell.is-portrait { height: min(58dvh, 580px); }
  .collector-video-shell.is-square { height: min(54dvh, 520px); }
  .collector-player-note { min-height: 42px; padding: 7px 14px; }
  .collector-info-column { padding: 16px 14px calc(24px + env(safe-area-inset-bottom)); }
  .collector-info-overview { grid-template-columns: 66px minmax(0, 1fr); gap: 12px; padding-bottom: 14px; }
  .collector-info-poster { width: 66px; }
  .collector-info-column h3 { font-size: 19px; -webkit-line-clamp: 2; }
  .collector-info-section { margin-top: 12px; padding: 13px; }
  .collector-episodes { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
  .collector-episode { min-height: 38px; padding: 0 4px; font-size: 11px; }
}

@media (max-width: 390px) {
  .collector-grid { gap: 6px; padding: 10px; }
  .collector-card-copy { padding: 7px 6px 8px; }
  .collector-info-overview { grid-template-columns: 58px minmax(0, 1fr); }
  .collector-info-poster { width: 58px; }
  .collector-episodes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .collector-refresh-indicator { width: 100%; animation: none; opacity: .62; }
  .collector-detail-overlay,
  .collector-detail-dialog { animation: none; }
  .collector-video-shell::after,
  .collector-video-shell video,
  .collector-parser-frame { transition: none; }
}
