/* Seker — 深色影视布局（参考 javtiful 类站点：暗色底、强调色、信息卡片） */
:root {
  --bg: #0c0d10;
  --bg-elevated: #14151c;
  --bg-card: #1a1b24;
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --line: #27272f;
  --accent: #f43f5e;
  --accent-soft: rgba(244, 63, 94, 0.12);
  --indigo: #e4e4e7;
  --indigo-hover: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --font: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.seker {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: #fda4af;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
a:hover { color: var(--accent); }

.seker-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 语言下拉（国旗用 Unicode 区旗 emoji，免外链图标） */
.seker-lang-dd {
  position: relative;
  z-index: 120;
}
.seker-lang-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
.seker-lang-dd__btn:hover { border-color: rgba(244, 63, 94, 0.45); }
.seker-lang-dd.is-open .seker-lang-dd__btn { border-color: var(--accent); }
.seker-lang-dd__flag {
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.seker-lang-dd__flag--img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.seker-lang-dd__caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  transition: transform 0.15s ease;
}
.seker-lang-dd.is-open .seker-lang-dd__caret {
  transform: rotate(180deg);
}
.seker-lang-dd__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 220px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.seker-lang-dd__menu li { margin: 0; }
.seker-lang-dd__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
}
.seker-lang-dd__menu a:hover { background: var(--bg-elevated); color: #fda4af; }
.seker-lang-dd__menu a.is-current {
  background: var(--accent-soft);
  color: #fda4af;
  font-weight: 600;
}
.seker-lang-dd__opt-name { flex: 1; }

/* Header — 顶栏字体与导航形态参考 javtiful.com */
.seker-header {
  background: #0b0e13;
  border-bottom: 1px solid #1f2228;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

/* 顶栏单行：Logo/站名 · 频道导航 · 搜索 · 语言 */
.seker-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 14px;
  padding: 10px 0;
  flex-wrap: nowrap;
}
.seker-topbar .seker-brand {
  flex-shrink: 0;
  min-width: 0;
  max-width: min(38vw, 240px);
}
.seker-topbar .seker-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.seker-topbar .seker-search.seker-search--headtools,
.seker-topbar .seker-search--headtools {
  flex: 0 1 280px;
  min-width: 120px;
  max-width: 300px;
}
.seker-topbar .seker-lang-dd {
  flex-shrink: 0;
  margin-left: auto;
}

.seker-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: none;
}
.seker-brand img { max-height: 36px; width: auto; display: block; }
.seker-brand span { letter-spacing: 0.08em; }

.seker-nav {
  display: flex;
  align-items: center;
  gap: 6px 8px;
  flex-wrap: nowrap;
}
@media (min-width: 901px) {
  .seker-topbar .seker-nav {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 20px), transparent 100%);
  }
  .seker-topbar .seker-nav::-webkit-scrollbar {
    height: 4px;
  }
  .seker-topbar .seker-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
  }
  .seker-topbar .seker-nav__link {
    flex-shrink: 0;
  }
}
.seker-nav__link {
  font-family: "Montserrat", "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e4e4e7;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.15s, color 0.15s;
}
.seker-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.seker-nav__link.is-active {
  color: #fff;
  background: #1a1d22;
}

.seker-search {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.seker-search input {
  flex: 1;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-card);
  color: var(--ink);
}
.seker-search input::placeholder { color: #71717a; }
.seker-search button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}
.seker-search button:hover { filter: brightness(1.08); }

.seker-nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 900px) {
  .seker-nav-toggle { display: block; }
  .seker-topbar {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    padding: 10px 0;
  }
  .seker-topbar .seker-brand {
    flex: 0 1 auto;
    max-width: min(52vw, 200px);
  }
  .seker-topbar .seker-nav {
    display: none;
    order: 10;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: visible;
    padding: 8px 0 12px;
    mask-image: none;
  }
  .seker-topbar .seker-nav.is-open { display: flex; }
  .seker-topbar .seker-search--headtools {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .seker-topbar .seker-lang-dd {
    margin-left: 0;
  }
}

/* Section */
.seker-section { margin: 32px 0; }
.seker-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.seker-for-you-refresh {
  flex-shrink: 0;
  margin: 0;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.seker-for-you-refresh:hover:not(:disabled) {
  color: var(--accent);
  border-color: var(--accent);
}
.seker-for-you-refresh:disabled {
  opacity: 0.55;
  cursor: wait;
}
.seker-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.seker-title::before {
  content: "";
  width: 4px;
  height: 1em;
  background: linear-gradient(180deg, var(--accent), #fb7185);
  border-radius: 2px;
}
.seker-more { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.seker-more:hover { color: var(--accent); }

/* 区块大标题（首页多板块） */
.seker-block-title {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* 首页顶通广告位（原 Hero 轮播）— 固定高度 200px */
.seker-ad-home-wrap {
  position: relative;
}
.seker-ad-home-top {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.seker-ad-home-top > a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.seker-ad-home-top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.seker-ad-home-top iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

/* Grid — 与 javtiful 一致：大屏每行 4 个（全站列表共用 .seker-grid） */
.seker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 560px) {
  .seker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .seker-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.seker-grid > .seker-card.seker-card-jtf {
  min-width: 0;
}

.seker-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  color: inherit;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.seker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 63, 94, 0.35);
}
/* 视频列表卡：圆角块仅为封面；标题与数据在卡片外（第 2、3 行） */
.seker-card.seker-card-jtf {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.seker-card.seker-card-jtf:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}
.seker-card.seker-card-jtf:hover .seker-card-media {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 63, 94, 0.35);
}
.seker-card-pic {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  display: block;
  background: #27272a;
}
/* 封面角标 + Javtiful 类列表卡片（画质/时长叠在缩略图左下，不展示播放量） */
.seker-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1a1a1e;
  overflow: hidden;
}
.seker-card.seker-card-jtf .seker-card-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  flex-shrink: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.seker-card.seker-card-jtf .seker-card-media .seker-card-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
  background: #14151c;
}
.seker-card-media .seker-card-pic {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
/* 封面叠层：左上状态 + 左下画质/时长（白字、字重与阴影，无底色块） */
.seker-card-badge-tl {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(0, 0, 0, 0.55);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
.seker-card-badge-bl {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
  max-width: calc(100% - 20px);
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.25;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(0, 0, 0, 0.5);
}
.seker-card-badge-q {
  font-weight: 800;
  letter-spacing: 0.06em;
}
.seker-card-badge-t {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  opacity: 1;
}
.seker-card-badge-sp {
  display: inline;
  font-weight: 700;
  opacity: 0.95;
}
.seker-card.seker-card-jtf .seker-card-body {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
/* 第 2 行：标题单行省略（javtiful 列表样式） */
.seker-card.seker-card-jtf .seker-card-title {
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fafafa;
  line-height: 1.35;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 第 3 行：播放量 · 时间（单行） */
.seker-card.seker-card-jtf .seker-card-meta {
  margin-top: 6px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.8rem;
  color: #a1a1aa;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px 6px;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
}
.seker-card.seker-card-jtf .seker-card-stat-inner {
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.seker-card-stat-inner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 0;
}
.seker-card-eye {
  display: inline-flex;
  align-items: center;
  color: #a1a1aa;
  flex-shrink: 0;
}
.seker-card-eye svg {
  display: block;
  vertical-align: middle;
}
.seker-card-hits {
  font-weight: 500;
  color: #a1a1aa;
}
.seker-card-stat-sep {
  margin: 0 2px;
  color: #71717a;
  font-weight: 400;
  user-select: none;
}
.seker-card-when {
  color: #a1a1aa;
  font-weight: 400;
}
.seker-card-body { padding: 10px 11px 12px; }
.seker-card-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.72rem;
  color: #a1a1aa;
  margin-bottom: 6px;
  line-height: 1.2;
}
.seker-card-stat strong {
  color: #e4e4e7;
  font-weight: 600;
}
.seker-card-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.seker-card-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
}
.seker-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: #fda4af;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* Page: detail */
.seker-breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 12px 0 20px;
  flex-wrap: wrap;
}
.seker-breadcrumb a { color: var(--muted); }
.seker-breadcrumb a:hover { color: var(--accent); }
.seker-breadcrumb em { font-style: normal; color: var(--ink); }

.seker-detail {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) {
  .seker-detail { grid-template-columns: 260px 1fr; align-items: start; }
}
.seker-poster {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e7e5e4;
}
.seker-poster img { width: 100%; display: block; vertical-align: middle; }
.seker-dl { margin: 0; display: grid; grid-template-columns: 88px 1fr; gap: 8px 16px; font-size: 0.92rem; }
.seker-dl dt { color: var(--muted); margin: 0; }
.seker-dl dd { margin: 0; }

/* 详情页元信息（竖排 + 粗标题 + pill，参考 javtiful） */
.seker-detail-meta {
  margin: 4px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
}
.seker-detail-meta-badge-row { margin: 0 0 2px; }
.seker-detail-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.22);
  color: #fda4af;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.seker-detail-meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seker-detail-meta-label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.seker-detail-meta-value { color: var(--muted); min-width: 0; }
.seker-detail-muted { color: var(--muted); opacity: 0.75; }
.seker-detail-added-on { color: var(--ink); font-weight: 400; }
.seker-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seker-detail-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 0.86rem;
  line-height: 1.35;
}
.seker-detail-pill:hover {
  border-color: rgba(244, 63, 94, 0.35);
  color: #fda4af !important;
}
.seker-detail-pill-static {
  cursor: default;
  pointer-events: none;
}
.seker-detail-actor-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 10px;
}
.seker-detail-actor-row:last-child { margin-bottom: 0; }
.seker-detail-actor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  text-decoration: none;
}
.seker-detail-actor:hover .seker-detail-actor-name { color: #fda4af; }
.seker-detail-actor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.seker-detail-actor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.seker-detail-actor-initial {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.seker-detail-actor-name { font-weight: 500; color: var(--ink); }
.seker-detail-correction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 63, 94, 0.45);
  background: var(--bg-elevated);
  color: var(--ink) !important;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.seker-detail-correction:hover {
  border-color: var(--accent);
  color: #fda4af !important;
}
.seker-detail-correction-icon { font-size: 0.95rem; opacity: 0.9; }

.seker-h1 { margin: 0 0 8px; font-size: 1.5rem; line-height: 1.3; color: var(--ink); }
.seker-content {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 20px;
  line-height: 1.75;
  color: var(--muted);
}
.seker-content img { max-width: 100%; height: auto; }

/* Playlists */
.seker-plays { margin-top: 20px; }
.seker-plays h3, .seker-plays .seker-subh {
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.seker-ep-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seker-ep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ink);
}
.seker-ep:hover { border-color: var(--accent); color: var(--accent); }
.seker-ep.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.seker-btn-primary {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.seker-btn-primary:hover { filter: brightness(1.08); }

/* Play page — 播放器全宽 + 标题区仿 javtiful */
.seker-play-page .seker-play-head {
  display: none;
}
.seker-play-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.seker-play-meta-row strong { color: #e4e4e7; font-weight: 600; }
.seker-play-page .seker-play-meta {
  margin: 0 0 14px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.seker-play-page .seker-play-h1 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.seker-play-head-pic img {
  width: 100%;
  max-width: 180px;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: var(--shadow);
  background: var(--line);
}
.seker-play-below .seker-dl { margin-bottom: 0; }

.seker-play-layout {
  display: grid;
  gap: 0;
}
.seker-player-box {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 220px;
  position: relative;
  border: 1px solid var(--line);
}
/* MacPlayer 内 buffer iframe 等为 z-index:99998，若不隔离层叠会与顶栏(z-index:100)比较并盖住语言下拉 */
.seker-play-page .seker-player-box {
  isolation: isolate;
  z-index: 0;
}
.seker-player-box .MacPlayer,
.seker-player-box iframe { min-height: 52vh; }

.seker-ctrl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  font-size: 0.92rem;
}
.seker-ctrl a {
  color: var(--ink);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.seker-ctrl a:hover { border-color: var(--accent); color: var(--accent); }

/* Show / search filters */
.seker-filters {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 20px;
}
.seker-filter-row { margin-bottom: 12px; }
.seker-filter-row:last-child { margin-bottom: 0; }
.seker-filter-label {
  display: inline-block;
  min-width: 64px;
  color: var(--muted);
  font-size: 0.88rem;
  vertical-align: top;
  margin-top: 4px;
}
.seker-filter-links { display: inline; }
.seker-filter-links a {
  display: inline-block;
  margin: 0 8px 6px 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--muted);
  font-size: 0.86rem;
  border: 1px solid transparent;
}
.seker-filter-links a:hover { background: var(--accent-soft); color: #fda4af; border-color: rgba(244, 63, 94, 0.25); }

/* Tag cloud */
.seker-tags a {
  display: inline-block;
  margin: 0 6px 8px 0;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--muted);
}
.seker-tags a:hover { border-color: var(--accent); color: #fda4af; }

/* Footer */
.seker-footer {
  margin-top: 48px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  background: var(--bg-elevated);
}
.seker-footer a { color: var(--muted); }
.seker-footer a:hover { color: var(--accent); }

/* Pagination (mac_pages) */
.seker .mac_pages {
  margin: 24px 0 8px;
  text-align: center;
}
.seker .mac_pages .page_tip { color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; }
.seker .mac_pages .page_info { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.seker .mac_pages .page_link {
  display: inline-block;
  min-width: 36px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 0.88rem;
}
.seker .mac_pages .page_link:hover { border-color: var(--accent); color: var(--accent) !important; }
.seker .mac_pages .page_current {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.seker .page_input { border: 1px solid var(--line); border-radius: 6px; padding: 6px; background: var(--bg-card); color: var(--ink); }
.seker .page_btn { cursor: pointer; border-radius: 6px; padding: 6px 12px; border: 1px solid var(--accent); background: var(--accent); color: #fff; }

/* Empty */
.seker-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  background: var(--bg-card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* 搜索页顶栏 */
.seker-search-hero {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 8px;
}
.seker-search-hero .seker-search {
  max-width: 640px;
  margin: 0 auto;
}

/* 首页主标题（SEO：单页 H1） */
.seker-home-h1 {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
}
