/* =========================
   P4P — UFC-style list
   ========================= */
#p4p .p4p-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:.5rem;
}
#p4pList{
  list-style:none; padding:0; margin:0;
  border-top:1px solid rgba(255,255,255,.08);
}
.p4p-item{
  display:grid; grid-template-columns: auto 1fr auto;
  gap:12px; align-items:center;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.p4p-badge{
  width:36px; height:36px; border-radius:6px;
  display:grid; place-items:center;
  background:#ef4444; /* red-500 */
  color:#fff; font:700 16px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.p4p-name{
  font:700 16px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:#fff;
}
.p4p-rec{
  font:700 16px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:#e5e7eb;
}