/* CLEAN4.5.14.1.2.3.3.1 — geometry-stable universal player choice-state clarity */
:root{
  --bpf-choice-ring:#ffffff;
  --bpf-choice-check-bg:#ffffff;
  --bpf-choice-check-fg:#07111c;
  --bpf-choice-glow:rgba(255,255,255,.24);
}
.bpf-choice-control{
  position:relative !important;
  transition:border-color .16s ease,box-shadow .16s ease,background .16s ease,opacity .16s ease;
  transform:none !important;
}
.bpf-choice-control.bpf-choice-selected{
  border-color:var(--bpf-choice-ring) !important;
  outline:2px solid var(--bpf-choice-ring) !important;
  outline-offset:-3px !important;
  background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(196,30,58,.24)) !important;
  box-shadow:0 0 0 4px var(--bpf-choice-glow),0 10px 26px rgba(0,0,0,.24) !important;
  transform:none !important;
  opacity:1 !important;
}
.bpf-choice-control.bpf-choice-selected::after{
  content:"✓";
  position:absolute;
  top:7px;
  right:7px;
  width:24px;
  height:24px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--bpf-choice-check-bg);
  color:var(--bpf-choice-check-fg) !important;
  -webkit-text-fill-color:var(--bpf-choice-check-fg) !important;
  font:900 15px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  box-shadow:0 2px 8px rgba(0,0,0,.30);
  pointer-events:none;
  z-index:4;
}
.bpf-choice-control[aria-pressed="false"]{opacity:.78;}
.bpf-choice-control:focus-visible{outline:3px solid var(--bpf-choice-ring) !important;outline-offset:2px !important;}
@media (prefers-reduced-motion:reduce){.bpf-choice-control{transition:none !important}}
