/* ==========================================================================
   VPNFN · streaming.css
   观影解锁页专属样式:装饰连线带、两列对照、收尾链接行。
   只引用 :root 设计令牌,不重复定义共享组件样式。
   ========================================================================== */

.topo-band{
  padding-block:6px 0;
  overflow-x:clip;
  max-width:100%;
}
.topo-lines{
  display:block;
  width:100%;
  max-width:960px;
  height:auto;
  margin-inline:auto;
  opacity:.7;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  min-width:0;
}
.two-col>*{min-width:0}
.two-col .panel h3{margin:0 0 10px}
.two-col .panel p{font-size:15px;line-height:1.75;color:var(--muted);margin:0}

.link-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:20px;
}

@media (max-width:900px){
  .two-col{grid-template-columns:1fr}
}

@media (max-width:640px){
  .topo-lines{opacity:.55}
  .link-row .btn{width:100%}
}