:root {
  --bg:#060606;
  --card:#232323;
  --card2:#090909;
  --text:#f2f2f5;
  --soft:#9a9aa6;
  --border:#26262f;
  --accent:#bb6bf2;
  --accent2:#ff6a00;
  --nav-h:64px;
  --side-w:240px 
}
* {
  box-sizing:border-box
}
html,
body {
  margin:0;
  padding:0;
  min-height:100%
}
body {
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,sans-serif;
  -webkit-font-smoothing:antialiased
}
a {
  color:inherit;
  text-decoration:none
}
.spinner {
  width:32px;
  height:32px;
  border:3px solid rgba(255,255,255,.15);
  border-top-color:var(--accent);
  border-radius:50%;
  animation:spin .8s linear infinite;
  margin:50px auto
}
@keyframes spin {
  to {
    transform:rotate(360deg)
  }
}
.hidden {
  display:none!important
}
.muted {
  color:var(--soft)
}
.pad {
  padding:16px
}
.pad.center {
  display:grid;
  place-items:center;
  min-height:60vh
}
.toast {
  position:fixed;
  left:50%;
  bottom:calc(var(--nav-h) + 16px);
  transform:translate(-50%);
  background:#111;
  border:1px solid var(--border);
  color:#fff;
  padding:11px 18px;
  border-radius:999px;
  font-size:14px;
  z-index:300;
  box-shadow:0 8px 30px #00000080;
  max-width:90vw;
  text-align:center
}
.toast.danger {
  background:#e5202e;
  border-color:#e5202e
}
.btn-primary {
  border:none;
  cursor:pointer;
  background:linear-gradient(120deg,#ff10a2,#f231b9);
  color:#fff;
  font-weight:800;
  font-size:15px;
  padding:12px 22px;
  border-radius:999px;
  box-shadow:0 8px 22px #ff2d7e66;
  text-align:center
}
.btn-primary.big {
  width:100%;
  padding:16px;
  font-size:16px;
  margin-top:14px
}
.btn-primary.stop {
  background:#e5202e;
  box-shadow:none
}
.btn-primary.tip {
  display:inline-block;
  margin:6px 0
}
.btn-ghost {
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  padding:11px 18px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  text-align:center
}
.btn-ghost.sm {
  padding:6px 12px;
  font-size:12px
}
.in {
  width:100%;
  border:1px solid var(--border);
  background:var(--card2);
  color:var(--text);
  border-radius:12px;
  padding:13px 14px;
  margin-bottom:10px;
  font-size:15px;
  font-family:inherit
}
textarea.in {
  min-height:70px;
  resize:vertical
}
.auth {
  min-height:100dvh;
  display:grid;
  place-items:center;
  padding:20px;
  background:radial-gradient(700px 400px at 80% -5%,rgba(255,45,126,.22),transparent 60%),var(--bg)
}
.auth-card {
  width:100%;
  max-width:360px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px
}
.auth-logo {
  font-weight:900;
  font-size:30px;
  text-align:center
}
.auth-logo span {
  color:var(--accent)
}
.auth-sub {
  text-align:center;
  color:var(--soft);
  font-size:13px;
  margin:2px 0 18px
}
.auth-tabs {
  display:flex;
  background:var(--card2);
  border-radius:999px;
  padding:4px;
  margin-bottom:16px
}
.auth-tabs button {
  flex:1;
  border:none;
  background:transparent;
  color:var(--soft);
  font-weight:700;
  padding:9px;
  border-radius:999px;
  cursor:pointer
}
.auth-tabs button.active {
  background:var(--accent);
  color:#fff
}
.auth-err {
  color:#ff6b6b;
  font-size:13px;
  min-height:16px;
  margin-bottom:6px;
  text-align:center
}
#form .btn-primary {
  width:100%;
  margin-top:4px
}
.gender-pick {
  display:flex;
  gap:8px;
  margin-bottom:10px
}
.gp {
  flex:1;
  border:1px solid var(--border);
  background:var(--card2);
  color:var(--soft);
  font-weight:700;
  padding:12px 8px;
  border-radius:12px;
  cursor:pointer;
  font-size:13px
}
.gp.sel.f {
  background:#ff5fb0;
  color:#fff;
  border-color:#ff5fb0
}
.gp.sel.m {
  background:#3aa0ff;
  color:#fff;
  border-color:#3aa0ff
}
.shell-main {
  min-height:100dvh;
  padding-bottom:var(--nav-h)
}
.side-nav {
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  width:var(--side-w);
  z-index:60;
  background:#101017;
  border-right:1px solid var(--border);
  padding:16px 12px;
  display:flex;
  flex-direction:column;
  transform:translate(-100%);
  transition:transform .22s ease
}
.side-nav.open {
  transform:translate(0);
  box-shadow:0 10px 40px #00000080
}
.side-brand {
  font-weight:900;
  font-size:22px;
  padding:6px 10px 16px
}
.side-brand span {
  color:var(--accent)
}
.side-link {
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:12px;
  color:var(--soft);
  font-weight:700;
  font-size:15px
}
.side-link:hover {
  background:var(--card2);
  color:#fff
}
.side-link.active {
  background:#ff2d7e29;
  color:#fff
}
.sl-ic {
  width:22px;
  text-align:center;
  font-size:16px
}
.side-foot {
  margin-top:auto;
  border-top:1px solid var(--border);
  padding-top:10px;
  display:flex;
  align-items:center;
  gap:8px
}
.side-user {
  display:flex;
  align-items:center;
  gap:9px;
  flex:1;
  color:#fff;
  font-weight:700;
  overflow:hidden
}
.side-user img {
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover
}
.side-user span {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.side-out {
  border:1px solid var(--border);
  background:transparent;
  color:var(--soft);
  border-radius:10px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:700
}
.side-scrim {
  position:fixed;
  inset:0;
  background:#00000080;
  z-index:55
}
.mob-burger {
  position:fixed;
  top:10px;
  left:10px;
  z-index:40;
  width:40px;
  height:40px;
  border-radius:12px;
  border:none;
  background:#14141ccc;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  backdrop-filter:blur(6px)
}
.pk-strip {
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding:10px 14px 6px 58px;
  -webkit-overflow-scrolling:touch
}
.pk-strip::-webkit-scrollbar {
  display:none
}
.pk-strip-empty {
  color:var(--soft);
  font-size:13px;
  padding:14px
}
.pk-story {
  flex:none;
  border:none;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  width:66px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px
}
.pk-story-av {
  width:60px;
  height:60px;
  border-radius:50%;
  padding:3px;
  background:linear-gradient(120deg,var(--accent2),var(--accent))
}
.pk-story.active .pk-story-av {
  background:#fff
}
.pk-story-av img {
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--bg);
  display:block
}
.pk-story-name {
  font-size:11px;
  color:var(--soft);
  max-width:64px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.pk-stage {
  padding:4px 12px 12px
}
.pk-card {
  position:relative;
  width:100%;
  max-width:500px;
  margin:0 auto;
  aspect-ratio:9/16;
  max-height:calc(100dvh - var(--nav-h) - 120px);
  background:#000;
  border-radius:18px;
  overflow:hidden
}
#pk-video {
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000
}
.pk-loading {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#bbb;
  font-size:14px
}
.pk-watermark {
  position:absolute;
  top:10px;
  left:12px;
  z-index:5;
  font-weight:900;
  font-size:15px;
  color:#fff;
  opacity:.85;
  text-shadow:0 1px 4px rgba(0,0,0,.6);
  pointer-events:none
}
.pk-watermark span {
  color:var(--accent)
}
.pk-top-bar {
  position:absolute;
  top:0;
  left:0;
  right:0;
  display:flex;
  align-items:center;
  gap:8px;
  padding:34px 12px 10px;
  z-index:4;
  background:linear-gradient(to bottom,rgba(0,0,0,.65),transparent)
}
.pk-streamer {
  display:flex;
  align-items:center;
  gap:8px;
  background:#00000059;
  padding:4px 10px 4px 4px;
  border-radius:999px
}
.pk-streamer img {
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff
}
.pk-str-name {
  display:flex;
  flex-direction:column;
  line-height:1.1
}
.pk-str-name b {
  font-size:13px
}
.pk-str-name small {
  font-size:10px;
  color:#ffffffb3
}
.pk-views {
  margin-left:auto;
  color:#fff;
  font-size:13px;
  font-weight:700;
  background:#0006;
  padding:5px 10px;
  border-radius:999px
}
.pk-follow {
  border:none;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:7px 14px;
  border-radius:999px;
  cursor:pointer
}
.pk-unmute {
  position:absolute;
  left:50%;
  top:48%;
  transform:translate(-50%);
  z-index:6;
  border:none;
  background:#0009;
  color:#fff;
  font-weight:700;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer
}
.pk-rail {
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:5
}
.pk-rail-btn {
  border:none;
  background:#00000073;
  color:#fff;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px
}
.pk-rail-btn.gift {
  background:linear-gradient(120deg,var(--accent2),var(--accent))
}
.pk-bottom {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:10px;
  z-index:4;
  background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
  display:flex;
  flex-direction:column;
  gap:8px
}
.pk-chat {
  max-height:34%;
  min-height:0;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  gap:3px
}
.pk-chat::-webkit-scrollbar {
  display:none
}
.pk-cmsg {
  font-size:13px;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.8)
}
.pk-cmsg b {
  color:#ff9ecb;
  margin-right:4px
}
.pk-compose {
  display:flex;
  gap:8px
}
.pk-compose input {
  flex:1;
  border:none;
  border-radius:999px;
  padding:10px 14px;
  background:#ffffff29;
  color:#fff;
  font-size:14px
}
.pk-compose input::placeholder {
  color:#fff9
}
.pk-compose button {
  flex:none;
  width:40px;
  border:none;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer
}
.pk-empty {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  color:var(--soft);
  padding:60px 20px;
  text-align:center
}
.pk-empty div {
  font-size:44px
}
.golive-wrap {
  max-width:440px;
  margin:0 auto;
  padding:16px
}
.gl-title {
  text-align:center;
  font-size:20px
}
.gl-card {
  position:relative;
  aspect-ratio:3/4;
  background:#000;
  border-radius:18px;
  overflow:hidden
}
#gl-video {
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scaleX(-1)
}
.gl-overlay {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:var(--soft);
  text-align:center;
  padding:20px
}
.gl-views {
  position:absolute;
  top:10px;
  right:12px;
  z-index:3;
  background:#00000080;
  color:#fff;
  font-weight:700;
  font-size:13px;
  padding:5px 10px;
  border-radius:999px
}
.gl-hint {
  text-align:center;
  color:var(--soft);
  font-size:12px;
  margin-top:10px
}
.pf {
  max-width:460px;
  margin:0 auto;
  padding:24px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center
}
.pf-av {
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--border)
}
.pf-av.f {
  border-color:#ff5fb0
}
.pf-av.m {
  border-color:#3aa0ff
}
.pf h2 {
  margin:8px 0 0;
  display:flex;
  align-items:center;
  gap:8px
}
.pf-age {
  background:var(--card2);
  font-size:14px;
  font-weight:800;
  padding:2px 10px;
  border-radius:999px
}
.pf-g.f {
  color:#ff5fb0
}
.pf-g.m {
  color:#3aa0ff
}
.pf-handle {
  color:var(--soft);
  font-size:14px
}
.pf-on {
  color:#22c55e
}
.pf-bio {
  color:var(--text);
  max-width:400px;
  line-height:1.5
}
.pf-photos {
  display:flex;
  gap:8px;
  margin:6px 0
}
.pf-photos img {
  width:130px;
  height:170px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border)
}
.pf-actions {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:8px
}
.pf.edit {
  align-items:stretch;
  text-align:left
}
.pf.edit .pf-av {
  align-self:center
}
.pf-upload {
  align-self:center;
  background:var(--card2);
  border:1px solid var(--border);
  padding:9px 16px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  margin-bottom:6px
}
.ev-photos {
  display:flex;
  gap:10px;
  justify-content:center;
  margin-bottom:10px
}
.ev-photo {
  width:110px;
  height:150px;
  border:1px dashed var(--border);
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  display:flex
}
.ev-photo span {
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--soft);
  font-size:13px
}
.ev-photo img {
  width:100%;
  height:100%;
  object-fit:cover
}
.dm-row {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border-radius:12px
}
.dm-row:hover {
  background:var(--card2)
}
.dm-row img {
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover
}
.dm-row div {
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column
}
.dm-row b {
  font-size:14px
}
.dm-row span {
  font-size:12px;
  color:var(--soft);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.dm-un {
  background:var(--accent);
  color:#fff;
  font-size:11px;
  font-weight:800;
  padding:2px 7px;
  border-radius:999px
}
.dm {
  display:flex;
  flex-direction:column;
  height:calc(100dvh - var(--nav-h))
}
.dm-head {
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-bottom:1px solid var(--border)
}
.dm-back {
  font-size:22px
}
.dm-peer {
  display:flex;
  align-items:center;
  gap:8px
}
.dm-peer img {
  width:32px;
  height:32px;
  border-radius:50%;
  object-fit:cover
}
.dm-msgs {
  flex:1;
  overflow-y:auto;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px
}
.dm-msg {
  max-width:75%;
  padding:9px 13px;
  border-radius:16px;
  background:var(--card2);
  align-self:flex-start;
  font-size:14px;
  line-height:1.4;
  word-break:break-word
}
.dm-msg.me {
  align-self:flex-end;
  background:linear-gradient(120deg,var(--accent2),var(--accent));
  color:#fff
}
.dm-compose {
  display:flex;
  gap:8px;
  padding:10px;
  border-top:1px solid var(--border)
}
.dm-compose input {
  flex:1;
  border:1px solid var(--border);
  border-radius:999px;
  padding:11px 15px;
  background:var(--card2);
  color:var(--text)
}
.dm-compose button {
  flex:none;
  width:44px;
  border:none;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer
}
.ad-row {
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-bottom:1px solid var(--border)
}
.ad-row span {
  flex:1
}
.ad-av {
  width:32px;
  height:32px;
  border-radius:50%;
  object-fit:cover
}
h3 {
  font-size:15px
}
.simple {
  text-align:center;
  max-width:360px
}
.bottom-nav {
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  height:var(--nav-h);
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-around;
  background:#0c0c12f7;
  border-top:1px solid var(--border);
  backdrop-filter:blur(8px);
  padding-bottom:env(safe-area-inset-bottom)
}
.nav-item {
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  color:var(--soft);
  font-size:11px;
  font-weight:600
}
.nav-item.active {
  color:#fff
}
.ni-ic {
  font-size:19px
}
.nav-live .live-fab {
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  margin-top:-16px;
  border-radius:50%;
  background:linear-gradient(120deg,var(--accent2),var(--accent));
  color:#fff;
  box-shadow:0 6px 18px #ff2d7e80;
  font-size:20px
}
.nav-live.active {
  color:var(--accent)
}
@media(min-width:1000px) {
  .bottom-nav {
    display:none
  }
  .pk-strip {
    padding-left:14px
  }
  .pk-card {
    max-height:calc(100dvh - 130px)
  }
  .dm {
    height:100dvh
  }
}
.side-nav {
  transform:translate(-100%)!important;
  box-shadow:0 10px 40px #00000080;
  z-index:80
}
.side-nav.open {
  transform:translate(0)!important
}
.shell-main {
  margin-left:0!important
}
.side-scrim {
  z-index:75
}
.gl-chat {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:4;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
  background:linear-gradient(to top,rgba(0,0,0,.9),transparent)
}
.gl-chat .pk-chat {
  max-height:130px;
  min-height:0;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  gap:3px
}
.gl-chat .pk-chat::-webkit-scrollbar {
  display:none
}
.gl-chat .pk-compose {
  display:flex;
  gap:8px
}
.gl-chat .pk-compose input {
  flex:1;
  border:none;
  border-radius:999px;
  padding:10px 14px;
  background:#ffffff2e;
  color:#fff;
  font-size:14px
}
.gl-chat .pk-compose input::placeholder {
  color:#ffffffa6
}
.gl-chat .pk-compose button {
  flex:none;
  width:40px;
  border:none;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer
}
.gl-card {
  position:relative
}
.pk-cmsg.model b {
  color:#ff1f8f;
  font-weight:900
}
.pk-cmsg.model {
  text-shadow:0 1px 3px rgba(0,0,0,.9)
}
.pk-cmsg .crown {
  margin-right:3px;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,.6))
}
.ni-ic svg,
.live-fab svg {
  width:24px;
  height:24px;
  display:block
}
.nav-item {
  gap:3px
}
.pk-rail-btn svg {
  display:block
}
.auth {
  background:radial-gradient(900px 500px at 80% -10%,rgba(255,45,126,.28),transparent 60%),radial-gradient(700px 400px at 0% 110%,rgba(124,58,237,.28),transparent 60%),var(--bg)
}
.auth-card {
  box-shadow:0 30px 80px #00000080
}
.auth-model {
  display:block;
  text-align:center;
  margin-top:14px;
  color:var(--accent);
  font-weight:700;
  font-size:13px
}
.auth-note {
  text-align:center;
  color:var(--soft);
  font-size:12px;
  margin-top:12px
}
.auth-note a {
  color:var(--accent);
  font-weight:700
}
.pk-bottom {
  background:linear-gradient(to top,rgba(0,0,0,.6),transparent 92%)
}
.pk-chat {
  max-height:150px!important;
  justify-content:flex-end;
  -webkit-mask-image:linear-gradient(to top,#000 70%,transparent);
  mask-image:linear-gradient(to top,#000 70%,transparent)
}
.gl-chat {
  background:linear-gradient(to top,rgba(0,0,0,.6),transparent 92%)
}
.gl-chat .pk-chat {
  max-height:120px!important
}
.pk-cmsg {
  transition:opacity .4s ease
}
.pk-cmsg.fade {
  opacity:0
}
.landing {
  min-height:100dvh
}
.lp-hero {
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:38px 22px 0;
  position:relative;
  overflow:hidden;
  background:radial-gradient(900px 520px at 82% -8%,rgba(255,45,126,.35),transparent 60%),radial-gradient(760px 460px at 10% 8%,rgba(0,0,0,.4),transparent 60%),linear-gradient(180deg,#000,#000 70%,#0a0a0f)
}
.lp-logo {
  font-weight:900;
  font-size:clamp(40px,12vw,72px);
  letter-spacing:-.02em;
  line-height:1;
  background:linear-gradient(90deg,#bb6bf2,#7c3aed 45%,#bb6bf2);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.lp-title {
  font-size:clamp(28px,7vw,44px);
  font-weight:900;
  line-height:1.1;
  margin:26px 0 0;
  color:#fff;
  max-width:720px
}
.lp-title .grad {
  background:linear-gradient(90deg,#bb6bf2,#c68bee);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.lp-sub {
  color:#ffffffbf;
  font-size:clamp(14px,3.6vw,17px);
  margin:16px auto 0;
  max-width:440px;
  line-height:1.5
}
.lp-cta {
  display:flex;
  gap:12px;
  margin-top:26px;
  flex-wrap:wrap;
  justify-content:center
}
.lp-join {
  font-size:16px;
  padding:15px 34px
}
.lp-login {
  border:2px solid var(--accent);
  color:#fff;
  font-weight:800;
  padding:15px 30px;
  border-radius:999px;
  background:transparent
}
.lp-model-link {
  margin-top:16px
}
.lp-model-link a {
  color:#ffffffd9;
  font-weight:700;
  font-size:13px
}
.lp-phone {
  margin-top:34px;
  width:min(320px,80vw);
  aspect-ratio:9/17;
  border-radius:34px;
  padding:10px;
  background:linear-gradient(160deg,#2a2a3a,#111);
  box-shadow:0 30px 80px #ff2d7e47,0 10px 40px #0009;
  position:relative;
  display:none
}
.lp-phone-inner {
  width:100%;
  height:100%;
  border-radius:26px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(180deg,#2b1140,#120a1e);
  display:none
}
.lp-live-badge {
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:4px 12px;
  border-radius:999px
}
@media(min-width:900px) {
  .lp-hero {
    padding-top:70px
  }
  .lp-phone {
    margin-top:44px
  }
}
.pk-card:fullscreen {
  width:100vw;
  height:100vh;
  max-height:none;
  border-radius:0;
  aspect-ratio:auto;
  margin:0
}
.pk-card:-webkit-full-screen {
  width:100vw;
  height:100vh;
  max-height:none;
  border-radius:0;
  aspect-ratio:auto
}
.pk-card:fullscreen #pk-video,
.pk-card:-webkit-full-screen #pk-video {
  object-fit:contain
}
body.pk-fs-fallback {
  overflow:hidden
}
body.pk-fs-fallback .pk-card.pk-fs {
  position:fixed;
  inset:0;
  z-index:1000;
  width:100vw;
  height:100dvh;
  max-height:none;
  border-radius:0;
  aspect-ratio:auto;
  margin:0
}
body.pk-fs-fallback .pk-card.pk-fs #pk-video {
  object-fit:contain
}
.pk-card:fullscreen .pk-bottom,
.pk-card.pk-fs .pk-bottom {
  padding-bottom:calc(14px + env(safe-area-inset-bottom))
}
.pk-card:fullscreen .pk-chat,
.pk-card.pk-fs .pk-chat {
  max-height:180px!important
}
.pk-card:fullscreen .pk-rail,
.pk-card.pk-fs .pk-rail {
  right:14px
}
@media(min-width:1000px) {
  .pk-card:fullscreen {
    background:#000
  }
  .pk-card:fullscreen #pk-video {
    object-fit:contain
  }
}
.disc {
  padding:8px 10px 14px
}
.disc-stage {
  display:none
}
.disc-tile {
  position:relative;
  border:none;
  padding:0;
  background:var(--card2);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:3/4;
  text-align:left
}
.disc-tile.active {
  outline:3px solid var(--accent)
}
.dt-img {
  position:absolute;
  inset:0;
  display:block
}
.dt-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.dt-live {
  position:absolute;
  top:8px;
  left:8px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  font-size:10px;
  padding:3px 8px;
  border-radius:999px;
  letter-spacing:.03em
}
.dt-meta {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:22px 10px 9px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:8px;
  background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
  color:#fff
}
.dt-name {
  font-weight:700;
  font-size:13px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.dt-views {
  font-size:11px;
  color:#ffffffd9;
  flex:none
}
@media(max-width:380px) {
  .disc-grid {
    grid-template-columns:repeat(2,1fr)
  }
}
.watch-page {
  position:relative;
  min-height:100dvh;
  background:#000
}
.watch-page .pk-stage {
  padding:0
}
.watch-page .pk-card {
  max-width:none;
  width:100%;
  height:100dvh;
  max-height:100dvh;
  border-radius:0;
  aspect-ratio:auto
}
.watch-page #pk-video {
  object-fit:cover
}
.watch-back {
  position:fixed;
  top:12px;
  left:12px;
  z-index:30;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#00000080;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px
}
@media(min-width:1000px) {
  .disc {
    display:flex;
    gap:16px;
    height:calc(100dvh + -0px);
    padding:16px
  }
  .disc-grid {
    flex:1;
    grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
    gap:12px;
    align-content:start;
    overflow-y:auto;
    grid-auto-rows:min-content
  }
  .disc.split .disc-grid {
    max-width:calc(100% - 440px)
  }
  .disc-stage {
    display:block;
    flex:none;
    width:420px
  }
  .disc.split .disc-stage .pk-card {
    max-height:calc(100dvh - 32px)
  }
  .disc:not(.split) .disc-stage {
    display:none
  }
  .disc-stage .pk-card {
    margin:0
  }
}
.pk-header {
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  align-items:center;
  gap:10px;
  height:56px;
  padding:0 12px;
  background:#ff10a2;
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border)
}
.hdr-burger {
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer
}
.hdr-logo {
  font-weight:900;
  font-size:22px;
  margin:0 auto;
  letter-spacing:1px;
  -webkit-background-clip:text;
  background-clip:text;
  color:#fff;
}
.hdr-cta {
  background:linear-gradient(120deg,var(--accent2),var(--accent));
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:9px 16px;
  border-radius:999px;
  white-space:nowrap
}
.mob-burger {
  display:none!important
}
.disc {
  padding:10px
}
.disc-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px
}
.disc-stage {
  display:none!important
}
@media(min-width:1000px) {
  .pk-header {
    padding:0 22px
  }
  .hdr-burger {
    display:none
  }
  .hdr-logo {
    margin:0;
    font-size:24px
  }
  .hdr-cta {
    margin-left:auto
  }
  .disc {
    display:block;
    padding:18px
  }
  .disc-grid {
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:16px
  }
  .disc-tile {
    aspect-ratio:3/4
  }
}
.vc {
  display:flex;
  flex-direction:column;
  height:calc(100dvh - 56px - var(--nav-h))
}
.vc-cams {
  flex:1;
  min-height:0;
  overflow-y:auto;
  padding:10px
}
.vc-cams-head {
  font-weight:800;
  font-size:13px;
  color:var(--soft);
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:8px
}
.vc-cams .disc-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px
}
.vc-chat {
  flex:none;
  height:38vh;
  display:flex;
  flex-direction:column;
  border-top:1px solid var(--border);
  background:#0d0d13
}
.vc-users {
  display:none
}
.disc-tile {
  position:relative;
  border:none;
  padding:0;
  background:var(--card2);
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:4/3;
  text-align:left
}
.dt-img {
  position:absolute;
  inset:0
}
.dt-img img {
  width:100%;
  height:100%;
  object-fit:cover
}
.dt-live {
  position:absolute;
  top:8px;
  left:8px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  font-size:10px;
  padding:3px 8px;
  border-radius:999px
}
.dt-v2 {
  position:absolute;
  top:8px;
  right:8px;
  background:#00000080;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:3px 8px;
  border-radius:999px
}
.dt-meta {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 10px 8px;
  background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
  color:#fff
}
.dt-name {
  font-weight:700;
  font-size:13px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  display:block
}
.cr-head {
  padding:8px 12px;
  font-weight:800;
  font-size:13px;
  border-bottom:1px solid var(--border);
  color:var(--soft)
}
.cr-msgs {
  flex:1;
  min-height:0;
  overflow-y:auto;
  padding:8px 12px;
  display:flex;
  flex-direction:column;
  gap:6px
}
.cr-msg {
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size:14px
}
.cr-msg img {
  width:26px;
  height:26px;
  border-radius:50%;
  object-fit:cover;
  flex:none
}
.cr-name {
  font-weight:700;
  color:#cbd5e1
}
.cr-msg.model .cr-name {
  color:#ff1f8f
}
.cr-gif {
  max-width:120px;
  border-radius:8px;
  display:block;
  margin-top:3px
}
.cr-sys {
  color:var(--soft);
  font-size:12px;
  text-align:center
}
.cr-compose {
  display:flex;
  gap:8px;
  padding:8px;
  border-top:1px solid var(--border)
}
.cr-compose button {
  flex:none;
  width:42px;
  border:none;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer
}
.vc-empty {
  color:var(--soft);
  padding:14px;
  font-size:13px
}
.vc-users-head {
  padding:10px 12px;
  font-weight:800;
  font-size:12px;
  color:var(--soft);
  text-transform:uppercase;
  letter-spacing:.06em;
  border-bottom:1px solid var(--border)
}
.vc-user {
  display:flex;
  align-items:center;
  gap:9px;
  padding:7px 12px;
  color:#fff
}
.vc-user:hover {
  background:var(--card2)
}
.vc-user img {
  width:30px;
  height:30px;
  border-radius:50%;
  object-fit:cover
}
.vc-uname {
  flex:1;
  font-size:13px;
  font-weight:600;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.vc-user.f .vc-uname {
  color:#bb6bf2
}
.vc-cam {
  cursor:pointer;
  color:#22c55e
}
.cam-win {
  position:fixed;
  z-index:92;
  background:#0d0d12;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 16px 44px #0009;
  display:flex;
  flex-direction:column;
  touch-action:none
}
.cw-head {
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 8px;
  background:#0d0d0d;
  cursor:grab;
  border-bottom:1px solid var(--border)
}
.cw-streamer {
  display:flex;
  align-items:center;
  gap:6px;
  color:#fff;
  font-size:12px;
  font-weight:700;
  max-width:45%;
  overflow:hidden
}
.cw-streamer img {
  width:26px;
  height:26px;
  border-radius:50%;
  object-fit:cover
}
.cw-streamer b {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.cw-views {
  font-size:11px;
  color:var(--soft);
  margin-left:auto
}
.cw-ic {
  width:30px;
  height:30px;
  border:none;
  border-radius:8px;
  background:#ffffff14;
  color:#fff;
  cursor:pointer
}
.cw-ic.gift {
  background:linear-gradient(120deg,var(--accent2),var(--accent))
}
.cw-body {
  position:relative;
  background:#000;
  aspect-ratio:4/3
}
#cw-video,
.cam-win #cw-video {
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000
}
.cw-loading {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#bbb;
  font-size:13px
}
.cw-unmute {
  position:absolute;
  left:50%;
  top:46%;
  transform:translate(-50%);
  border:none;
  background:#0009;
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  cursor:pointer;
  z-index:3
}
.cw-chat {
  position:absolute;
  left:0;
  right:0;
  bottom:44px;
  max-height:45%;
  overflow-y:auto;
  padding:6px 8px;
  display:flex;
  flex-direction:column;
  gap:2px;
  pointer-events:none;
  -webkit-mask-image:linear-gradient(to top,#000 70%,transparent);
  mask-image:linear-gradient(to top,#000 70%,transparent)
}
.cw-chat .pk-cmsg {
  font-size:12px;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.9)
}
.cw-compose {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  display:flex;
  gap:6px;
  padding:6px;
  background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
  z-index:3
}
.cw-compose input {
  flex:1;
  border:none;
  border-radius:999px;
  padding:8px 12px;
  background:#ffffff29;
  color:#fff;
  font-size:13px
}
.cw-compose button {
  flex:none;
  width:34px;
  border:none;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer
}
.cam-win.pk-fs,
.cam-win:fullscreen {
  position:fixed;
  inset:0;
  width:100vw!important;
  height:100dvh;
  border-radius:0;
  z-index:1000
}
.cam-win:fullscreen .cw-body,
.cam-win.pk-fs .cw-body {
  flex:1;
  aspect-ratio:auto
}
@media(min-width:1000px) {
  .vc {
    flex-direction:row;
    height:calc(100dvh - 56px)
  }
  .vc-cams {
    flex:1;
    border-right:1px solid var(--border)
  }
  .vc-cams .disc-grid {
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:12px
  }
  .vc-chat {
    flex:none;
    width:360px;
    height:auto;
    border-top:none;
    border-right:1px solid var(--border)
  }
  .vc-users {
    display:flex;
    flex-direction:column;
    flex:none;
    width:230px
  }
  .cam-win {
    width:380px!important
  }
}
.vc-main {
  flex:1;
  min-height:0;
  display:flex;
  background:#000;
  position:relative
}
.vc-main-empty {
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--soft);
  text-align:center;
  gap:8px;
  padding:24px
}
.crown-big {
  font-size:44px
}
.cam-view.docked .cw-body {
  flex:1;
  aspect-ratio:auto
}
.cam-view.docked .cw-video {
  object-fit:contain
}
.cam-view.cam-float {
  position:fixed;
  z-index:92;
  background:#0d0d12;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 16px 44px #0009;
  display:flex;
  flex-direction:column;
  touch-action:none
}
.cam-view.cam-float .cw-body {
  flex:1;
  aspect-ratio:auto
}
.cw-resize {
  position:absolute;
  right:0;
  bottom:0;
  width:22px;
  height:22px;
  cursor:nwse-resize;
  z-index:6;
  background:linear-gradient(135deg,transparent 55%,rgba(255,255,255,.5) 55% 63%,transparent 63% 71%,rgba(255,255,255,.5) 71% 79%,transparent 79%)
}
@media(max-width:999px) {
  .vc-main {
    min-height:44vh
  }
  .cam-view.cam-float {
    width:88vw!important
  }
}
.shell-main:has(.vc-full) {
  margin-left:0!important
}
.vc-full {
  display:flex;
  flex-direction:column;
  height:100dvh;
  margin:0
}
.vc-top {
  display:flex;
  align-items:center;
  gap:12px;
  height:52px;
  padding:0 14px;
  background:#111111f2;
  border-bottom:1px solid var(--border);
  flex:none
}
.vc-top .hdr-logo {
  margin:0;
  font-size:22px
}
.vc-golive {
  margin-left:auto;
  border:none;
  cursor:pointer;
  background:linear-gradient(120deg,#bb6bf2,#bb6bf2);
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:9px 18px;
  border-radius:999px
}
.vc-golive.live {
  background:#e5207c
}
.vc-users-toggle {
  border:1px solid var(--border);
  background:var(--card2);
  color:#fff;
  font-weight:700;
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer
}
.vc-body {
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column
}
.vc-main {
  flex:1;
  min-height:0;
  background:#000;
  display:flex;
  position:relative
}
.vc-main-empty {
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--soft);
  text-align:center;
  gap:8px
}
.cam-view.docked {
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column;
  background:#000;
  position:relative
}
.cam-view.docked .cw-body {
  flex:1;
  aspect-ratio:auto!important;
  min-height:0
}
.cam-view.docked .cw-video {
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000
}
.cam-view.self-cam .cw-video.self {
  transform:scaleX(-1)
}
.live-pill {
  background:var(--accent);
  color:#fff;
  font-weight:800;
  font-size:10px;
  padding:3px 8px;
  border-radius:999px;
  margin-left:6px
}
.vc-chat {
  flex:none;
  height:34vh;
  display:flex;
  flex-direction:column;
  background:#181818;
  border-top:1px solid var(--border)
}
.vc-users {
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  width:80vw;
  max-width:300px;
  background:#090909;
  border-left:1px solid var(--border);
  z-index:70;
  transform:translate(100%);
  transition:transform .2s ease;
  display:flex;
  flex-direction:column
}
.vc-users.open {
  transform:translate(0)
}
.vc-scrim {
  position:fixed;
  inset:0;
  background:#00000080;
  z-index:65;
  display:none
}
.vc-scrim.show {
  display:block
}
@media(min-width:1000px) {
  .vc-body {
    flex-direction:row
  }
  .vc-main {
    flex:1
  }
  .vc-chat {
    flex:none;
    width:340px;
    height:auto;
    border-top:none;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border)
  }
  .vc-users {
    position:static;
    transform:none;
    width:240px;
    max-width:none;
    transition:none
  }
  .vc-users-toggle {
    display:none
  }
  .vc-scrim {
    display:none!important
  }
  .cam-view.cam-float {
    width:420px!important
  }
}
.cw-chat,
.cw-compose {
  display:none!important
}
.cam-view.cam-float {
  width:440px
}
.cam-view.cam-float .cw-body {
  aspect-ratio:16/9!important;
  flex:none
}
.you-tag {
  font-size:10px;
  color:var(--soft);
  background:var(--card2);
  padding:1px 6px;
  border-radius:6px;
  margin-left:4px
}
@media(max-width:999px) {
  .vc-main {
    flex:none;
    height:38vh;
    min-height:200px
  }
  .vc-chat {
    flex:1;
    height:auto;
    min-height:0
  }
  .cam-view.cam-float {
    max-width:96vw
  }
  .cam-view.cam-float .cw-body {
    aspect-ratio:auto;
    flex:1
  }
}
@media(max-width:560px) {
  .vc-main {
    height:32vh
  }
}
.bottom-nav {
  display:none!important
}
.hdr-burger {
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:none
}
.cam-view.cam-float {
  position:fixed;
  z-index:92;
  background:#0d0d12;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  touch-action:none;
  user-select:none
}
.cam-view.cam-float .cw-head {
  touch-action:none;
  cursor:grab;
  flex:none
}
.cw-resize {
  position:absolute;
  right:0;
  bottom:0;
  width:26px;
  height:26px;
  cursor:nwse-resize;
  z-index:8;
  touch-action:none;
  background:linear-gradient(135deg,transparent 50%,rgba(255,255,255,.55) 50% 60%,transparent 60% 70%,rgba(255,255,255,.55) 70% 80%,transparent 80%)
}
@media(max-width:999px) {
  .vc-body {
    flex-direction:column
  }
  .vc-main {
    flex:none;
    height:35vh;
    min-height:190px
  }
  .vc-chat {
    flex:1;
    min-height:0;
    height:auto
  }
  .cr-msgs {
    flex:1;
    min-height:0
  }
  .cr-compose {
    position:sticky;
    bottom:0;
    background:#0d0d13
  }
  .cam-view.cam-float {
    width:86vw!important;
    height:56vw!important
  }
}
@media(max-width:560px) {
  .vc-main {
    height:30vh
  }
}
.cr-compose {
  padding-bottom:calc(8px + env(safe-area-inset-bottom))
}
@media(max-width:999px) {
  .cam-view.cam-float {
    width:86vw;
    height:auto
  }
}
.cw-resize {
  width:30px!important;
  height:30px!important;
  z-index:30!important;
  pointer-events:auto!important;
  touch-action:none
}
.cam-view.cam-float {
  overflow:visible
}
.cam-view.cam-float .cw-body {
  border-radius:0 0 14px 14px;
  overflow:hidden
}
.vc-users-head {
  position:relative;
  flex:none
}
.vc-users-list {
  flex:1;
  min-height:0;
  overflow-y:auto
}
.vc-user.clickable {
  cursor:pointer
}
.vc-user.clickable:hover {
  background:var(--card2)
}
.vc-cam {
  flex:none;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  background:#2b2529;
  color:#fff;
  border-radius:8px;
  cursor:pointer
}
.vc-user {
  min-height:44px
}
.cw-loading {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:#000
}
.cw-loading:before {
  content:"";
  width:46px;
  height:46px;
  border-radius:50%;
  border:4px solid rgba(255,45,126,.2);
  border-top-color:#ff2d7e;
  animation:spin .8s linear infinite
}
.cw-loading {
  font-size:0
}
.vc-main-empty .crown-big {
  font-size:44px
}
.cr-rules {
  font-size:11.5px;
  color:#cd99bb;
  background:#000;
  border-bottom:1px solid var(--border);
  padding:7px 12px;
  text-align:center;
  flex:none
}
.cr-compose {
  display:flex;
  gap:6px;
  align-items:center;
  padding:8px;
  border-top:1px solid var(--border);
  flex:none
}
.cr-ic {
  flex:none;
  border:none;
  background:var(--card2);
  color:#fff;
  width:36px;
  height:36px;
  border-radius:10px;
  cursor:pointer;
  font-size:15px;
  font-weight:800
}
.cr-compose input {
  flex:1;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  background:var(--card2);
  color:#fff
}
.cr-send {
  flex:none;
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer
}
.cr-panel {
  flex:none;
  max-height:230px;
  overflow-y:auto;
  border-top:1px solid var(--border);
  background:#0b0b10;
  padding:8px
}
.cr-emojis {
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:4px
}
.cr-emoji-b {
  border:none;
  background:transparent;
  font-size:20px;
  cursor:pointer;
  padding:4px;
  border-radius:8px
}
.cr-emoji-b:hover {
  background:var(--card2)
}
.cr-stickers,
.cr-gif-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px
}
.cr-sticker-b,
.cr-gif-b {
  border:none;
  background:var(--card2);
  border-radius:10px;
  cursor:pointer;
  padding:4px;
  aspect-ratio:1;
  overflow:hidden
}
.cr-sticker-b img,
.cr-gif-b img {
  width:100%;
  height:100%;
  object-fit:contain
}
.cr-gif-b img {
  object-fit:cover
}
.cr-gif-search {
  padding:0 2px 8px
}
.cr-gif-search input {
  width:100%;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  background:var(--card2);
  color:#fff
}
.cr-empty {
  color:var(--soft);
  padding:14px;
  grid-column:1/-1;
  text-align:center
}
.cr-sticker {
  max-width:120px;
  max-height:120px;
  display:block;
  margin-top:4px
}
.cr-gif {
  max-width:150px;
  border-radius:8px;
  display:block;
  margin-top:4px
}
.hdr-back {
  width:38px;
  height:38px;
  border:none;
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:none
}
.hdr-paid {
  background:linear-gradient(120deg,#000,#2d302f);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  white-space:nowrap
}
.hdr-vip {
  background:linear-gradient(120deg,#ef82ff,#a424fb);
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  white-space:nowrap
}
.vip-badge {
  background:linear-gradient(120deg,#f59e0b,#fbbf24);
  color:#3a2600;
  font-weight:900;
  font-size:9px;
  padding:1px 5px;
  border-radius:5px;
  margin-right:4px;
  vertical-align:middle
}
@media(max-width:720px) {
  .hdr-paid {
    display:none
  }
  .hdr-vip {
    font-size:11px;
    padding:7px 10px
  }
}
.landing-page {
  max-width:520px;
  margin:0 auto;
  padding:34px 20px;
  text-align:center;
  color:#fff
}
.landing-page .lp-logo {
  font-weight:900;
  font-size:34px;
  background:linear-gradient(90deg,#22d3ee,#7c3aed 45%,#ff2d7e);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.landing-page h1 {
  font-size:26px;
  margin:18px 0 8px
}
.landing-page .big {
  font-size:16px;
  color:#ddd
}
.landing-page .perks {
  list-style:none;
  padding:0;
  margin:20px 0;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-align:left
}
.landing-page .perks li {
  background:var(--card2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  font-weight:600
}
.landing-page .fine {
  color:var(--soft);
  font-size:12px;
  margin:14px 0
}
.landing-page .crown-big {
  font-size:52px
}
@media(max-width:999px) {
  .vc-main {
    height:33vh;
    min-height:180px
  }
  .cam-view.cam-float {
    touch-action:none
  }
}
.cam-view.cam-float {
  display:flex;
  flex-direction:column
}
.cam-view.cam-float .cw-body {
  flex:1!important;
  aspect-ratio:auto!important;
  min-height:0
}
.cam-view.cam-float .cw-video {
  width:100%;
  height:100%;
  object-fit:contain
}
.cw-resize {
  touch-action:none
}
html,
body,
#app,
.vc,
.vc-full,
.vc-body,
.shell,
.shell-main {
  max-width:100%;
  overflow-x:hidden
}
.vc-top {
  min-width:0
}
.hdr-logo {
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
@media(max-width:900px) {
  .hdr-paid,
  .hdr-vip {
    display:none!important
  }
  .vc-top {
    gap:8px;
    padding:0 10px
  }
  .vc-golive {
    padding:8px 14px;
    font-size:12px
  }
}
.cr-sticker {
  max-width:150px!important;
  max-height:150px!important
}
.cr-stickers {
  grid-template-columns:repeat(3,1fr);
  gap:8px
}
.cr-sticker-b {
  aspect-ratio:1
}
.cr-sticker-b img {
  width:100%;
  height:100%;
  object-fit:contain
}
.cam-view.cam-float {
  max-width:96vw;
  max-height:80vh
}
.vc-users,
.side-nav {
  max-width:88vw
}
.cr-msg .cr-sticker {
  max-width:190px!important;
  max-height:190px!important;
  width:auto;
  height:auto;
  display:block;
  margin-top:5px
}
@media(max-width:560px) {
  .cr-msg .cr-sticker {
    max-width:150px!important;
    max-height:150px!important
  }
}
.cr-stickers {
  grid-template-columns:repeat(4,1fr);
  gap:6px
}
.cr-sticker-b {
  aspect-ratio:1;
  padding:4px
}
.admin-wrap {
  max-width:820px;
  margin:0 auto
}
.ad-tabs {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin:12px 0
}
.ad-tab {
  border:1px solid var(--border);
  background:var(--card2);
  color:var(--soft);
  font-weight:700;
  padding:8px 14px;
  border-radius:999px;
  cursor:pointer
}
.ad-tab.active {
  background:var(--accent);
  color:#fff;
  border-color:var(--accent)
}
.ad-bar {
  margin-bottom:10px
}
.ad-row {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px;
  border-bottom:1px solid var(--border);
  flex-wrap:wrap
}
.ad-row span {
  flex:1;
  min-width:120px
}
.ad-av {
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
  flex:none
}
.ad-card {
  background:var(--card2);
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  margin-top:6px
}
.ad-card label {
  display:block;
  font-size:13px;
  color:var(--soft);
  margin:10px 0 4px;
  font-weight:700
}
.ad-check {
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0
}
.ad-botrow {
  display:flex;
  align-items:center;
  gap:12px
}
.ad-botav {
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover
}
.ad-banner-new {
  display:flex;
  gap:8px;
  align-items:center;
  margin:10px 0
}
.ad-banner-row {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 0;
  border-top:1px solid var(--border);
  flex-wrap:wrap
}
.ad-banner-row img {
  width:180px;
  height:40px;
  object-fit:cover;
  border-radius:6px;
  background:#000
}
.in.sm {
  padding:8px 10px;
  font-size:13px;
  flex:1;
  min-width:140px
}
.btn-ghost.sm.danger {
  border-color:#e5202e;
  color:#ff6b6b
}
.pk-banner {
  display:none
}
@media(min-width:1000px) {
  .pk-banner {
    display:flex;
    justify-content:center;
    align-items:center;
    background:#000;
    border-bottom:1px solid var(--border);
    padding:6px 0;
    flex:none
  }
  .pk-banner img {
    height:80px;
    max-width:720px;
    width:auto;
    object-fit:contain;
    display:block
  }
}
.cam-view.cam-float {
  display:none!important
}
.cw-actions {
  display:flex;
  gap:10px;
  padding:8px 12px;
  background:#0d0d13;
  border-bottom:1px solid var(--border);
  flex:none
}
.cw-act {
  flex:1;
  border:none;
  border-radius:12px;
  padding:10px;
  font-weight:800;
  font-size:14px;
  cursor:pointer
}
.cw-act.tip {
  background:linear-gradient(120deg,#ff6aa8,#ff6aa8);
  color:#fff
}
.cw-act.next {
  background:var(--card2);
  color:#fff;
  border:1px solid var(--border)
}
.cr-ic {
  width:32px!important;
  height:32px!important;
  font-size:13px!important;
  border-radius:9px!important;
  flex:none
}
.cr-compose {
  gap:5px;
  padding:7px 8px
}
.cr-compose input {
  flex:1;
  min-width:0;
  padding:9px 12px;
  font-size:14px
}
.cr-send {
  width:36px!important;
  height:36px!important
}
@media(max-width:999px) {
  .vc-full {
    display:flex;
    flex-direction:column;
    height:100dvh;
    overflow:hidden
  }
  .vc-top {
    flex:none
  }
  .vc-body {
    flex:1;
    min-height:0;
    display:flex;
    flex-direction:column;
    overflow:hidden
  }
  .vc-main {
    flex:none;
    min-height:0
  }
  .cam-view.docked {
    display:flex;
    flex-direction:column
  }
  .cam-view.docked .cw-body {
    height:40vh;
    aspect-ratio:auto;
    flex:none
  }
  .cam-view.docked .cw-video {
    width:100%;
    height:100%;
    object-fit:cover
  }
  .self-cam.docked .cw-body {
    height:40vh
  }
  .vc-main-empty {
    height:30vh;
    min-height:0
  }
  .vc-chat {
    flex:1;
    min-height:0;
    display:flex;
    flex-direction:column;
    overflow:hidden
  }
  .cr-head,
  .cr-rules,
  .cr-compose,
  .cr-panel {
    flex:none
  }
  .cr-msgs {
    flex:1;
    min-height:0;
    overflow-y:auto;
    overscroll-behavior:contain
  }
  .cr-compose {
    border-top:1px solid var(--border);
    padding-bottom:calc(7px + env(safe-area-inset-bottom))
  }
}
.ad-banner-row img {
  width:auto!important;
  height:44px!important;
  max-width:260px;
  object-fit:contain!important;
  background:#000;
  border:1px solid var(--border)
}
.pk-banner {
  overflow:hidden
}
.pk-banner img {
  height:80px;
  width:auto;
  max-width:720px;
  object-fit:contain
}
body.mobile-app .bottom-nav,
body.mobile-app .pk-banner,
body.mobile-app .side-nav {
  display:none!important
}
body.mobile-app {
  overflow:hidden
}
.mob {
  display:flex;
  flex-direction:column;
  height:100dvh;
  background:#050505;
  overflow:hidden
}
.mob-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 14px;
  flex:none
}
.mob-profile {
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  border-radius:50%
}
.mob-logo {
  font-weight:800;
  font-size:22px
}
.mob-logo span {
  color:var(--accent)
}
.mob-stage {
  position:relative;
  margin:0 12px;
  border:2px solid #26e0b0;
  border-radius:14px;
  overflow:hidden;
  flex:none;
  height:42vh;
  background:#000
}
.mob-stage-inner {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center
}
.mob-stage-empty {
  color:#666;
  font-size:14px
}
.mob-stage .cam-view.mobmain {
  position:absolute;
  inset:0;
  display:block
}
.mob-stage .cam-view.mobmain .cw-head {
  background:linear-gradient(to bottom,rgba(0,0,0,.6),transparent);
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:3;
  border:none
}
.mob-stage .cam-view.mobmain .cw-body {
  position:absolute;
  inset:0;
  aspect-ratio:auto!important
}
.mob-stage .cam-view.mobmain .cw-video {
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000
}
.mob-stage .cam-view.mobmain .cw-actions {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  background:linear-gradient(to top,rgba(0,0,0,.7),transparent)
}
.mob-selfvid {
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scaleX(-1);
  background:#000
}
.mob-fs {
  position:absolute;
  right:8px;
  bottom:8px;
  z-index:5;
  width:36px;
  height:36px;
  border:none;
  border-radius:8px;
  background:#00000080;
  color:#fff
}
.mob-stage:fullscreen,
.mob-stage:-webkit-full-screen {
  width:100vw;
  height:100vh;
  max-height:none;
  margin:0;
  border:none;
  border-radius:0;
  background:#000
}
.mob-stage:fullscreen .mob-stage-inner,
.mob-stage:-webkit-full-screen .mob-stage-inner {
  inset:0
}
.mob-stage:fullscreen .cam-view.mobmain,
.mob-stage:-webkit-full-screen .cam-view.mobmain {
  position:absolute;
  inset:0
}
.mob-stage:fullscreen .cw-video,
.mob-stage:fullscreen .mob-selfvid,
.mob-stage:-webkit-full-screen .cw-video,
.mob-stage:-webkit-full-screen .mob-selfvid {
  width:100%;
  height:100%;
  object-fit:contain
}
body.pk-fs-fallback .mob-stage.pk-fs {
  position:fixed;
  inset:0;
  z-index:1000;
  width:100vw;
  height:100dvh;
  margin:0;
  border:none;
  border-radius:0
}
body.pk-fs-fallback .mob-stage.pk-fs .cw-video,
body.pk-fs-fallback .mob-stage.pk-fs .mob-selfvid {
  object-fit:contain
}
.mob-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:1fr;
  gap:10px;
  padding:12px;
  overflow-y:auto;
  flex:1;
  align-content:start
}
.mob-cell {
  position:relative;
  aspect-ratio:3/4;
  border:2px solid #26e0b0;
  border-radius:10px;
  overflow:hidden;
  background:#111;
  cursor:pointer;
  padding:0;
  min-width:0
}
.mob-cell.empty {
  border-color:#1e3d35;
  background:#0c0c0c
}
.mob-cell img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.mob-cell.golive {
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px
}
.mob-cell .mc-live {
  position:absolute;
  top:5px;
  left:6px;
  color:#26e0b0;
  font-size:12px
}
.mob-nav {
  display:flex;
  justify-content:space-around;
  align-items:center;
  background:#050505;
  border-top:1px solid var(--border);
  padding:8px 0 calc(8px + env(safe-area-inset-bottom));
  flex:none
}
.mob-nav-i {
  border:none;
  background:transparent;
  color:#cfcfcf;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  font-size:10px;
  font-weight:600;
  cursor:pointer;
  flex:1
}
.mob-nav-i .mn-ic {
  font-size:18px
}
.mob-nav-i.mn-mid .mn-ic {
  color:#26e0b0
}
.mob-sheet {
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  height:70dvh;
  background:#0d0d13;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
  z-index:80;
  display:flex;
  flex-direction:column;
  box-shadow:0 -10px 40px #0009
}
.mob-sheet.hidden {
  display:none
}
.mob-sheet-inner {
  display:flex;
  flex-direction:column;
  height:100%
}
.mob-sheet-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid var(--border)
}
.mob-sheet-head button {
  border:none;
  background:transparent;
  color:#fff;
  font-size:18px
}
.mob-sheet-chat {
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column
}
.mob-sheet-chat .vc-chat,
.mob-sheet-chat .cr-msgs {
  flex:1;
  min-height:0
}
.mob-sheet-chat .cr-msgs {
  overflow-y:auto
}
.cam-view:fullscreen .cw-body,
.cam-view:-webkit-full-screen .cw-body {
  flex:1;
  position:relative;
  inset:auto;
  aspect-ratio:auto!important;
  min-height:0
}
.cam-view:fullscreen .cw-video,
.cam-view:-webkit-full-screen .cw-video,
.cam-view:fullscreen .mob-selfvid,
.cam-view:-webkit-full-screen .mob-selfvid {
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000
}
.cam-view:fullscreen .cw-head,
.cam-view:-webkit-full-screen .cw-head {
  flex:none;
  position:relative
}
.cam-view:fullscreen .cw-actions,
.cam-view:-webkit-full-screen .cw-actions {
  flex:none;
  position:relative
}
body.pk-fs-fallback .cam-view.pk-fs .cw-body {
  flex:1;
  aspect-ratio:auto!important
}
.cam-view .cw-video,
.cam-view.docked .cw-video,
.cam-view.cam-float .cw-video {
  object-fit:contain!important;
  background:#000
}
.cam-view .cw-body {
  background:#000
}
.cam-view:fullscreen,
.cam-view:-webkit-full-screen {
  width:100vw;
  height:100vh;
  max-width:none;
  max-height:none;
  margin:0;
  border:none;
  border-radius:0;
  background:#000;
  display:flex;
  flex-direction:column
}
.cam-view:fullscreen .cw-body,
.cam-view:-webkit-full-screen .cw-body {
  flex:1;
  min-height:0;
  aspect-ratio:auto!important;
  position:relative
}
.cam-view:fullscreen .cw-video,
.cam-view:-webkit-full-screen .cw-video {
  width:100%;
  height:100%;
  object-fit:contain
}
.cam-view:fullscreen .cw-head,
.cam-view:fullscreen .cw-actions,
.cam-view:-webkit-full-screen .cw-head,
.cam-view:-webkit-full-screen .cw-actions {
  flex:none;
  position:relative
}
body.pk-fs-fallback .cam-view.pk-fs {
  position:fixed;
  inset:0;
  z-index:1000;
  width:100vw;
  height:100dvh;
  margin:0;
  border:none;
  border-radius:0;
  display:flex;
  flex-direction:column;
  background:#000
}
body.pk-fs-fallback .cam-view.pk-fs .cw-body {
  flex:1;
  aspect-ratio:auto!important;
  min-height:0
}
body.pk-fs-fallback .cam-view.pk-fs .cw-video {
  object-fit:contain
}
.vip-pop {
  position:fixed;
  inset:0;
  z-index:1200;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#000000b8;
  backdrop-filter:blur(4px);
  padding:20px
}
.vip-pop.hidden {
  display:none
}
.vip-pop-card {
  max-width:360px;
  width:100%;
  background:linear-gradient(160deg,#1a1020,#0c0714);
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px;
  text-align:center;
  position:relative
}
.vip-pop-crown {
  font-size:44px
}
.vip-pop-card h2 {
  margin:8px 0 6px;
  font-size:22px
}
.vip-pop-card p {
  color:#cfc7d6;
  font-size:14px;
  line-height:1.5;
  margin:0 0 16px
}
.vip-pop-card .btn-primary {
  width:100%;
  margin-bottom:8px
}
.vip-pop-x {
  position:absolute;
  top:10px;
  right:12px;
  border:none;
  background:transparent;
  color:#aaa;
  font-size:22px;
  cursor:pointer
}
.vip-pop-note {
  font-size:12px;
  color:var(--soft)
}
.self-pip {
  position:fixed;
  top:40%;
  right:10px;
  transform:translateY(-50%);
  width:120px;
  z-index:900;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 30px #0009;
  border:2px solid var(--accent);
  background:#000;
  touch-action:none
}
.self-pip video {
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scaleX(-1);
  background:#000;
  display:block;
  aspect-ratio:3/4
}
.self-pip .pip-x {
  position:absolute;
  top:4px;
  right:4px;
  width:26px;
  height:26px;
  border:none;
  border-radius:50%;
  background:#0009;
  color:#fff;
  font-size:14px;
  cursor:pointer;
  z-index:2
}
.self-pip .pip-live {
  position:absolute;
  top:5px;
  left:6px;
  background:var(--accent);
  color:#fff;
  font-size:9px;
  font-weight:800;
  padding:2px 6px;
  border-radius:999px
}
.cw-qual {
  display:inline-flex;
  align-items:flex-end;
  gap:2px;
  height:16px;
  margin-left:8px;
  flex:none
}
.cw-qual i {
  width:3px;
  border-radius:1px;
  background:#555;
  display:block
}
.cw-qual i:nth-child(1) {
  height:6px
}
.cw-qual i:nth-child(2) {
  height:10px
}
.cw-qual i:nth-child(3) {
  height:14px
}
.cw-qual.q-good i {
  background:#22c55e
}
.cw-qual.q-poor i:nth-child(1),
.cw-qual.q-poor i:nth-child(2) {
  background:#f59e0b
}
.cw-qual.q-poor i:nth-child(3) {
  background:#555
}
.cw-qual.q-bad i:nth-child(1) {
  background:#ef4444
}
.cw-qual.q-bad i:nth-child(2),
.cw-qual.q-bad i:nth-child(3) {
  background:#555
}
.cw-qual.q-recon i {
  background:#f59e0b;
  animation:qpulse 1s ease-in-out infinite
}
.cw-qual.q-unknown i {
  background:#555
}
@keyframes qpulse {
  0%,
  to {
    opacity:.4
  }
  50% {
    opacity:1
  }
}
.cw-recon {
  position:absolute;
  top:10px;
  left:50%;
  transform:translate(-50%);
  z-index:6;
  background:#000000b3;
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px
}
.cw-mute {
  cursor:pointer
}
.cr-msg.vip .cr-name {
  color:#fbbf24
}
.cw-qual {
  border:none;
  background:transparent;
  cursor:pointer;
  padding:0 4px
}
.cw-stats {
  position:absolute;
  top:8px;
  right:8px;
  z-index:8;
  background:#000000d1;
  color:#fff;
  font-size:11px;
  line-height:1.5;
  padding:8px 10px;
  border-radius:8px;
  min-width:120px;
  pointer-events:none
}
.cw-stats.hidden {
  display:none
}
.cw-stats b {
  color:#22d3ee
}
.cw-unmute {
  cursor:pointer
}
.cam-view:fullscreen .cw-head,
.cam-view:-webkit-full-screen .cw-head {
  z-index:10
}
.cam-view.cam-float {
  display:flex!important;
  flex-direction:column;
  position:fixed;
  z-index:95;
  background:#0d0d12;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 16px 44px #0009;
  touch-action:none;
  width:360px;
  height:auto
}
.cam-view.cam-float .cw-head {
  cursor:grab;
  touch-action:none;
  flex:none
}
.cam-view.cam-float .cw-body {
  flex:1!important;
  aspect-ratio:auto!important;
  min-height:0;
  position:relative
}
.cam-view.cam-float .cw-video {
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000
}
.cam-view.cam-float .cw-actions {
  display:none
}
.cam-view.cam-float .cw-resize {
  position:absolute;
  right:0;
  bottom:0;
  width:26px;
  height:26px;
  cursor:nwse-resize;
  z-index:20;
  touch-action:none;
  background:linear-gradient(135deg,transparent 50%,rgba(255,255,255,.55) 50% 60%,transparent 60% 70%,rgba(255,255,255,.55) 70% 80%,transparent 80%)
}
@media(max-width:900px) {
  .cam-view.cam-float {
    width:80vw
  }
}
.self-pip .pip-views {
  position:absolute;
  top:5px;
  left:60px;
  z-index:2;
  background:#0000008c;
  color:#fff;
  font-size:10px;
  font-weight:700;
  padding:2px 6px;
  border-radius:999px
}
.vc-eye {
  flex:none;
  font-size:11px;
  color:#9aa;
  background:#ffffff0f;
  padding:2px 6px;
  border-radius:999px;
  margin-left:auto
}
.vc-user .vc-cam {
  margin-left:6px
}
.cw-actions {
  gap:8px
}
.cw-act.rooms {
  flex:1;
  background:var(--card2);
  color:#fff;
  border:1px solid var(--border)
}
.cw-act.next,
.cw-act.tip {
  flex:1
}
.rooms-dd {
  position:fixed;
  z-index:1100;
  background:#14141c;
  border:1px solid var(--border);
  border-radius:12px;
  padding:6px;
  box-shadow:0 12px 40px #0009;
  min-width:180px;
  max-height:60vh;
  overflow-y:auto
}
.rooms-dd-i {
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  border:none;
  background:transparent;
  color:#fff;
  padding:9px 10px;
  border-radius:9px;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  text-align:left
}
.rooms-dd-i:hover {
  background:var(--card2)
}
.rooms-dd-i.active {
  background:#ff2d7e24
}
.rooms-dd-i img {
  width:28px;
  height:28px;
  border-radius:8px;
  object-fit:cover;
  flex:none
}
.rooms-dd-i .rdd-ph {
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--card2);
  border-radius:8px;
  flex:none
}
.rooms-dd-i span {
  flex:1;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.rdd-cur {
  flex:none!important;
  color:#22c55e;
  font-size:11px
}
.cr-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:9px 12px;
  border-bottom:1px solid var(--border);
  flex:none
}
.cr-room-name {
  font-weight:800;
  font-size:14px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.cr-rooms-btn {
  flex:none;
  border:1px solid var(--border);
  background:var(--card2);
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  cursor:pointer
}
.cr-rooms-btn:hover {
  background:var(--accent);
  border-color:var(--accent)
}
.dm-row {
  display:flex;
  align-items:center;
  gap:6px
}
.dm-row-link {
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  color:inherit;
  text-decoration:none;
  padding:8px 6px
}
.dm-del {
  flex:none;
  border:none;
  background:transparent;
  color:#ff6b6b;
  font-size:16px;
  cursor:pointer;
  padding:8px 10px;
  border-radius:8px
}
.dm-del:hover {
  background:#e5202e26
}
.cam-view.cam-float .cw-resize {
  position:absolute!important;
  right:0!important;
  bottom:0!important;
  width:34px!important;
  height:34px!important;
  z-index:30!important;
  cursor:nwse-resize;
  touch-action:none!important;
  pointer-events:auto!important;
  background:#ffffff2e!important;
  border-top-left-radius:12px;
  box-shadow:inset 0 0 0 1px #ffffff40
}
.cam-view.cam-float .cw-resize:after {
  content:"";
  position:absolute;
  right:6px;
  bottom:6px;
  width:12px;
  height:12px;
  background:linear-gradient(135deg,#000000bf 0 40%,#fff 40% 52%,#000000b3 52% 64%,#fff 64% 76%,#000000e6 76%);
  opacity:.9
}
@media(max-width:900px) {
  .cam-view.cam-float {
    width:82vw;
    max-width:96vw
  }
}
.cam-view.cam-float {
  touch-action:none
}
.cam-view.cam-float .cw-resize {
  position:absolute;
  right:0;
  bottom:0;
  width:30px;
  height:30px;
  z-index:20;
  cursor:nwse-resize;
  touch-action:none;
  background:#ffffff2e;
  border-top-left-radius:10px;
  box-shadow:inset 0 0 0 1px #ffffff40;
  pointer-events:auto
}
.cam-view.cam-float .cw-resize:after {
  content:"";
  position:absolute;
  right:5px;
  bottom:5px;
  width:12px;
  height:12px;
  background:linear-gradient(135deg,#000000c4 0 40%,#fffefe 40% 52%,#000000bd 52% 64%,#fff 64% 76%,#000000f5 76%);
  opacity:.9
}
.cam-view.cam-float .cw-resize:hover {
  background:#ffffff52
}
.pw-wrap {
  position:relative
}
.pw-wrap .in {
  padding-right:44px
}
.pw-eye {
  position:absolute;
  right:6px;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:transparent;
  color:var(--soft);
  cursor:pointer;
  padding:6px 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:0
}
.pw-eye.on {
  color:var(--accent)
}
.pw-eye svg {
  display:block
}
.lp2 {
  min-height:100dvh;
  background:radial-gradient(900px 500px at 80% -8%,rgba(255,45,126,.22),transparent 60%),radial-gradient(700px 500px at 0% 100%,rgba(124,58,237,.18),transparent 60%),#050506;
  color:#fff;
  display:flex;
  flex-direction:column
}
.lp2-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 22px;
  border-bottom:1px solid rgba(255,255,255,.06)
}
.lp2-logo {
  font-weight:900;
  font-size:24px
}
.lp2-logo span {
  color:var(--accent)
}
.lp2-nav {
  display:flex;
  align-items:center;
  gap:16px
}
.lp2-nav a {
  color:#cfcfd6;
  font-weight:700;
  font-size:14px
}
.lp2-join-sm {
  padding:9px 16px;
  font-size:13px
}
.lp2-hero {
  position:relative;
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:60px 22px 40px;
  overflow:hidden
}
.lp2-hero-inner {
  position:relative;
  z-index:2;
  max-width:640px
}
.lp2-title {
  font-size:clamp(30px,7vw,52px);
  font-weight:900;
  line-height:1.08;
  margin:0
}
.lp2-title .grad {
  background:linear-gradient(90deg,#ff6a00,#ff2d7e);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.lp2-sub {
  color:#ffffffc7;
  font-size:clamp(15px,2.4vw,18px);
  margin:18px auto 0;
  max-width:520px;
  line-height:1.55
}
.lp2-cta {
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:28px
}
.btn-primary.big,
.btn-ghost.big {
  padding:15px 30px;
  font-size:16px
}
.btn-ghost.big {
  border:2px solid var(--accent);
  color:#fff;
  background:transparent;
  border-radius:999px;
  font-weight:800;
  cursor:pointer
}
.lp2-model {
  display:inline-block;
  margin-top:18px;
  color:#ffffffd9;
  font-weight:700;
  font-size:14px
}
.lp2-hero-glow {
  position:absolute;
  inset:0;
  z-index:1;
  background:radial-gradient(500px 500px at 50% 40%,rgba(255,45,126,.14),transparent 70%)
}
.lp2-features {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:10px 22px 40px;
  max-width:1000px;
  margin:0 auto;
  width:100%
}
.lp2-feat {
  background:#ffffff0a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:6px
}
.lp2-feat-ic {
  font-size:26px
}
.lp2-feat b {
  font-size:15px
}
.lp2-feat span {
  color:#ffffffa6;
  font-size:13px;
  line-height:1.45
}
.lp2-foot {
  text-align:center;
  color:#ffffff80;
  font-size:13px;
  padding:18px;
  border-top:1px solid rgba(255,255,255,.06)
}
.lp2-foot a {
  color:var(--accent)
}
@media(max-width:820px) {
  .lp2-features {
    grid-template-columns:repeat(2,1fr)
  }
}
@media(max-width:480px) {
  .lp2-features {
    grid-template-columns:1fr
  }
}
.btn-primary,
.btn-ghost,
.vc-golive,
.hdr-vip,
.hdr-paid,
.lp2-join-sm,
.cw-act,
.cr-send,
.cr-rooms-btn,
.btn-primary.big,
.btn-ghost.big,
.mob-nav-i .live-fab,
.nav-live .live-fab,
.live-fab {
  box-shadow:none!important
}
.lp2-hero.has-img {
  background-size:cover;
  background-position:center
}
.lp2-hero.has-img:before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,#0505068c,#050506d1)
}
.lp2-hero.has-img .lp2-hero-inner {
  z-index:2
}
.lp2-hero.has-img .lp2-hero-glow {
  opacity:.5
}
.ad-hero-prev {
  border:1px dashed var(--border);
  border-radius:12px;
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--card2);
  margin-bottom:10px
}
.ad-hero-prev img {
  width:100%;
  max-height:260px;
  object-fit:cover;
  display:block
}
body.light {
  --bg:#000;
  --card:#0b0b0b;
  --card2:#272727;
  --text:#fff;
  --soft:#fff;
  --border:#0d0c0c;
  background:#000;
  color:#fff
}
body.light .vc-top {
  background:#fff;
  border-bottom:1px solid var(--border)
}
body.light .hdr-logo,
body.light .hdr-burger,
body.light .hdr-back {
  color:#fff
}
body.light .vc-users-toggle {
  background:#eef0f3;
  color:#15161a;
  border:1px solid var(--border)
}
body.light .vc-chat {
  background:#fff;
  border-top:1px solid var(--border);
  border-color:var(--border)
}
body.light .cr-head {
  background:#fff;
  border-bottom:1px solid var(--border)
}
body.light .cr-room-name {
  color:#15161a
}
body.light .cr-rooms-btn {
  background:#eef0f3;
  color:#15161a;
  border:1px solid var(--border)
}
body.light .cr-msgs {
  color:#15161a
}
body.light .cr-name {
  color:#3a3d46
}
body.light .cr-sys {
  color:#8a8f98
}
body.light .cr-compose {
  background:#fff;
  border-top:1px solid var(--border)
}
body.light .cr-compose input {
  background:#eef0f3;
  color:#15161a;
  border:1px solid var(--border)
}
body.light .cr-ic {
  background:#eef0f3;
  color:#15161a
}
body.light .cr-panel {
  background:#f7f8fa;
  border-top:1px solid var(--border)
}
body.light .vc-users {
  background:#fff;
  border-color:var(--border)
}
body.light .vc-users-head {
  color:#6b7280;
  border-bottom:1px solid var(--border)
}
body.light .vc-user {
  color:#15161a
}
body.light .vc-user:hover {
  background:#eef0f3
}
body.light .vc-uname {
  color:#15161a
}
body.light .vc-eye {
  color:#6b7280;
  background:#eef0f3
}
body.light .side-nav {
  background:#fff;
  border-right:1px solid var(--border)
}
body.light .side-link {
  color:#3a3d46
}
body.light .side-link:hover {
  background:#eef0f3;
  color:#15161a
}
body.light .side-brand,
body.light .side-user {
  color:#15161a
}
body.light .side-out {
  color:#6b7280;
  border:1px solid var(--border)
}
body.light .mob-nav {
  background:#fff;
  border-top:1px solid var(--border)
}
body.light .mob-nav-i {
  color:#6b7280
}
body.light .mob-nav-i.active,
body.light .pad,
body.light .simple {
  color:#15161a
}
body.light .in,
body.light textarea.in {
  background:#fff;
  color:#15161a;
  border:1px solid var(--border)
}
body.light .btn-ghost {
  border:1px solid var(--border);
  color:#15161a
}
body.light .dm-msg {
  background:#eef0f3;
  color:#15161a
}
body.light .dm-head,
body.light .dm-compose {
  border-color:var(--border)
}
body.light .dm-compose input {
  background:#fff;
  color:#15161a;
  border:1px solid var(--border)
}
body.light .ad-card {
  background:#fff;
  border:1px solid var(--border)
}
body.light .ad-tab {
  background:#eef0f3;
  color:#6b7280;
  border:1px solid var(--border)
}
body.light .ad-row {
  border-bottom:1px solid var(--border)
}
body.light .rooms-dd {
  background:#fff;
  border:1px solid var(--border)
}
body.light .rooms-dd-i {
  color:#15161a
}
body.light .rooms-dd-i:hover {
  background:#eef0f3
}
body.light .vc-main,
body.light .cam-view,
body.light .cam-view .cw-body,
body.light .cw-video,
body.light .mob-stage,
body.light .self-pip {
  background:#000
}
body.light .cam-view .cw-head {
  background:linear-gradient(to bottom,rgba(0,0,0,.55),transparent)
}
.cr-msg .cr-gif,
.cr-gif {
  max-width:220px!important;
  max-height:220px!important;
  width:auto!important;
  height:auto!important;
  display:block;
  margin-top:5px;
  border-radius:10px
}
@media(max-width:560px) {
  .cr-msg .cr-gif,
  .cr-gif {
    max-width:170px!important;
    max-height:170px!important
  }
}
.cr-banner {
  display:none
}
.cr-banner img {
  width:100%;
  height:auto;
  display:block;
  border-radius:6px
}
@media(min-width:901px) {
  .cr-banner {
    display:none!important
  }
}
@media(max-width:900px) {
  .cr-rules {
    display:none!important
  }
  .cr-banner {
    display:block;
    flex:none;
    padding:6px 8px;
    background:transparent;
    text-align:center
  }
  .cr-banner img {
    max-width:100%;
    width:auto;
    max-height:44px;
    margin:0 auto
  }
}
html,
body {
  max-width:100%;
  overflow-x:hidden
}
#app,
.vc,
.vc-full,
.vc-body,
.shell,
.shell-main,
.vc-chat,
.vc-main {
  max-width:100%;
  min-width:0
}
@media(max-width:900px) {
  .vc-top {
    gap:8px;
    padding:0 10px;
    flex-wrap:nowrap;
    overflow:hidden
  }
  .vc-top .hdr-logo,
  .vc-top .hdr-paid,
  .vc-top .hdr-vip,
  .vc-top .hdr-back {
    display:none!important
  }
  .vc-top .hdr-burger {
    display:flex!important;
    flex:none
  }
  .vc-golive {
    flex:none;
    margin-left:auto;
    padding:8px 14px;
    font-size:13px;
    white-space:nowrap
  }
  .vc-users-toggle {
    flex:none;
    white-space:nowrap
  }
  .vc-body {
    display:flex;
    flex-direction:column;
    height:calc(100dvh - 52px);
    min-height:0;
    overflow:hidden
  }
  .vc-main {
    display:none!important
  }
  .vc-chat {
    flex:1;
    min-height:0;
    display:flex;
    flex-direction:column;
    width:100%;
    border:none
  }
  .cr-msgs {
    flex:1;
    min-height:0;
    overflow-y:auto
  }
  .cr-compose {
    flex:none
  }
  .cam-view.cam-float {
    max-width:94vw;
    max-height:80vh
  }
}
.cr-head {
  display:flex;
  align-items:center;
  gap:8px
}
.cr-room-name {
  flex:0 1 auto;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.cr-logo {
  flex:1;
  text-align:center;
  font-weight:900;
  font-size:17px;
  letter-spacing:-.01em;
  background:linear-gradient(90deg,#22d3ee,#7c3aed 45%,#ff2d7e);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  white-space:nowrap
}
.cr-rooms-btn {
  flex:none
}
@media(max-width:560px) {
  .cr-logo {
    font-size:15px
  }
  .cr-room-name {
    max-width:34vw
  }
}
.ps {
  padding:16px;
  max-width:1200px;
  margin:0 auto
}
.ps-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px
}
.ps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:16px
}
.ps-tile {
  display:block;
  border-radius:12px;
  overflow:hidden;
  background:var(--card);
  border:1px solid var(--border);
  color:inherit;
  text-decoration:none
}
.ps-thumb {
  position:relative;
  display:block;
  aspect-ratio:16/9;
  background:#000;
  overflow:hidden
}
.ps-live {
  position:absolute;
  top:8px;
  left:8px;
  background:#e5202e;
  color:#fff;
  font-weight:800;
  font-size:11px;
  padding:2px 8px;
  border-radius:4px
}
.ps-views {
  position:absolute;
  bottom:8px;
  left:8px;
  background:#000000b3;
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:2px 8px;
  border-radius:4px
}
.ps-meta {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px
}
.ps-av {
  width:36px;
  height:36px;
  border-radius:50%;
  object-fit:cover
}
.ps-name {
  font-weight:700;
  font-size:14px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.ps-empty {
  grid-column:1/-1;
  text-align:center;
  color:var(--soft);
  padding:60px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px
}
.ps-empty div {
  font-size:44px
}
.sv {
  display:flex;
  height:calc(100dvh - 56px)
}
.sv-main {
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  background:#0a0a0f
}
.sv-video {
  flex:1;
  min-height:0;
  position:relative;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center
}
.sv-video video {
  width:52%;
  height:100%;
  object-fit:contain;
  background:#000
}
#sv-selfvid {
  transform:scaleX(-1)
}
.sv-offline {
  color:#888;
  font-size:15px
}
.sv-unmute {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:3;
  border:none;
  background:#0009;
  color:#fff;
  font-weight:700;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer
}
.sv-unmute.hidden {
  display:none
}
.sv-bar {
  flex:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 16px;
  background:var(--card);
  border-top:1px solid var(--border)
}
.sv-streamer {
  display:flex;
  align-items:center;
  gap:10px;
  color:inherit;
  text-decoration:none;
  min-width:0
}
.sv-streamer img {
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover
}
.sv-streamer b {
  font-size:15px
}
.sv-streamer small {
  color:var(--soft);
  font-size:12px
}
.sv-actions {
  display:flex;
  align-items:center;
  gap:8px;
  flex:none
}
.sv-chat {
  flex:none;
  width:340px;
  display:flex;
  flex-direction:column;
  background:var(--card);
  border-left:1px solid var(--border);
  height:-46%
}
.sv-chat-head {
  padding:12px 14px;
  font-weight:800;
  border-bottom:1px solid #0f0f0f
}
.sv-chat-msgs {
  flex:1;
  min-height:0;
  overflow-y:auto;
  padding:10px 12px;
  display:flex;
  flex-direction:column;
  gap:5px
}
.sv-msg {
  font-size:14px;
  line-height:1.4;
  word-break:break-word
}
.sv-msg b {
  color:#7c3aed;
  margin-right:4px
}
.sv-msg.streamer b {
  color:#e5202e
}
.sv-chat-compose {
  display:flex;
  gap:8px;
  padding:10px;
  border-top:1px solid var(--border)
}
.sv-chat-compose input {
  flex:1;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  background:var(--bg);
  color:var(--text)
}
.sv-chat-compose button {
  flex:none;
  width:42px;
  border:none;
  border-radius:50%;
  background:#ff10a2;
  color:#fff;
  cursor:pointer
}
@media(max-width:900px) {
  .sv {
    flex-direction:column;
    height:100vh
  }
  .sv-main {
    flex:none
  }
  .sv-video {
    height:38vh
  }
  .sv-chat {
    width:100%;
    flex:1;
    min-height:0;
    border-left:none;
    border-top:1px solid var(--border)
  }
  .ps-grid {
    grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
    gap:10px
  }
}
.sv-video video {
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000
}
.sv-video.landscape video {
  width:100%;
  height:100%;
  object-fit:contain
}
.sv-video.portrait video {
  height:100%;
  width:auto;
  max-width:100%;
  margin:0 auto;
  object-fit:contain
}
@media(max-width:900px) {
  .sv-video.portrait video {
    height:100%;
    width:auto;
    max-width:49%
  }
  .sv-video.landscape video {
    width:100%;
    height:100%
  }
}
.sv-unmute.hidden {
  display:none!important
}
.sv-mute {
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:4;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#0009;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center
}
.sv-mute:hover {
  background:#000c
}
.sv-mute {
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:5;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#0009;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center
}
.sv-mute:hover {
  background:#000000d9
}
.sv-net {
  position:absolute;
  top:10px;
  left:10px;
  z-index:5;
  display:inline-flex;
  align-items:flex-end;
  gap:3px;
  height:20px;
  background:#00000073;
  padding:5px 7px;
  border-radius:8px
}
.sv-net i {
  width:4px;
  border-radius:1px;
  background:#666;
  display:block
}
.sv-net i:nth-child(1) {
  height:7px
}
.sv-net i:nth-child(2) {
  height:12px
}
.sv-net i:nth-child(3) {
  height:17px
}
.sv-net.q-good i {
  background:#22c55e
}
.sv-net.q-poor i:nth-child(1),
.sv-net.q-poor i:nth-child(2) {
  background:#f59e0b
}
.sv-net.q-poor i:nth-child(3) {
  background:#666
}
.sv-net.q-bad i:nth-child(1) {
  background:#ef4444
}
.sv-net.q-bad i:nth-child(2),
.sv-net.q-bad i:nth-child(3) {
  background:#666
}
.sv-net.q-recon i {
  background:#f59e0b;
  animation:qpulse 1s ease-in-out infinite
}
.sv-ctrls {
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:5;
  display:flex;
  gap:8px
}
.sv-ic {
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#0000008c;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(4px);
  transition:background .15s
}
.sv-ic:hover {
  background:#000c
}
.sv-ic svg {
  display:block
}
.sv-video:fullscreen,
.sv-video:-webkit-full-screen {
  width:100vw;
  height:100vh;
  max-height:none;
  background:#000
}
.sv-video:fullscreen video,
.sv-video:-webkit-full-screen video {
  width:100%;
  height:100%;
  object-fit:contain
}
body.pk-fs-fallback .sv-video.pk-fs {
  position:fixed;
  inset:0;
  z-index:1000;
  width:100vw;
  height:100dvh;
  background:#000
}
body.pk-fs-fallback .sv-video.pk-fs video {
  width:100%;
  height:100%;
  object-fit:contain
}
.cam-view.cam-float {
  touch-action:none;
  -webkit-user-select:none;
  user-select:none
}
.cam-view.cam-float .cw-resize {
  touch-action:none;
  -webkit-touch-callout:none
}
.cam-view.cam-float .cw-head {
  touch-action:none
}
@media(max-width:900px) {
  .vc-body {
    display:flex!important;
    flex-direction:column!important;
    height:calc(100dvh - 52px)!important;
    min-height:0;
    overflow:hidden
  }
  .vc-main {
    display:flex!important;
    flex:none!important;
    height:34vh!important;
    min-height:170px;
    background:#000;
    position:relative
  }
  .vc-main-empty {
    height:34vh!important;
    min-height:0
  }
  .cam-view.docked {
    display:flex;
    flex-direction:column;
    height:100%
  }
  .cam-view.docked .cw-body {
    flex:1!important;
    height:auto!important;
    aspect-ratio:auto!important;
    min-height:0
  }
  .cam-view.docked .cw-video {
    width:100%;
    height:100%;
    object-fit:contain!important;
    background:#000
  }
  .cam-view.docked .cw-head {
    flex:none;
    padding:5px 8px
  }
  .cam-view.docked .cw-actions {
    flex:none;
    padding:5px 8px;
    gap:6px;
    background:#0d0d13
  }
  .cam-view.docked .cw-act {
    padding:7px;
    font-size:12px
  }
  .cam-view.docked .cw-act.tip {
    display:none
  }
  .vc-chat {
    flex:1!important;
    min-height:0!important;
    height:auto!important;
    display:flex;
    flex-direction:column
  }
  .cr-msgs {
    flex:1;
    min-height:0;
    overflow-y:auto
  }
  .cr-compose {
    flex:none
  }
  .cam-view.cam-float {
    display:none!important
  }
}
@media(max-width:560px) {
  .vc-main,
  .vc-main-empty {
    height:30vh!important
  }
}
.sv-ic-btn {
  width:42px;
  height:42px;
  border:1px solid var(--border);
  background:var(--card2);
  color:var(--text);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:none;
  padding:0
}
.sv-ic-btn:hover {
  background:var(--accent);
  border-color:var(--accent);
  color:#fff
}
.sv-golive-btn {
  display:inline-flex;
  align-items:center;
  gap:7px;
  white-space:nowrap
}
.sv-golive-btn.live {
  background:#cd1d78
}
.sv-golive-btn svg {
  display:block
}
.sv-actions {
  gap:8px;
  flex-wrap:nowrap
}
.cw-ic {
  display:inline-flex;
  align-items:center;
  justify-content:center
}
.cw-ic svg {
  display:block
}
.cam-view:not(.cam-float) .cw-size {
  display:none
}
@media(max-width:900px) {
  .vc-main {
    height:46vh!important;
    min-height:200px
  }
  .vc-main-empty {
    height:46vh!important
  }
  .cam-view.docked .cw-actions {
    padding:0
  }
  .cam-view.docked .cw-actions:not(:has(.cw-tip[style*=inline])):not(:has(.cw-tip:not([style*=none]))) {
    display:none
  }
}
@media(max-width:560px) {
  .vc-main,
  .vc-main-empty {
    height:42vh!important
  }
}
.cw-actions:empty {
  display:none
}
.cam-view.docked .cw-actions {
  padding:0;
  background:transparent;
  border:none
}
.cam-view.docked .cw-tip {
  margin:6px 8px;
  display:inline-block
}
.hdr-rooms {
  border:1px solid var(--border);
  background:var(--card2);
  color:var(--text);
  font-weight:700;
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:5px;
  white-space:nowrap;
  flex:none
}
.hdr-rooms:hover {
  background:var(--accent);
  border-color:var(--accent);
  color:#fff
}
.hdr-rooms-name {
  max-width:90px;
  overflow:hidden;
  text-overflow:ellipsis
}
.vc-chat .cr-msgs {
  border-top:none
}
@media(max-width:900px) {
  .hdr-rooms-name {
    max-width:64px
  }
  .hdr-rooms {
    padding:7px 10px;
    font-size:12px
  }
  .vc-top {
    flex-wrap:nowrap;
    overflow:hidden
  }
}
.ps-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  padding:12px
}
@media(min-width:700px) {
  .ps-grid {
    grid-template-columns:repeat(3,1fr)
  }
}
@media(min-width:1000px) {
  .ps-grid {
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    padding:16px
  }
}
.ps-tile {
  display:block;
  border-radius:14px;
  overflow:hidden;
  background:var(--card);
  border:1px solid var(--border);
  color:inherit;
  text-decoration:none;
  position:relative
}
.ps-thumb {
  position:relative;
  display:block;
  aspect-ratio:1/1;
  background:#000;
  overflow:hidden
}
.ps-live {
  position:absolute;
  top:8px;
  left:8px;
  background:#e5202e;
  color:#fff;
  font-weight:800;
  font-size:11px;
  letter-spacing:.02em;
  padding:2px 8px;
  border-radius:5px
}
.ps-views {
  position:absolute;
  top:8px;
  right:8px;
  background:#0009;
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:2px 8px;
  border-radius:999px
}
.ps-meta {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px
}
.ps-av {
  width:30px;
  height:30px;
  border-radius:50%;
  object-fit:cover;
  flex:none
}
.ps-name {
  font-weight:700;
  font-size:13px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.ps-sentinel {
  height:1px
}
.ps-empty {
  text-align:center;
  color:var(--soft);
  padding:60px 20px
}
.ps-empty.hidden {
  display:none
}
.ps-empty-ic {
  font-size:44px;
  margin-bottom:10px
}
.ps-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px 0
}
.ps-head h2 {
  margin:0;
  font-size:22px
}
.ps-golive {
  display:inline-flex;
  align-items:center;
  gap:6px
}
.sv-viewers {
  display:flex;
  align-items:center;
  gap:5px;
  padding:6px 10px;
  border-bottom:1px solid var(--border);
  overflow-x:auto;
  flex:none;
  white-space:nowrap
}
.sv-viewers-count {
  font-size:12px;
  font-weight:700;
  color:var(--soft);
  flex:none;
  margin-right:4px
}
.sv-viewers a {
  flex:none
}
.sv-viewers img {
  width:26px;
  height:26px;
  border-radius:50%;
  object-fit:cover;
  display:block
}
.ps-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px;
  padding:2px
}
@media(min-width:700px) {
  .ps-grid {
    grid-template-columns:repeat(3,1fr);
    gap:3px;
    padding:3px
  }
}
@media(min-width:1000px) {
  .ps-grid {
    grid-template-columns:repeat(4,1fr);
    gap:4px;
    padding:4px
  }
}
.ps-tile {
  position:relative;
  display:block;
  border-radius:0;
  overflow:hidden;
  background:#000;
  color:#fff;
  text-decoration:none
}
.ps-thumb {
  position:relative;
  display:block;
  aspect-ratio:4/5;
  background:#111;
  overflow:hidden
}
.ps-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.ps-live {
  position:absolute;
  top:8px;
  right:7px;
  background:#ff10a2;
  color:#fff;
  font-weight:800;
  font-size:10px;
  letter-spacing:.04em;
  /*! padding:5px 6px; */
  border-radius:4px
}
.ps-views {
  position:absolute;
  top:8px;
  left:92px;
  background:#0000;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:1px 7px;
  border-radius:999px;
  display: none;
}
.ps-meta {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  display:flex;
  align-items:center;
  gap:6px;
  padding:22px 10px 8px;
  background:linear-gradient(to top,rgba(0,0,0,.85),transparent)
}
.ps-av {
  display:none
}
.ps-name {
  font-weight:700;
  font-size:14px;
  color:#fff;
  text-shadow:0 1px 3px rgba(0,0,0,.8);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.ps-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px
}
.ps-head h2 {
  margin:0;
  font-size:20px
}
.hdr-login {
  margin-left:auto;
  border:none;
  background:linear-gradient(90deg,#c026d3,#db2777);
  color:#fff;
  font-weight:800;
  padding:9px 20px;
  border-radius:999px;
  cursor:pointer;
  font-size:14px
}
.sv-signup {
  position:absolute;
  inset:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0a0410b8;
  backdrop-filter:blur(4px);
  padding:16px
}
.sv-signup-card {
  position:relative;
  max-width:340px;
  width:100%;
  text-align:center;
  background:linear-gradient(160deg,#2a0f2e,#160a1c);
  border:1px solid rgba(219,39,119,.4);
  border-radius:18px;
  padding:26px 22px
}
.sv-signup-h {
  font-size:24px;
  font-weight:900;
  color:#fff
}
.sv-signup-h span {
  background:linear-gradient(90deg,#c026d3,#db2777);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.sv-signup-card p {
  color:#e7d6ef;
  margin:8px 0 18px;
  font-size:15px
}
.sv-signup-go {
  width:100%;
  background:linear-gradient(90deg,#c026d3,#db2777)!important;
  border:none;
  color:#fff;
  font-weight:800;
  padding:14px;
  border-radius:999px;
  cursor:pointer;
  font-size:15px
}
.sv-signup-login {
  margin-top:12px;
  background:none;
  border:none;
  color:#e7a6d6;
  cursor:pointer;
  font-size:13px;
  text-decoration:underline
}
.sv-signup-x {
  position:absolute;
  top:10px;
  right:12px;
  background:none;
  border:none;
  color:#aaa;
  font-size:20px;
  cursor:pointer
}
