/* POXY CHAT — rank colors, micro-badges, quick inspect */
.poxychat-msg .pcm-head{align-items:center}
.pcm-micro-badge{
  width:18px;height:18px;
  border-radius:5px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  flex-shrink:0;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
}
.pcm-name--ranked{
  font-weight:800!important;
  text-shadow:0 0 12px currentColor;
}
.poxychat-msg .pcm-name{cursor:pointer;transition:opacity 0.2s}
.poxychat-msg .pcm-name:hover{opacity:0.85;text-decoration:underline}

.poxy-chat-inspect-popover{
  position:fixed;
  z-index:11000;
  width:min(280px,calc(100vw - 24px));
  padding:14px;
  border-radius:14px;
  background:#111114;
  border:1px solid rgba(249,171,255,0.3);
  box-shadow:0 20px 50px rgba(0,0,0,0.65),0 0 30px rgba(214,3,87,0.15);
  animation:poxy-chat-pop-in 0.25s cubic-bezier(0.16,1,0.3,1) both;
  pointer-events:auto;
}
.poxy-chat-inspect-popover[hidden]{display:none}
@keyframes poxy-chat-pop-in{
  from{opacity:0;transform:translateY(8px) scale(0.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
.poxy-chat-inspect-head{display:flex;gap:10px;align-items:center;margin-bottom:10px}
.poxy-chat-inspect-av{
  width:48px;height:48px;border-radius:12px;
  background:#1a1a1e;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;font-size:24px;
}
.poxy-chat-inspect-av img{width:100%;height:100%;object-fit:cover}
.poxy-chat-inspect-name{font-size:15px;font-weight:800;margin:0}
.poxy-chat-inspect-rank{font-size:10px;color:#9d8b9b;font-family:'JetBrains Mono',monospace}
.poxy-chat-inspect-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.poxy-chat-inspect-actions button{
  flex:1;
  min-width:80px;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:#0e0e12;
  color:#e5e2e1;
  font-size:10px;
  font-weight:600;
  cursor:pointer;
}
.poxy-chat-inspect-actions button:hover{border-color:#f9abff;color:#f9abff}

.poxy-profile-hud-sound{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  margin-top:12px;
  border-radius:12px;
  background:#141416;
  border:1px solid rgba(255,255,255,0.08);
  font-size:12px;
  color:#9d8b9b;
}
.poxy-profile-hud-sound label{cursor:pointer;flex:1}
.poxy-profile-hud-sound input{accent-color:#f9abff;width:18px;height:18px}
