@keyframes pebdSlideIn {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.pebd-proof {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 99999;
  width: min(420px, calc(100vw - 36px));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  padding: 12px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.pebd-proof.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: pebdSlideIn 280ms ease;
}

.pebd-proof__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #790505;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  flex: 0 0 auto;
}

.pebd-proof__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  opacity: 0.95;
}

.pebd-proof__body {
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.25;
}

.pebd-proof__headline {
  font-weight: 650;
  font-size: 14px;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pebd-proof__sub {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(0,0,0,0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pebd-proof__meta {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,0.46);
  display: flex;
  gap: 10px;
  align-items: center;
}

.pebd-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  display: inline-block;
}

.pebd-proof__close {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  color: rgba(0,0,0,0.45);
  transition: background 160ms ease, color 160ms ease;
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
}

.pebd-proof__close:hover {
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.72);
}

@media (max-width: 480px) {
  .pebd-proof { left: 12px; bottom: 12px; width: calc(100vw - 24px); }
}

.pebd-proof__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  color: rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}
