/* ─────────────────────────────────────────────────────────────
 * global.css — site-wide utility classes
 * Loaded by pages that don't pull pages.css.
 * Keep this file TINY. Anything page-specific belongs elsewhere.
 * ───────────────────────────────────────────────────────────── */

/* Subtle fixed-position watermark for pages without a normal page-footer.
 * Low opacity so it doesn't compete with content. Ignores pointer events
 * so it never blocks a click on anything underneath it. */
.page-copyright {
  position: fixed;
  bottom: 6px;
  left: 10px;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 9px;
  color: rgba(200, 200, 200, 0.18);
  letter-spacing: 2px;
  z-index: 10;
  pointer-events: none;
}
