/* Triggerz code-protection toast — shared across all pages.
   Branded: dark surface, mint-green border/glow, lightning icon. */
.tz-protect-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  width: fit-content;
  max-width: none;
  white-space: nowrap;
  padding: 13px 18px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #eafff7;
  background: rgba(13, 18, 23, 0.97);
  border: 1px solid #2ee6a6;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(46, 230, 166, 0.25),
    0 0 22px rgba(46, 230, 166, 0.35),
    0 12px 34px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.tz-protect-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tz-protect-toast__icon {
  display: inline-flex;
  flex: none;
  width: 22px;
  height: 22px;
  color: #2ee6a6;
  filter: drop-shadow(0 0 6px rgba(46, 230, 166, 0.7));
}

.tz-protect-toast__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tz-protect-toast__text {
  display: block;
}

@media (max-width: 480px) {
  .tz-protect-toast {
    bottom: 18px;
    padding: 11px 15px;
    font-size: 13px;
    /* On smartphones the single-line text gets too wide; let it wrap and
       keep the toast inside the viewport again. */
    max-width: 92vw;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tz-protect-toast {
    transition: opacity 0.2s ease, visibility 0.2s;
  }
}
