:root{
  --bg:#050509;
  --bg2:#050509;

  --panel:#101018;
  --panel2:#12121c;

  --card:#14141f;
  --card2:#161624;

  --line: rgba(148,163,184,.20);

  --text:#e5e7eb;
  --muted: rgba(148,163,184,.90);
  --muted2: rgba(148,163,184,.72);

  --c1:#ef4444;
  --c2:#f97316;
  --c3:#22c55e;
  --c4:#3b82f6;
  --c5:#a855f7;

  --brand:#3b82f6;
  --brand2:#22c55e;

  --radius: 12px;
  --radius2: 16px;

  --shadow: 0 20px 50px rgba(0,0,0,.65);
  --shadow2: 0 12px 30px rgba(0,0,0,.75);

  --max: 1320px;
  --pad: 18px;

  --chip-bg: #181824;
  --chip-br: #1f2937;

  --focus: 0 0 0 2px rgba(59,130,246,.80);

  --glass: rgba(15,15,23,.95);
  --glass2: rgba(18,18,26,.98);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: #050509;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }
button, input, select, textarea{ font: inherit; }
::selection{ background: rgba(59,130,246,.45); color:#f9fafb; }

.s-muted{ color: var(--muted); }
.s-muted2{ color: var(--muted2); }

.s-head__inner,
.s-foot__inner,
.v-page,
.v2-hero__inner,
.v2-row,
.v2-empty{
  width: min(var(--max), calc(100% - var(--pad)*2));
  margin-inline: auto;
}

.v-page{ padding-block: 18px 30px; }

/* 去掉背景跟随滚动、只保留纯色背景 */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index:-1;
  background: transparent;
}

/* 顶部不再固定，做成普通块级导航条 */
.s-head{
  position: relative;
  top: 0;
  z-index: 10;
  background: #101018;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,.75);
}

.s-head__inner{
  display: grid;
  grid-template-columns: 260px minmax(280px, 1fr) 260px;
  grid-template-areas:
    "brand search actions"
    "nav nav nav"
    "terms terms terms";
  gap: 12px 14px;
  align-items: center;
  padding: 14px 0 10px 0;
}

.s-brand{ grid-area: brand; min-width: 0; }
.s-actions{ grid-area: actions; min-width: 0; display:flex; justify-content:flex-end; }
.s-nav{ grid-area: nav; width:100%; }
.s-head__terms{ grid-area: terms; }

.s-brand__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #181824;
  border: 1px solid #1f2937;
  box-shadow: 0 8px 24px rgba(0,0,0,.7);
  transition: transform .14s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.s-brand__link::before{
  content:"";
  display:inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/10.ico");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.s-brand__link h1{
  margin:0;
  font-size: 20px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .2px;
  white-space: nowrap;
}
.s-brand__link:hover{
  border-color: #3b82f6;
  background: #1b1b28;
  box-shadow: 0 12px 32px rgba(0,0,0,.8);
}
.s-brand__link:active{ transform: translateY(1px); }

/* 搜索条移动到中间列 */
.s-search{
  grid-area: search;
  width: 100%;
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #181824;
  border: 1px solid #1f2937;
  box-shadow: 0 12px 32px rgba(0,0,0,.75);
}
.s-search__label{ position:absolute; left:-9999px; }
.s-search__input{
  flex: 1 1 auto;
  min-width: 160px;
  padding: 8px 10px;
  border:0;
  outline:none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}
.s-search__input::placeholder{ color: rgba(148,163,184,.7); }
.s-search__btn{
  border:0;
  border-radius: 999px;
  padding: 8px 16px;
  background: #3b82f6;
  color: #f9fafb;
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 12px 30px rgba(37,99,235,.8);
  transition: transform .12s ease, filter .12s ease, box-shadow .16s ease, background .16s ease;

  white-space: nowrap;   /* 👈 防止文字换行 */
}
.s-search__btn:hover{
  filter: brightness(1.06);
  background: #2563eb;
  box-shadow: 0 16px 36px rgba(37,99,235,.9);
}
.s-search__btn:active{ transform: translateY(1px); }

.s-brand__link:focus,
.s-nav__link:focus,
.s-search__input:focus,
.s-search__btn:focus{
  outline:none;
  box-shadow: var(--focus);
}

.s-search__input,
.s-search__input:focus,
.s-search__input:focus-visible,
.s-search__input:active{
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.s-search:focus-within{
  border-color: #3b82f6 !important;
  box-shadow: 0 14px 36px rgba(37,99,235,.6) !important;
}

/* 导航条改成更扁平、紧凑 */
.s-nav{ padding-top: 4px; }
.s-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  align-items: stretch;
}
.s-nav__item{ min-width: 0; }

.s-nav__link{
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #181824;
  border: 1px solid #111827;
  color: rgba(209,213,219,.9);
  transition: transform .12s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.s-nav__item:nth-child(5n+1) .s-nav__link{ --tag: var(--c1); }
.s-nav__item:nth-child(5n+2) .s-nav__link{ --tag: var(--c2); }
.s-nav__item:nth-child(5n+3) .s-nav__link{ --tag: var(--c3); }
.s-nav__item:nth-child(5n+4) .s-nav__link{ --tag: var(--c4); }
.s-nav__item:nth-child(5n+5) .s-nav__link{ --tag: var(--c5); }

.s-nav__link:hover{
  transform: translateY(-1px);
  background: #1f2937;
  border-color: #374151;
  box-shadow: 0 10px 26px rgba(0,0,0,.75);
  color:#f9fafb;
}
.s-nav__link[aria-current="page"],
.s-nav__link.is-active{
  color: #f9fafb;
  background: #111827;
  border-color: var(--tag);
}

/* 头部下方的热词条 */
.s-head__terms{
  width: 100%;
  margin: 4px 0 0 0;
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 6px;
}
.s-head__termsLabel{
  font-size: 11px;
  color: var(--muted);
  opacity: .9;
}
.s-head__termsList{
  display:flex;
  flex-wrap: wrap;
  justify-content:flex-start;
  align-items:center;
  gap: 8px 10px;
  max-width: 980px;
}
.s-head__term{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  background: #181824;
  border: 1px solid #1f2937;
  color: rgba(229,231,235,.9);
  transition: transform .12s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.s-head__term:nth-child(5n+1){ --t: var(--c1); }
.s-head__term:nth-child(5n+2){ --t: var(--c2); }
.s-head__term:nth-child(5n+3){ --t: var(--c3); }
.s-head__term:nth-child(5n+4){ --t: var(--c4); }
.s-head__term:nth-child(5n+5){ --t: var(--c5); }
.s-head__term:hover{
  transform: translateY(-1px);
  border-color: #4b5563;
  box-shadow: 0 10px 26px rgba(0,0,0,.75);
  background: #111827;
}
.s-head__term.is-active{
  color:#f9fafb;
  background: #111827;
  border-color: var(--t);
}

@media (max-width: 1100px){
  .s-head__inner{
    grid-template-columns: 220px minmax(200px, 1fr);
    grid-template-areas:
      "brand actions"
      "search search"
      "nav nav"
      "terms terms";
  }
  .s-nav__list{ grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
@media (max-width: 900px){
  .s-head__inner{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand actions"
      "search search"
      "nav nav"
      "terms terms";
  }
  .s-nav__list{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 760px){
  .s-head__inner{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "brand"
      "search"
      "actions"
      "nav"
      "terms";
    gap: 10px !important;
  }
  .s-actions{ justify-content: flex-start !important; }
}
@media (max-width: 560px){
  .s-nav__list{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .s-nav__link{ height: 38px; border-radius: 14px; }
}
@media (max-width: 300px){
  .s-nav__list{ grid-template-columns: 1fr; }
}

.v-home--2{
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 主页顶部内容区域：改成更像视频门户：左侧信息，右侧大播放器 */
.v2-hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050509;
}

.v2-hero__inner{ padding: 22px 0 18px 0; }

.v2-hero__grid{
  display:grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){ .v2-hero__grid{ grid-template-columns: 1fr; } }

.v2-hero__poster,
.v2-hero__poster--ph{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid #111827;
  background: #000;
  box-shadow: var(--shadow);
  max-height: 420px;
}
.v2-hero__poster--ph{
  background:#000;
}
.v2-hero__img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px){
  .v2-hero__poster,
  .v2-hero__poster--ph{ max-height: 320px; }
}
@media (max-width: 520px){
  .v2-hero__poster,
  .v2-hero__poster--ph{ max-height: 240px; }
}

.v2-hero__meta{ max-width: 760px; }
.v2-hero__brand{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(156,163,175,.96);
}
.v2-hero__brand::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.v2-hero__title{
  margin: 10px 0 8px 0;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
  font-weight: 1000;
}
.v2-hero__sub{
  color: rgba(156,163,175,.96);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}
.v2-hero__link{
  color: #3b82f6;
  font-weight: 900;
}
.v2-hero__link:hover{ text-decoration: underline; }

.v2-hero__actions{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.v2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: #181824;
  color: rgba(229,231,235,.95);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.75);
  transition: transform .12s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease;
}
.v2-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,.85);
  background: #111827;
}
.v2-btn:active{ transform: translateY(1px); }

.v2-btn--primary{
  border-color: #3b82f6;
  color: #f9fafb;
  background: #1d4ed8;
}
.v2-btn--ghost{
  background: #101018;
}

.v2-hero__note{
  margin: 12px 0 0 0;
  color: rgba(148,163,184,.96);
  font-size: 12px;
  max-width: 640px;
}

.v2-rows{ padding: 18px 0 26px 0; }

.v2-row{
  padding: 12px 0 18px 0;
}
.v2-row__hd{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.v2-row__title{
  margin:0;
  font-size: 18px;
  font-weight: 1000;
}
.v2-row__more{
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.v2-row__more:hover{
  color: #3b82f6;
  text-decoration: underline;
}

.v2-empty{
  padding: 24px 0;
  color: var(--muted);
}

.v-top{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 10px 0;
}
.v-top__h1{
  margin:0;
  font-size: 26px;
  font-weight: 1000;
  letter-spacing: .2px;
}
.v-top__sub{
  margin: 6px 0 0 0;
  font-size: 13px;
  color: var(--muted);
}
.v-top__tools{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
@media (max-width: 720px){
  .v-top{ flex-direction: column; align-items:flex-start; }
  .v-top__tools{ justify-content:flex-start; }
}

.v-chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #181824;
  border: 1px solid #1f2937;
  color: rgba(229,231,235,.9);
  transition: transform .12s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.v-chip:hover{
  transform: translateY(-1px);
  background: #111827;
  border-color: #374151;
  box-shadow: 0 12px 28px rgba(0,0,0,.75);
}
.v-chip.is-active{
  color:#f9fafb;
  background: #111827;
  border-color: #3b82f6;
}

.v-breadcrumb{
  display:flex;
  align-items:center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.v-breadcrumb a{ color: var(--muted); font-weight: 850; }
.v-breadcrumb a:hover{ color: var(--text); }

.v-section{ margin-top: 14px; }
.v-section__hd{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin: 10px 0 8px 0;
  gap: 12px;
}
.v-section__title{
  margin:0;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .2px;
  display:flex;
  align-items:center;
  gap: 8px;
}
.v-section__title::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #3b82f6;
}
.v-section__meta{
  color: var(--muted);
  font-size: 12px;
}

.v-grid__inner{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1200px){ .v-grid__inner{ grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (max-width: 980px){ .v-grid__inner{ grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 680px){ .v-grid__inner{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 440px){ .v-grid__inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.v-grid--large .v-grid__inner{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1200px){ .v-grid--large .v-grid__inner{ grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (max-width: 980px){ .v-grid--large .v-grid__inner{ grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 680px){ .v-grid--large .v-grid__inner{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 440px){ .v-grid--large .v-grid__inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.v-card{
  border-radius: var(--radius2);
  background: #14141f;
  border: 1px solid #111827;
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .14s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.v-card:hover{
  transform: translateY(-3px);
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(0,0,0,.85);
  background: #111827;
}
@media (hover:none){
  .v-card:hover{ transform:none; box-shadow: var(--shadow2); }
}

/* Media */
.v-card__media{ display:block; background: #000; }
.v-card__img,
.v-card__img--placeholder{
  width:100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display:block;
}
.v-card__img--placeholder{
  background:#000;
}

/* Body */
.v-card__body{
  padding: 9px 9px 10px 9px;
}
.v-card__title{
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: 34px;
}
.v-card__meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--muted2);
}
.v-card__metaL,
.v-card__metaR{
  display:flex;
  align-items:center;
  gap: 6px;
  min-width: 0;
}

/* meta pill */
.v-meta__pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #181824;
  border: 1px solid #1f2937;
  color: rgba(229,231,235,.9);
  font-weight: 900;
  max-width: 160px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: transform .12s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.v-meta__pill:hover{
  background: #111827;
  border-color: #4b5563;
  box-shadow: 0 10px 24px rgba(0,0,0,.75);
  transform: translateY(-1px);
}
.v-meta__item{ white-space: nowrap; }

.v-meta__item--hot{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(239,68,68,.16);
  border: 1px solid rgba(239,68,68,.4);
  color: rgba(254,242,242,1);
  font-weight: 900;
}

/* Empty */
.v-empty{
  padding: 32px 16px;
  border-radius: var(--radius2);
  border: 1px dashed rgba(55,65,81,.9);
  background: #101018;
  text-align:center;
}
.v-empty__title{
  margin: 0 0 6px 0;
  font-weight: 1000;
}

/* Compact list mode */
.v-grid--compact .v-grid__inner{
  grid-template-columns: 1fr;
  gap: 10px;
}
.v-grid--compact .v-card{
  display:grid;
  grid-template-columns: 168px 1fr;
  gap: 10px;
  align-items: stretch;
  border-radius: 14px;
}
.v-grid--compact .v-card__media{
  margin: 8px 0 8px 8px;
  border-radius: 10px;
  overflow:hidden;
}
.v-grid--compact .v-card__body{
  padding: 8px 10px 8px 0;
}
.v-grid--compact .v-card__title{
  font-size: 13px;
  margin-bottom: 6px;
  min-height: unset;
}
.v-grid--compact .v-meta__pill{
  max-width: 120px;
  padding: 4px 7px;
}

@media (max-width: 980px){
  .v-grid--compact .v-card{ grid-template-columns: 1fr; }
  .v-grid--compact .v-card__media{ margin:0; border-radius: 0; }
  .v-grid--compact .v-card__body{ padding: 8px 10px 10px 10px; }
}

/* ============ Pager ============ */
.v-pager{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}
.v-pager__inner{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:center;
  width: 100%;
}

/* Full pagination (desktop) */
.pagination{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:center;
  padding: 8px 10px;
  border-radius: 16px;
  background: #14141f;
  border: 1px solid #1f2937;
  box-shadow: 0 16px 40px rgba(0,0,0,.8);
}

.pagination a,
.pagination span,
.pagination em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
  color: rgba(229,231,235,.9);
  background: #181824;
  border: 1px solid #1f2937;
  transition: transform .12s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.pagination a:hover{
  transform: translateY(-1px);
  background: #111827;
  border-color: #374151;
  box-shadow: 0 12px 28px rgba(0,0,0,.75);
}
.pagination em.current,
.pagination span.current{
  color: #f9fafb;
  background: #1d4ed8;
  border-color: #3b82f6;
  box-shadow: 0 14px 34px rgba(37,99,235,.85);
}
.pagination .disabled{
  opacity: .4;
  box-shadow: none;
}
.pagination .gap{
  background: transparent;
  border-color: transparent;
  min-width: auto;
  padding: 0 4px;
  opacity: .55;
}

/* Jump to page */
.v-pager__jump{
  display:flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #181824;
  border: 1px solid #1f2937;
  box-shadow: 0 12px 30px rgba(0,0,0,.75);
}
.v-pager__jump label{
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
}
.v-pager__jump input{
  width: 80px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #050509;
  color: var(--text);
  outline:none;
}
.v-pager__jump input:focus{ box-shadow: var(--focus); }
.v-pager__jump button{
  border:0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #3b82f6;
  color:#f9fafb;
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(37,99,235,.8);
}
.v-pager__jump button:hover{ filter: brightness(1.05); }

/* Mini pagination (mobile) */
.pagination--mini { display: none; }
@media (max-width: 768px) {
  .pagination--full { display: none; }
  .pagination--mini { display: block; }

  .pagination{
    padding: 8px 8px;
    border-radius: 14px;
  }
  .pagination a,
  .pagination span,
  .pagination em{
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    padding: 0 8px;
  }
}

/* ============ Play Layout ============ */
.v-layout--play{
  display:grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items:start;
  margin-top: 10px;
}
@media (max-width: 980px){ .v-layout--play{ grid-template-columns: 1fr; } }

/* Player card */
.v-playerpro{
  border-radius: var(--radius2);
  border: 1px solid #111827;
  background: #050509;
  box-shadow: 0 20px 50px rgba(0,0,0,.9);
  overflow:hidden;
}
.v-playerpro__stage{
  position: relative;
  background: #000;
}
.v-playerpro__video{
  width:100%;
  aspect-ratio: 16/9;
  background:#000;
}

.v-playerpro__bar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px;
  border-top: 1px solid #111827;
  background: #101018;
}
.v-playerpro__left{
  display:flex;
  align-items:center;
  gap: 8px;
  min-width: 150px;
}
.v-playerpro__right{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.v-pill{
  display:inline-flex;
  align-items:center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(22,163,74,.5);
  color: #bbf7d0;
  font-weight: 900;
  font-size: 11px;
}

.v-ctl{
  display:flex;
  align-items:center;
  gap: 6px;
}
.v-ctl__label{
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
}
.v-select{
  appearance:none;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #050509;
  color: var(--text);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  outline:none;
}
.v-select:focus{ box-shadow: var(--focus); }

.v-btn{
  appearance:none;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #050509;
  color: var(--text);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.v-btn:hover{
  transform: translateY(-1px);
  background: #111827;
  border-color: #374151;
  box-shadow: 0 10px 26px rgba(0,0,0,.75);
}
.v-btn:focus{
  outline:none;
  box-shadow: var(--focus);
}

@media (max-width: 560px){
  .v-playerpro__left{ min-width: unset; }
  .v-ctl__label{ display:none; }
}

/* overlay in player */
.v-playerpro__overlay{ pointer-events: none !important; }

/* ============ Aside Compact Grid tweaks ============ */
@media (max-width: 1000px){
  .v-aside .v-grid--compact .v-grid__inner{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
  }
  .v-aside .v-grid--compact .v-card{ display: block !important; }
  .v-aside .v-grid--compact .v-card__media{
    margin: 0 !important;
    border-radius: 10px;
    overflow:hidden;
  }
  .v-aside .v-grid--compact .v-card__body{
    padding: 7px 7px 9px;
  }
  .v-aside .v-grid--compact .v-card__title{
    font-size: 12px;
    margin-bottom: 5px;
    -webkit-line-clamp: 2;
  }
  .v-aside .v-grid--compact .v-meta__pill{
    font-size: 11px;
    padding: 4px 6px;
  }
}
@media (max-width: 680px){
  .v-aside .v-grid--compact .v-grid__inner{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ============ Footer ============ */
.s-foot{
  margin-top: 26px;
  border-top: 1px solid #111827;
  background: #050509;
}
.s-foot__inner{ padding: 16px 0; }
.s-foot__line{
  margin: 0 0 4px 0;
  color: var(--muted);
}
.s-foot__site{
  font-weight: 1000;
  color: var(--text);
}
.s-foot__sep{
  margin: 0 8px;
  color: var(--muted2);
}
.s-foot__info{
  color: var(--muted);
}

/* Friendly links */
.s-fl{
  width: 100%;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 8px;
  padding: 8px 0 4px 0;
}
.s-fl__item{
  width: clamp(120px, 18vw, 190px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: #101018;
  border: 1px solid #111827;
  color: rgba(229,231,235,.9);
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform .12s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.s-fl__item:hover{
  background: #111827;
  border-color: #3b82f6;
  box-shadow: 0 10px 26px rgba(0,0,0,.75);
  transform: translateY(-1px);
}
.s-fl__txt{
  display:inline-block;
  max-width:100%;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* Small utility */
.u-hidden{ display:none !important; }
.u-center{ display:flex; align-items:center; justify-content:center; }
.s-head__terms{
  width: 100%;
  margin: 8px 0 2px 0;
  display:flex;
  flex-direction: column;
  align-items:center;      /* 水平居中 */
  justify-content:center;  /* 垂直方向内容也居中，可选 */
  gap: 8px;
  text-align:center;       /* 文本居中 */
}

.s-head__termsList{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;  /* 内部项居中 */
  align-items:center;
  gap: 10px 12px;
}
