#wpsg-warning {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  max-width: min(92vw, 520px);
  text-align: center;
  z-index: 2147483647;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
#wpsg-warning.wpsg-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wpsg-no-select body,
.wpsg-no-select body *:not(input):not(textarea):not(select) {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
