html,
body{
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
}

a,
button,
input,
textarea,
select,
label{
  -webkit-user-select:auto;
  user-select:auto;
}

input,
textarea{
  -webkit-touch-callout:default;
}

img,
video,
canvas,
svg{
  -webkit-user-drag:none;
  user-drag:none;
  pointer-events:auto;
}

.syntia-protection-toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%) translateY(30px) scale(.96);
  z-index:9999999;
  padding:15px 22px;
  border-radius:999px;
  color:#f8fbff;
  font:900 .9rem Inter,sans-serif;
  background:rgba(8,12,20,.82);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.48);
  backdrop-filter:blur(26px);
  -webkit-backdrop-filter:blur(26px);
  opacity:0;
  pointer-events:none;
  transition:.35s ease;
}

.syntia-protection-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0) scale(1);
}