/* Profilio – Cyberspace Forum (PCF) */
.pcf{
  font-family:"Poppins",sans-serif;
  color:#0f172a;
}
.pcf *{ box-sizing:border-box; }

.pcf-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  padding:18px;
}

.pcf-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.pcf-titleRow{
  display:flex;
  align-items:center;
  gap:10px;
  position:relative;
}
.pcf-title{
  margin:0;
  font-size:20px;
  font-weight:700;
  letter-spacing:-.02em;
  color:#0b1220;
}

.pcf-helpBtn{
  width:34px;height:34px;
  border-radius:10px;
  border:1px solid transparent;
  background:transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#94a3b8;
  cursor:pointer;
}
.pcf-helpBtn:hover{ background:#f8fafc; color:#64748b; }

.pcf-tooltip{
  position:absolute;
  left:0;
  top:42px;
  width:280px;
  background:#111827;
  color:#fff;
  font-size:12px;
  line-height:1.35;
  padding:10px 12px;
  border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
  z-index:10;
}
.pcf-tooltip::before{
  content:"";
  position:absolute;
  top:-6px; left:14px;
  width:12px;height:12px;
  background:#111827;
  transform:rotate(45deg);
  border-radius:2px;
}

.pcf-tabs{
  display:inline-flex;
  gap:6px;
  padding:6px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e5e7eb;
}
.pcf-tab{
  height:38px;
  padding:0 14px;
  border-radius:12px;
  border:0;
  background:transparent;
  cursor:pointer;
  font-weight:500;
  font-size:14px;
  color:#334155;
}
.pcf-tab:hover{ background:#f8fafc; }
.pcf-tab.is-active{
  background:#0b1220;
  color:#fff;
}

.pcf-panel{
  border-radius:18px;
  border:1px solid #e5e7eb;
  overflow:hidden;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  background:#fff;
}
.pcf-panelHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid #e5e7eb;
}
.pcf-panelTitle{
  font-size:16px;
  font-weight:500;
  color:#0b1220;
}
.pcf-menuBtn{
  width:38px;height:38px;
  border-radius:12px;
  border:1px solid transparent;
  background:transparent;
  color:#94a3b8;
}
.pcf-menuBtn:disabled{ opacity:.9; cursor:default; }

.pcf-body{
  padding:14px;
}

.pcf-loading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:22px 10px;
  color:#64748b;
  font-weight:700;
}

.pcf-error{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #fecaca;
  background:#fff1f2;
  color:#9f1239;
  font-weight:800;
}
.pcf-empty{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:14px;
  border:1px dashed #e5e7eb;
  background:#fbfdff;
  color:#64748b;
  font-weight:700;
}
.pcf-emptyIcon{ color:#94a3b8; }
.pcf-emptyText{ line-height:1.35; }

.pcf-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.pcf-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:16px;
  text-decoration:none;
  color:inherit;
  background:#fff;
}
.pcf-row:hover{ background:#f8fafc; }

.pcf-rowLeft{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:1 1 auto;
}
.pcf-avatar{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#f1f5f9;
  overflow:hidden;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pcf-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.pcf-avatarFallback{
  color:#94a3b8;
}

.pcf-rowMain{
  min-width:0;
  flex:1 1 auto;
}
.pcf-rowTitle{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:#0b1220;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.pcf-pin{
  color:#64748b;
  flex:0 0 auto;
}
.pcf-rowMeta{
  margin-top:2px;
  font-size:12px;
  color:#6b7280;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.pcf-rowRight{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}
.pcf-pill{
  display:inline-flex;
  align-items:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-size:11px;
  font-weight:800;
  color:#334155;
  max-width:220px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.pcf-footer{
  padding:12px 16px 16px;
  border-top:1px solid #e5e7eb;
  display:flex;
  justify-content:center;
}
.pcf-moreBtn{
  height:40px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-weight:500;
  color:#0b1220;
}
.pcf-moreBtn:hover{ background:#f8fafc; }
