.zine-page {
  background: url('images/bg-paper.jpg') repeat;
  font-family: 'Comic Sans MS', cursive;
  margin: 0;
  padding: 0;
}

.zine-wrapper {
  max-width: 700px;
  margin: 2rem auto;
  background: #fffef6;
  border: 4px dashed hotpink;
  padding: 2rem;
  position: relative;
  box-shadow: 10px 10px 0 #000;
  transform: rotate(-0.5deg);
}

.zine-content {
  position: relative;
  padding: 1rem;
}

.page-title {
  font-size: 2.5em;
  color: hotpink;
  font-family: 'Pretty Kelly', cursive;
  transform: rotate(-2deg);
}

.page-text {
  font-size: 1.2em;
  transform: rotate(1deg);
  margin-top: 1em;
}

.tape {
  position: absolute;
  width: 60px;
  opacity: 0.7;
}

.tape.top-left {
  top: -20px;
  left: -20px;
  transform: rotate(-15deg);
}

.sticker.bottom-right {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  transform: rotate(10deg);
}

.zine-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.zine-nav a {
  background: yellow;
  padding: 0.5rem 1rem;
  border: 2px dotted #000;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(1.5deg);
}

.zine-nav a:hover {
  background: pink;
  box-shadow: 3px 3px #000;
}
.zine-wrapper {
  animation: pageFlip 0.5s ease;
}

@keyframes pageFlip {
  from { transform: rotateY(10deg) scale(0.98); opacity: 0; }
  to { transform: rotateY(0deg) scale(1); opacity: 1; }
}
