body.env-test:not(.path-admin)::before {
  content: "TEST\ASITE";
  white-space: pre;               /* required for \A line break */

  position: fixed;
  top: 80%;
  left: 90%;
  transform: translate(-50%, -50%) rotate(-12deg);

  /* Circle size */
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Stamp styling */
  border: 4px solid rgba(180, 0, 0, 0.55);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(180, 0, 0, 0.25),
    0 0 10px rgba(0, 0, 0, 0.12);

  background: rgba(255, 255, 255, 0.04);

  /* Larger, more confident text */
  font-size: 1.9rem;              /* ← increased from 1.6rem */
  font-weight: 800;
  letter-spacing: 0.20rem;
  line-height: 1.05;              /* tighter for two lines */
  color: rgba(180, 0, 0, 0.55);
  text-transform: uppercase;
  text-align: center;

  z-index: 9999;
  pointer-events: none;
  user-select: none;
}



/* 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 */
  }
}
