/* ── mod-live-feed ───────────────────────────────────────── */
.vdm-livefeed-toast {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; margin: 0 0 14px;
  background: #11151c; color: #fff;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 4px 20px rgba(17,21,28,.35);
  animation: vdm-lf-slide-in .3s cubic-bezier(.175,.885,.32,1.275);
  transition: opacity .4s ease, transform .4s ease;
}
@keyframes vdm-lf-slide-in {
  from { opacity:0; transform:translateY(-12px); }
  to   { opacity:1; transform:translateY(0); }
}
.vdm-lf-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff1700; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,23,0,.5);
  animation: vdm-lf-dot-pulse 1.2s ease infinite;
}
@keyframes vdm-lf-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,23,0,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(255,23,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,23,0,0); }
}
.vdm-livefeed-toast span { flex: 1; }
.vdm-lf-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 18px; cursor: pointer; padding: 0 4px; line-height: 1;
  transition: color .15s;
}
.vdm-lf-close:hover { color: #fff; }

/* Badge "Nouveau" dans le popup */
.vdm-lf-new-badge {
  background: #ff1700; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 5px 12px; text-align: center;
  letter-spacing: .04em;
}

/* Pulse sur le marqueur new */
@keyframes vdm-marker-pulse {
  0%,100% { filter: drop-shadow(0 0 0 rgba(255,23,0,0)); }
  50%      { filter: drop-shadow(0 0 12px rgba(255,23,0,.8)); }
}
.vdm-marker-pulse .vdm-pin { animation: vdm-marker-pulse 1s ease 3; }
