/* harbor-cyan · site 13 · 港湾清爽 VOD skin */
:root{
  --hc-primary:#0ea5e9;
  --hc-secondary:#0284c7;
  --hc-cta:#f97316;
  --hc-hot:#f97316;
  --hc-bg:#f8fafc;
  --hc-surface:#ffffff;
  --hc-surface-2:#f1f5f9;
  --hc-text:#0f172a;
  --hc-muted:#64748b;
  --hc-line:rgba(14,165,233,.18);
  --hc-shadow:0 16px 48px rgba(14,165,233,.12);
  color-scheme:light;
}

body.hc-body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(820px 340px at 100% -5%, rgba(14,165,233,.08), transparent 55%),
    radial-gradient(640px 280px at 0% 100%, rgba(249,115,22,.06), transparent 50%),
    var(--hc-bg)!important;
  color:var(--hc-text)!important;
  font-family:"Segoe UI","PingFang SC","Noto Sans SC",sans-serif;
  line-height:1.55;
}
body.hc-body a{color:var(--hc-primary);text-decoration:none;transition:color .2s ease,background .2s ease,transform .2s ease,box-shadow .2s ease}
body.hc-body a:hover{color:var(--hc-secondary)}
body.hc-body img{display:block;max-width:100%;height:auto}
body.hc-body button{font:inherit;cursor:pointer}

/* ── 顶栏：搜索优先 + 分类胶囊条 ── */
.hc-top{
  position:sticky;top:0;z-index:90;
  background:var(--hc-surface);
  box-shadow:0 2px 20px rgba(15,23,42,.06);
}
.hc-top__inner{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;gap:16px;
  padding:12px 20px;
}
.hc-brand{
  display:inline-flex;align-items:center;gap:10px;flex-shrink:0;
  color:var(--hc-text)!important;font-weight:800;
}
.hc-brand__mark{
  display:grid;place-items:center;width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg,var(--hc-primary),var(--hc-secondary));
  color:#fff;font-size:17px;font-weight:900;
  box-shadow:0 8px 22px rgba(14,165,233,.32);
}
.hc-brand__text{
  font-size:1rem;letter-spacing:-.02em;max-width:180px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.hc-search{
  flex:1;max-width:520px;display:flex;gap:0;
  border-radius:999px;overflow:hidden;
  border:2px solid var(--hc-line);background:var(--hc-surface-2);
  box-shadow:inset 0 1px 3px rgba(15,23,42,.04);
}
.hc-search input{
  flex:1;min-width:0;padding:11px 18px;border:0;background:transparent;
  color:var(--hc-text);outline:none;font-size:.95rem;
}
.hc-search input::placeholder{color:var(--hc-muted)}
.hc-topnav{display:flex;flex-wrap:wrap;gap:4px 10px}
.hc-topnav a{
  padding:6px 12px;border-radius:999px;color:var(--hc-muted)!important;
  font-weight:700;font-size:.88rem;
}
.hc-topnav a:hover,.hc-topnav a[aria-current="page"]{
  color:var(--hc-primary)!important;background:rgba(14,165,233,.1);
}
.hc-menu-btn{
  display:none;width:42px;height:42px;border:2px solid var(--hc-line);border-radius:12px;
  background:var(--hc-surface);color:var(--hc-text);font-size:20px;
}

/* 彩色分类胶囊条 */
.hc-chips{
  display:flex;gap:8px;overflow-x:auto;padding:10px 20px 14px;
  max-width:1280px;margin:0 auto;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.hc-chips::-webkit-scrollbar{display:none}
.hc-chip{
  flex-shrink:0;padding:7px 16px;border-radius:999px;
  background:var(--hc-surface-2);color:var(--hc-text)!important;
  font-weight:700;font-size:.85rem;border:1.5px solid transparent;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.hc-chip:hover{
  background:rgba(14,165,233,.12);border-color:var(--hc-primary);color:var(--hc-primary)!important;
  transform:translateY(-1px);
}
.hc-chip--hot{
  background:linear-gradient(135deg,var(--hc-cta),#fb923c);
  color:#fff!important;border-color:transparent;
  box-shadow:0 6px 18px rgba(249,115,22,.32);
}
.hc-chip--hot:hover{color:#fff!important;background:linear-gradient(135deg,#ea580c,var(--hc-cta))}

/* ── 按钮 ── */
.hc-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 24px;border-radius:999px;font-weight:800;border:0;
  transition:transform .2s ease,box-shadow .2s ease;
}
.hc-btn--cta{
  background:linear-gradient(135deg,var(--hc-cta),#fb923c);
  color:#fff!important;box-shadow:0 10px 28px rgba(249,115,22,.28);
}
.hc-btn--cta:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(249,115,22,.36)}
.hc-btn--outline{
  background:transparent;color:var(--hc-primary)!important;
  border:2px solid var(--hc-primary);
}
.hc-btn--outline:hover{background:rgba(14,165,233,.08)}

.hc-main{max-width:1280px;margin:0 auto;padding:28px 20px 60px}

/* ── 首页 hero：上文案下卡片 ── */
.hc-hero{
  margin-bottom:40px;padding:36px 32px;border-radius:24px;
  background:linear-gradient(135deg,#fff 0%,#e0f2fe 55%,rgba(249,115,22,.08) 100%);
  border:1px solid var(--hc-line);box-shadow:var(--hc-shadow);
}
.hc-hero__eyebrow{
  display:inline-block;margin:0 0 12px;padding:5px 14px;border-radius:999px;
  background:rgba(14,165,233,.14);color:var(--hc-secondary);
  font-size:.78rem;font-weight:800;letter-spacing:.04em;
}
.hc-hero h1{
  margin:0 0 14px;font-size:clamp(1.7rem,4vw,2.5rem);
  line-height:1.15;color:var(--hc-text);font-weight:900;
}
.hc-hero__lead{margin:0 0 22px;color:var(--hc-muted);font-size:1.02rem;max-width:560px}
.hc-hero__cta{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:28px}
.hc-hero__cards .hc-grid--hero{
  grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;
}
.hc-hero__cards .hc-card__body{display:none}

/* ── 热播横滑 ── */
.hc-trend{margin-bottom:44px}
.hc-sec-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;margin-bottom:18px;
}
.hc-sec-head h2{
  margin:0;font-size:1.35rem;font-weight:900;
  display:flex;align-items:center;gap:10px;color:var(--hc-text);
}
.hc-sec-head__dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--hc-cta);box-shadow:0 0 0 4px rgba(249,115,22,.2);
}
.hc-sec-head a,.hc-sec-head__sub{color:var(--hc-primary)!important;font-weight:700;font-size:.92rem}
.hc-sec-head__sub{color:var(--hc-muted)!important}
.hc-trend__rail{
  display:flex;gap:14px;overflow-x:auto;padding:4px 2px 16px;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
}
.hc-trend__rail .hc-card{flex:0 0 168px;scroll-snap-align:start}

/* ── 分区 ── */
.hc-block{margin-bottom:48px}

/* ── 卡片：3:4 竖版 + 湖蓝边框 + 珊瑚热门角标 ── */
.hc-grid{display:grid;gap:18px}
.hc-grid--four{grid-template-columns:repeat(4,minmax(0,1fr))}
.hc-grid--cat{grid-template-columns:repeat(4,minmax(0,1fr))}
.hc-grid--related{grid-template-columns:repeat(3,minmax(0,1fr))}

.hc-card{
  background:var(--hc-surface);border-radius:16px;overflow:hidden;
  border:2px solid var(--hc-line);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.hc-card:hover{
  transform:translateY(-5px);border-color:var(--hc-primary);
  box-shadow:0 20px 48px rgba(14,165,233,.18);
}
.hc-card__cover{position:relative;display:block;overflow:hidden;background:#e2e8f0}
.hc-card__cover img{width:100%;aspect-ratio:3/4;object-fit:cover;transition:transform .35s ease}
.hc-card:hover .hc-card__cover img{transform:scale(1.05)}
.hc-card__hot{
  position:absolute;left:10px;top:10px;padding:4px 10px;border-radius:8px;
  background:var(--hc-hot);color:#fff;font-size:.72rem;font-weight:900;
  box-shadow:0 4px 12px rgba(249,115,22,.35);
}
.hc-card__play{
  position:absolute;right:10px;bottom:10px;width:36px;height:36px;border-radius:50%;
  display:grid;place-items:center;background:var(--hc-primary);color:#fff;
  font-size:.8rem;font-weight:900;
  opacity:0;transform:scale(.85);transition:opacity .2s ease,transform .2s ease;
}
.hc-card:hover .hc-card__play{opacity:1;transform:scale(1)}
.hc-card__body{padding:12px 14px 14px}
.hc-card__body h3{margin:0 0 6px;font-size:.92rem;line-height:1.35;font-weight:800}
.hc-card__body h3 a{color:var(--hc-text)!important}
.hc-card__body h3 a:hover{color:var(--hc-primary)!important}
.hc-card__meta{margin:0;display:flex;flex-wrap:wrap;gap:6px;font-size:.75rem;color:var(--hc-muted);font-weight:600}
.hc-card__region{color:var(--hc-primary)!important;font-weight:800}
.hc-card--rail .hc-card__body{padding:10px 12px 12px}
.hc-card--rail h3{font-size:.84rem}

/* ── 分类页 ── */
.hc-pagehead{
  margin-bottom:28px;padding:28px 28px 24px;border-radius:20px;
  background:linear-gradient(120deg,var(--hc-primary),var(--hc-secondary));
  color:#fff;box-shadow:var(--hc-shadow);
}
.hc-pagehead .hc-hero__eyebrow{background:rgba(255,255,255,.2);color:#fff}
.hc-pagehead h1{margin:0 0 10px;font-size:clamp(1.5rem,3.5vw,2.1rem);font-weight:900;color:#fff}
.hc-pagehead p{margin:0;color:rgba(255,255,255,.88);max-width:640px;font-size:.98rem}
.hc-crumb{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:10px;font-size:.85rem;color:rgba(255,255,255,.75);font-weight:600}
.hc-crumb a{color:#fff!important}
body.hc-body .hc-player-wrap ~ .hc-synopsis .hc-crumb,
body.hc-body > .hc-main > .hc-crumb:first-child{
  color:var(--hc-muted);
}
body.hc-body > .hc-main > .hc-crumb:first-child a{color:var(--hc-primary)!important}

.hc-filterbar{
  display:flex;flex-wrap:wrap;gap:12px;margin-bottom:22px;padding:18px;
  background:var(--hc-surface);border-radius:16px;
  border:1px solid var(--hc-line);box-shadow:0 4px 16px rgba(15,23,42,.04);
}
.hc-filterbar--wide .hc-filterbar__field--grow{flex:2;min-width:180px}
.hc-filterbar__field{display:flex;flex-direction:column;gap:6px;flex:1;min-width:130px}
.hc-filterbar__field span{font-size:.72rem;font-weight:800;color:var(--hc-primary);letter-spacing:.04em}
.hc-filterbar__field input,.hc-filterbar__field select{
  padding:10px 14px;border-radius:10px;border:1.5px solid var(--hc-line);
  background:var(--hc-surface-2);color:var(--hc-text);outline:none;font-weight:600;
}
.hc-filterbar__field input:focus,.hc-filterbar__field select:focus{border-color:var(--hc-primary)}
.hc-empty{
  padding:36px;text-align:center;color:var(--hc-muted);font-weight:700;
  border-radius:16px;background:var(--hc-surface);border:1px dashed var(--hc-line);
}

/* 分类 tiles */
.hc-cat-tiles{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;
}
.hc-cat-tiles .category-tile,
.hc-cat-tiles .overview-card{
  display:block;padding:22px;border-radius:16px;
  background:var(--hc-surface);border:2px solid var(--hc-line);
  box-shadow:0 4px 16px rgba(15,23,42,.04);
  transition:transform .2s ease,border-color .2s ease;
}
.hc-cat-tiles .category-tile:hover,
.hc-cat-tiles .overview-card:hover{
  transform:translateY(-3px);border-color:var(--hc-primary);
}
.hc-cat-tiles strong{
  display:block;margin-bottom:8px;font-size:1.1rem;font-weight:900;color:var(--hc-primary);
}
.hc-cat-tiles span{color:var(--hc-muted);font-size:.88rem;line-height:1.6}

/* ── 播放页：播放器全宽置顶 + 下方信息条 ── */
.hc-player-wrap{margin-bottom:32px}
.hc-player{
  background:#0f172a;border-radius:20px;overflow:hidden;
  border:3px solid var(--hc-primary);
  box-shadow:0 24px 60px rgba(14,165,233,.2);
  margin-bottom:20px;
}
.hc-player video,#movie-player{width:100%;aspect-ratio:16/9;background:#0f172a;display:block}
.hc-player-info{
  padding:24px 28px;border-radius:20px;
  background:var(--hc-surface);border:1px solid var(--hc-line);
  box-shadow:0 8px 28px rgba(15,23,42,.06);
}
.hc-player-info__head{display:flex;align-items:flex-start;gap:12px;flex-wrap:wrap;margin-bottom:16px}
.hc-player-info h1{margin:0;font-size:clamp(1.3rem,3vw,1.8rem);font-weight:900;line-height:1.25;color:var(--hc-text);flex:1}
.hc-player-info__tag{
  padding:5px 12px;border-radius:8px;
  background:rgba(14,165,233,.12);color:var(--hc-primary);
  font-size:.78rem;font-weight:800;
}
.hc-facts{
  list-style:none;margin:0 0 16px;padding:0;
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;
}
.hc-facts li{
  padding:12px 14px;border-radius:12px;background:var(--hc-surface-2);
  display:flex;flex-direction:column;gap:4px;
}
.hc-facts em{font-style:normal;font-size:.75rem;color:var(--hc-muted);font-weight:700}
.hc-facts strong{color:var(--hc-primary);font-weight:800;font-size:.95rem}
.hc-player-info__desc{
  margin:0 0 20px;color:var(--hc-muted);font-size:.95rem;line-height:1.75;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.hc-synopsis{
  margin-bottom:40px;padding:24px 28px;border-radius:20px;
  background:var(--hc-surface);border-left:5px solid var(--hc-cta);
  box-shadow:0 4px 16px rgba(15,23,42,.04);
}
.hc-synopsis h2{margin:0 0 12px;font-size:1.15rem;font-weight:900;color:var(--hc-cta)}
.hc-synopsis p{margin:0;color:var(--hc-muted);line-height:1.85}

/* ── 页脚：波浪分割 + 双列信息 ── */
.hc-foot{margin-top:32px;background:var(--hc-surface);border-top:3px solid var(--hc-primary)}
.hc-foot__wave{
  height:6px;
  background:linear-gradient(90deg,var(--hc-primary),var(--hc-cta),var(--hc-primary));
}
.hc-foot__body{
  max-width:1280px;margin:0 auto;padding:36px 20px 20px;
  display:grid;grid-template-columns:1.5fr 1fr;gap:32px;
}
.hc-foot__brand strong{display:block;margin-bottom:10px;font-size:1.05rem;font-weight:900;color:var(--hc-primary)}
.hc-foot__brand p,.hc-foot__about{margin:0 0 8px;color:var(--hc-muted);font-size:.88rem;line-height:1.7}
.hc-foot__links{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.hc-foot__label{display:block;margin-bottom:10px;font-size:.82rem;font-weight:900;color:var(--hc-text);letter-spacing:.03em}
.hc-foot__col a{display:block;margin-bottom:8px;color:var(--hc-muted)!important;font-size:.88rem;font-weight:600}
.hc-foot__col a:hover{color:var(--hc-primary)!important}
.hc-foot__bar{
  max-width:1280px;margin:0 auto;padding:14px 20px 24px;
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px;
  border-top:1px solid var(--hc-line);color:var(--hc-muted);font-size:.82rem;font-weight:700;
}
.hc-foot__bar a{color:var(--hc-primary)!important}

body.hc-body .movie-grid.hc-grid{display:grid}

@media (max-width:1024px){
  .hc-hero__cards .hc-grid--hero{grid-template-columns:repeat(3,minmax(0,1fr))}
  .hc-grid--four,.hc-grid--cat{grid-template-columns:repeat(3,minmax(0,1fr))}
  .hc-facts{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hc-foot__body{grid-template-columns:1fr}
  .hc-cat-tiles{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:720px){
  .hc-top__inner{flex-wrap:wrap;padding:10px 14px}
  .hc-search{order:3;width:100%;max-width:none}
  .hc-topnav{
    order:4;width:100%;display:none;flex-direction:column;align-items:stretch;
    padding:12px;background:var(--hc-surface-2);border-radius:14px;border:1px solid var(--hc-line);
  }
  .hc-topnav.open{display:flex}
  .hc-topnav a{padding:10px 12px}
  .hc-menu-btn{display:block;margin-left:auto}
  .hc-brand__text{max-width:120px;font-size:.92rem}
  .hc-chips{padding:8px 14px 12px}
  .hc-main{padding:20px 14px 48px}
  .hc-hero{padding:24px 20px;border-radius:18px}
  .hc-hero__cards .hc-grid--hero{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .hc-grid--four,.hc-grid--cat,.hc-grid--related{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .hc-trend__rail .hc-card{flex:0 0 140px}
  .hc-facts{grid-template-columns:1fr 1fr}
  .hc-player-info{padding:18px 16px}
  .hc-foot__links{grid-template-columns:1fr}
  .hc-cat-tiles{grid-template-columns:1fr}
  .hc-filterbar{flex-direction:column}
}
@media (max-width:480px){
  .hc-hero h1{font-size:1.5rem}
  .hc-grid--four,.hc-grid--cat,.hc-grid--related{grid-template-columns:1fr}
  .hc-hero__cards{display:none}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}
