:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --accent1:#ff6a5d;
  --accent2:#ffb36b;
  --pillShadow: 0 10px 26px rgba(255,106,93,.20);
  --cardShadow: 0 10px 26px rgba(0,0,0,.06);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
.wrap{max-width:980px;margin:0 auto}
.topbar{
  height:64px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 16px;
  border-bottom:1px solid var(--line);
}
.brand{display:flex;align-items:center;gap:10px}
.brand img{height:32px}
.iconBtn{
  width:44px;height:44px;border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;place-items:center;
  cursor:pointer;
}
.iconBtn:hover{box-shadow:var(--cardShadow)}
.hero{
  position:relative;
}
.cover{
  width:100%;
  height:280px;
  overflow:hidden;
}
.cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.profileRow{
  position:relative;
  padding:0 16px;
  display:flex;
  justify-content:center;
}
.profileCard{
  width:min(920px, 100%);
  background:#fff;
  margin-top:-86px;
  border-radius:22px;
  box-shadow:var(--cardShadow);
  padding:18px 18px 22px;
  border:1px solid rgba(229,231,235,.75);
}
.profileHead{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
  flex-wrap:wrap;
}
.avatarWrap{
  position:relative;
  width:112px;height:112px;
  border-radius:999px;
  padding:6px;
  background: conic-gradient(from 240deg, #ff3b30, #ff8a65, #ff3b30);
}
.avatar{
  width:100%;height:100%;
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  border:4px solid #fff;
}
.avatar img{width:100%;height:100%;object-fit:cover;display:block}
.live{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-10px;
  background:#ff3b30;
  color:#fff;
  font-weight:800;
  font-size:11px;
  padding:5px 10px;
  border-radius:999px;
  border:3px solid #fff;
  letter-spacing:.2px;
}
.nameBlock{min-width:320px;max-width:560px}
.name{
  margin-top:6px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.02em;
}
.handle{color:var(--muted);font-weight:650;margin-top:2px}
.bio{
  margin-top:10px;
  color:#475569;
  line-height:1.45;
  font-size:14px;
}
.counters{
  margin-top:12px;
  display:flex;
  justify-content:flex-end;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}
.sectionTitle{
  text-align:center;
  margin:18px 0 10px;
  font-weight:900;
  letter-spacing:.12em;
  color:#334155;
  font-size:13px;
}
.plans{
  display:grid;
  gap:12px;
  max-width:820px;
  margin:0 auto;
}
.planBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  height:52px;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  border:none;
  cursor:pointer;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow: var(--pillShadow);
  letter-spacing:.2px;
}
.planBtn:hover{transform:translateY(-1px)}
.planNote{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  margin-top:6px;
}
.mediaMeta{
  display:flex;
  justify-content:flex-end;
  padding:16px 18px 0;
  color:var(--muted);
  font-weight:650;
}
.videoWrap{
  padding:10px 18px 22px;
}
.videoCard{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0b0b0b;
  aspect-ratio:16/9;
  position:relative;
}
.videoCard .placeholder{
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,106,93,.35), rgba(255,179,107,.25)),
              radial-gradient(700px 340px at 20% 20%, rgba(255,255,255,.12), transparent 55%),
              #111;
}
.videoCard .lock{
  position:absolute; inset:0;
  display:grid; place-items:center;
  background: rgba(0,0,0,.35);
}
.lockBox{
  width:min(520px, calc(100% - 28px));
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.20);
  border-radius:18px;
  color:#fff;
  padding:16px;
  text-align:center;
  backdrop-filter: blur(10px);
}
.lockBox h3{margin:0 0 6px;font-size:16px}
.lockBox p{margin:0;color:rgba(255,255,255,.82);font-size:13.5px;line-height:1.45}
.lockRow{margin-top:12px;display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.smallBtn{
  height:40px;padding:0 14px;border-radius:999px;border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.10);color:#fff;font-weight:800;cursor:pointer;
}
.smallBtn.primary{
  border:none;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}
.footer{
  border-top:1px solid var(--line);
  padding:18px 16px 26px;
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
  color:var(--muted);font-size:13px;
}
.footer a{color:#475569;font-weight:650}
@media (max-width:720px){
  .counters{justify-content:center}
  .nameBlock{min-width:unset}
}


/* Preview image (blurred placeholder) */
.videoCard .previewImg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
