#smartInspectGuardOverlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #ffffff;
  font-family: inherit;
  background: rgba(4, 8, 18, 0.62);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  backdrop-filter: blur(10px) saturate(115%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms cubic-bezier(.22,.61,.36,1),
    visibility 160ms cubic-bezier(.22,.61,.36,1),
    background 160ms cubic-bezier(.22,.61,.36,1),
    -webkit-backdrop-filter 160ms cubic-bezier(.22,.61,.36,1),
    backdrop-filter 160ms cubic-bezier(.22,.61,.36,1);
}

#smartInspectGuardOverlay.is-open {
  opacity: 1;
  visibility: visible;
}

#smartInspectGuardOverlay.is-locked {
  pointer-events: auto;
  background: rgba(4, 8, 18, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(116%);
  backdrop-filter: blur(12px) saturate(116%);
}

#smartInspectGuardOverlay.is-toast {
  place-items: center;
  background: rgba(4, 8, 18, 0.54);
  -webkit-backdrop-filter: blur(8px) saturate(112%);
  backdrop-filter: blur(8px) saturate(112%);
  pointer-events: none;
}

#smartInspectGuardOverlay .guard-card {
  width: min(88vw, 340px);
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  background: linear-gradient(180deg, rgba(22, 24, 31, 0.96), rgba(11, 13, 19, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
  transform: translate3d(0, 8px, 0) scale(0.985);
  transition:
    transform 170ms cubic-bezier(.22,.61,.36,1),
    border-color 170ms cubic-bezier(.22,.61,.36,1),
    box-shadow 170ms cubic-bezier(.22,.61,.36,1);
}

#smartInspectGuardOverlay.is-open .guard-card {
  transform: translateZ(0) scale(1);
}

#smartInspectGuardOverlay.is-toast .guard-card {
  width: min(86vw, 316px);
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(22, 24, 31, 0.95), rgba(11, 13, 19, 0.95));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

#smartInspectGuardOverlay .guard-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

#smartInspectGuardOverlay.is-toast .guard-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  font-size: 12px;
}

#smartInspectGuardOverlay .guard-card strong,
#smartInspectGuardOverlay .guard-title {
  display: block;
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

#smartInspectGuardOverlay .guard-card p,
#smartInspectGuardOverlay .guard-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.42;
}

#smartInspectGuardOverlay.is-toast .guard-card strong,
#smartInspectGuardOverlay.is-toast .guard-title {
  margin-bottom: 4px;
  font-size: 12.5px;
}

#smartInspectGuardOverlay.is-toast .guard-card p,
#smartInspectGuardOverlay.is-toast .guard-message {
  font-size: 11.25px;
  line-height: 1.34;
}

#smartInspectGuardOverlay.is-locked .guard-card {
  border-color: rgba(255, 90, 90, 0.25);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

html.smart-inspect-guard-locking,
html.smart-inspect-guard-locking body {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

body.smart-inspect-guard-active img,
body.smart-inspect-guard-active video,
body.smart-inspect-guard-active canvas,
body.smart-inspect-guard-active svg {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

@media (max-width: 520px) {
  #smartInspectGuardOverlay {
    padding: 16px;
  }

  #smartInspectGuardOverlay .guard-card {
    width: min(100%, 330px);
    padding: 15px;
    border-radius: 15px;
  }

  #smartInspectGuardOverlay.is-toast .guard-card {
    width: min(100%, 300px);
    padding: 12px 13px;
  }

  #smartInspectGuardOverlay .guard-card strong,
  #smartInspectGuardOverlay .guard-title {
    font-size: 13.5px;
  }

  #smartInspectGuardOverlay .guard-card p,
  #smartInspectGuardOverlay .guard-message {
    font-size: 11.75px;
  }
}

@media (max-height: 420px) {
  #smartInspectGuardOverlay {
    padding: 10px;
  }

  #smartInspectGuardOverlay .guard-card {
    padding: 11px 13px;
    border-radius: 13px;
  }

  #smartInspectGuardOverlay .guard-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
    font-size: 12px;
  }

  #smartInspectGuardOverlay .guard-card strong,
  #smartInspectGuardOverlay .guard-title {
    margin-bottom: 3px;
    font-size: 12.5px;
  }

  #smartInspectGuardOverlay .guard-card p,
  #smartInspectGuardOverlay .guard-message {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  #smartInspectGuardOverlay,
  #smartInspectGuardOverlay .guard-card {
    transition: none;
  }
}
