.ps-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding:10px 10px 14px;
  margin-bottom:8px;
}
.ps-brand__mark{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(34,211,238,.7));
  box-shadow: 0 10px 30px rgba(124,92,255,.25);
  font-weight:800;
}
.ps-brand__text{
  font-weight:800;
  letter-spacing:.06em;
  font-size:13px;
  color:var(--ps-text);
  opacity:.95;
}

.ps-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:6px;
}

.ps-nav__item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--ps-muted);
  border:1px solid transparent;
  transition: all .15s ease;
}
.ps-nav__dot{
  width:10px;height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.22);
}
.ps-nav__item:hover{
  color:var(--ps-text);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}

.ps-sidebar__footer{
  margin-top:16px;
  padding:10px;
  border-top:1px solid rgba(255,255,255,.08);
}

.ps-user{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  margin-bottom:10px;
}
.ps-user__avatar{
  width:32px;height:32px;
  display:grid;place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
}
.ps-user__name{
  color:var(--ps-text);
  opacity:.92;
  font-weight:700;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ps-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  height:38px;
  padding:0 14px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--ps-text);
  transition: all .15s ease;
  cursor:pointer;
}
.ps-btn--full{ width:100%; }
.ps-btn--primary{
  border-color: rgba(124,92,255,.45);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(34,211,238,.65));
}
.ps-btn--ghost{
  background: transparent;
}
.ps-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
}

.ps-pill{
  display:inline-flex;
  align-items:center;
  height:36px;
  padding:0 14px;
  border-radius:999px;
  text-decoration:none;
  color:var(--ps-text);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

/* Legacy layout adjustments */
.ps-v2 .navbar{ display:none !important; }
.ps-v2 .left_block{ display:none !important; }
.ps-v2 .contentsite{
  width:100% !important;
  padding:0 !important;
  margin:0 !important;
}
.ps-v2 .cl-right{
  width:100% !important;
  float:none !important;
}

/* soften some legacy borders */
.ps-v2 .footer{
  color: rgba(255,255,255,.8) !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: var(--ps-radius) !important;
}
