.site-page-overlay {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.55);
  font-family: Roboto, "Segoe UI", system-ui, sans-serif;
}

.site-page-overlay__card {
  width: min(100%, 420px);
  padding: 28px 24px;
  border-radius: 12px;
  background: var(--fds-surface, #fff);
  color: var(--fds-on-surface-hi, rgba(0, 0, 0, 0.87));
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.site-page-overlay__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.site-page-overlay__message {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: var(--fds-on-surface-mid, rgba(0, 0, 0, 0.6));
}

.site-page-overlay__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-page-overlay__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  background: #efbf01;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-page-overlay__button--secondary {
  background: transparent;
  color: var(--fds-on-surface-hi, rgba(0, 0, 0, 0.87));
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.site-link-guard-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10070;
  max-width: min(92vw, 360px);
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  font-family: Roboto, "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
  animation: site-link-guard-toast-in 0.2s ease-out;
}

@keyframes site-link-guard-toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
