/* paywall_warn_5m.v1.css — green, non-intrusive, no layout shifts */
#vd-warn-5m {
  position: fixed;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  min-width: 320px;
  max-width: 90vw;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 255, 170, 0.10);
  border: 1px solid rgba(0, 255, 170, 0.35);
  box-shadow: 0 6px 24px rgba(0, 255, 170, 0.12);
  backdrop-filter: blur(6px);
  font-family: "Object Sans", "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #d9fff1;
  line-height: 1.25;
  text-align: center;
}
#vd-warn-5m strong { color: #8fffe0; }
#vd-warn-5m .vd-warn-close {
  margin-left: 10px;
  cursor: pointer;
  font-weight: 700;
  opacity: 0.7;
  transition: opacity .15s ease;
}
#vd-warn-5m .vd-warn-close:hover { opacity: 1; }
#vd-warn-5m.vd-show { display: block; animation: vdFadeIn .18s ease-out; }
@keyframes vdFadeIn { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
