body.env-test:not(.path-admin)::before {
  position: fixed;
  z-index: 9999;
  top: 80%;
  left: 90%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Circle size */
  width: 10rem;
  height: 10rem;
  content: "TEST\ASITE";
  user-select: none;
  transform: translate(-50%, -50%) rotate(-12deg);
  text-align: center;
  white-space: pre; /* required for \A line break */
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  pointer-events: none;
  color: rgb(180, 0, 0, 0.55);

  /* Stamp styling */
  border: 4px solid rgb(180, 0, 0, 0.55);
  border-radius: 50%;
  background: rgb(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 4px rgb(180, 0, 0, 0.25),
    0 0 10px rgb(0, 0, 0, 0.12);

  /* Larger, more confident text */
  font-size: 1.9rem; /* ← increased from 1.6rem */
  font-weight: 800;
  line-height: 1.05; /* tighter for two lines */
}

/* on small media removes the watermark */
@media (min-width: 320px) and (max-width: 480px) {
  body.env-test:not(.path-admin)::before {
    content: none; /* removes the watermark */
  }
}
