/* Global ACNHS watermark overlay */
body.acnhs-watermarked{
  position:relative;
  min-height:100vh;
  background-attachment:fixed;
}

body.acnhs-watermarked::before{
  content:"";
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:520px;
  height:520px;
  background-image:url('../assets/images/Seal.png');
  background-repeat:no-repeat;
  background-size:contain;
  opacity:0.08;
  pointer-events:none;
  z-index:-1;
  filter:saturate(0.9);
}

@media (max-width:768px){
  body.acnhs-watermarked::before{
    width:360px;
    height:360px;
    opacity:0.06;
  }
}

@media print{
  body.acnhs-watermarked::before{
    opacity:0.12;
  }
}
