* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background-color: #F4EFEB;
  color: #0B0F10;
  padding: 20px;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: 
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.01), rgba(0, 255, 0, 0.005), rgba(0, 0, 255, 0.01));
  background-size: 100% 4px, 6px 100%;
  z-index: 999;
  pointer-events: none;
}
.zine-container {
  max-width: 900px;
  margin: 0 auto;
  border: 3px solid #0B0F10;
  padding: 30px;
  background-color: #F4EFEB;
  box-shadow: 8px 8px 0px 0px #0B0F10;
}
.zine-header {
  border-bottom: 3px double #0B0F10;
  padding-bottom: 20px;
  text-align: center;
}
.zine-meta {
  font-size: 0.8rem;
  font-weight: bold;
}
.logo-text {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 10px 0;
  letter-spacing: -2px;
}
.zine-sub {
  font-size: 0.8rem;
  font-weight: bold;
}
.zine-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin: 40px 0;
  align-items: center;
}
.hero-title-box {
  border: 3px solid #0B0F10;
  padding: 24px;
  background-color: #FFFFFF;
  box-shadow: 4px 4px 0px 0px #0B0F10;
}
.hero-title-box h2 {
  margin-top: 0;
  font-size: 2.2rem;
  border-bottom: 2px solid #0B0F10;
  display: inline-block;
  padding-bottom: 4px;
}
.highlight {
  background-color: #FF5A5F;
  color: #FFFFFF;
  padding: 4px 8px;
  display: inline-block;
}
.cassette-player {
  border: 3px solid #0B0F10;
  background-color: #EFA83E;
  padding: 20px;
  box-shadow: 5px 5px 0px 0px #0B0F10;
  text-align: center;
  position: relative;
}
.player-label {
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.cassette-body {
  background-color: #0B0F10;
  height: 90px;
  border-radius: 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
}
.tape-wheel {
  width: 40px;
  height: 40px;
  background-color: #F4EFEB;
  border-radius: 50%;
  border: 6px solid #EFA83E;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.tape-wheel.playing {
  animation: spin 3s linear infinite;
}
.player-controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.control-btn {
  background-color: #FFFFFF;
  border: 2px solid #0B0F10;
  font-weight: bold;
  padding: 6px 12px;
  cursor: pointer;
}
.control-btn:hover {
  background-color: #FF5A5F;
  color: #FFFFFF;
}
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}
.collage-item {
  border: 3px solid #0B0F10;
  padding: 12px;
  background-color: #FFFFFF;
  box-shadow: 6px 6px 0px 0px #0B0F10;
  position: relative;
}
.collage-item img {
  width: 100%;
  height: auto;
  border: 2px solid #0B0F10;
}
.collage-item.p-1 { transform: rotate(-2deg); }
.collage-item.p-2 { transform: rotate(1.5deg); }
.marker {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.8rem;
}
.zine-giving {
  border-top: 3px double #0B0F10;
  padding-top: 30px;
}
.zine-giving h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.zine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.giving-card {
  border: 3px solid #0B0F10;
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 4px 4px 0px 0px #0B0F10;
  cursor: pointer;
  transition: transform 0.2s;
}
.giving-card:hover {
  transform: scale(1.03);
}
.giving-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}
.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF5A5F;
  display: block;
  margin: 8px 0;
}
.zine-form-section {
  border-top: 3px double #0B0F10;
  margin-top: 40px;
  padding-top: 30px;
}
.zine-form-section h2 {
  font-size: 1.8rem;
}
.zine-form {
  background-color: #FFFFFF;
  border: 3px solid #0B0F10;
  padding: 30px;
  box-shadow: 5px 5px 0px 0px #0B0F10;
}
.form-row {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-row label {
  font-weight: bold;
  font-size: 0.9rem;
}
.form-row input, .form-row select {
  flex: 1;
  border: none;
  border-bottom: 2px solid #0B0F10;
  padding: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.submit-btn {
  width: 100%;
  background-color: #0B0F10;
  color: #F4EFEB;
  border: 3px solid #0B0F10;
  padding: 12px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}
.submit-btn:hover {
  background-color: #FF5A5F;
}
.zine-footer {
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 60px;
  border-top: 3px double #0B0F10;
  padding-top: 20px;
}
@media (max-width: 800px) {
  .zine-hero, .zine-grid, .collage-grid { grid-template-columns: 1fr; }
}
