/* Preview watermark — Antonio Colamartino */
.acm-watermark {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(24, 20, 16, 0.82);
  color: #f3ede2;
  text-decoration: none;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  user-select: none;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.acm-watermark:hover {
  background: #e35d4a;
  color: #181410;
  transform: translateY(-1px);
}
.acm-watermark::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e35d4a;
  transition: background .2s ease;
}
.acm-watermark:hover::before { background: #181410; }
.acm-watermark-bg {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    -28deg,
    transparent 0,
    transparent 220px,
    rgba(24, 20, 16, 0.045) 220px,
    rgba(24, 20, 16, 0.045) 221px
  );
}
.acm-watermark-bg::after {
  content: 'PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO  ·  PREVIEW · ANTONIO COLAMARTINO';
  position: absolute;
  top: 50%; left: 50%;
  width: 200vmax;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-28deg);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(24, 20, 16, 0.055);
  white-space: nowrap;
  line-height: 3.4;
  word-spacing: 0.6em;
}
