/* zine.css – 1980s zine aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Rubik+Mono+One&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #fff url('https://www.transparenttextures.com/patterns/paper-fibers.png') repeat;
  color: #000;
  font-family: 'Special Elite', monospace;
  line-height: 1.5;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Rubik Mono One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1rem 0;
  text-shadow: 1px 1px 0 #000, 2px 2px 0 #fff;
  background: #000;
  color: #fff;
  padding: 0.25em 0.5em;
  display: inline-block;
}

p {
  margin: 1em 0;
}

a {
  color: #000;
  background: yellow;
  text-decoration: none;
  padding: 0.1em 0.3em;
  border: 1px solid #000;
}

a:hover {
  background: #000;
  color: #fff;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border: 2px dashed #000;
  box-shadow: 6px 6px 0 #000;
}

img {
  max-width: 100%;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  margin: 1rem 0;
}

.cutout {
  transform: rotate(-1deg);
  border: 1px dashed #000;
  padding: 0.5rem;
  background: #eee;
  display: inline-block;
  margin: 0.5rem 0;
}

hr {
  border: none;
  border-top: 2px dashed #000;
  margin: 2rem 0;
}

.cover-image {
  width: 153px;
  height: 198px;
}

/* Limit no-highlight behavior to the cover image link */
a.cover-link {
  all: unset; /* Reset all anchor styling */
  display: inline-block;
}

a.cover-link img {
  pointer-events: auto;  /* Allow image to be clicked */
  user-select: none;     /* Prevent blue highlight on drag */
  -webkit-user-drag: none; /* Prevent image dragging in Safari/Chrome */
}


