@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');

body {
  margin: 0;
  background: black;
  color: lime;
	font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  padding: 24px;
}

.terminal {
  max-width: 800px;
  margin: 0 auto;
}

.header {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  border-bottom: 1px solid #00ff00;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.output p {
  margin: 0;
  line-height: 1.5;
  white-space: pre-wrap;
}

.input-line {
  display: flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid #00ff00;
  padding: 8px;
}

.prompt {
  margin-right: 10px;
}

#cmd {
  background: transparent;
  border: none;
  color: #00ff00;
  font-family: inherit;
  font-size: inherit;
  width: 800px;
  outline: none;
}

.command {
  color: #00ff00;
}

/* Hide zine initially */
.zine-section {
  display: none;
  border: 1px solid #00ff00;
  padding: 20px;
  margin: 40px auto;
  max-width: 800px;
}

.zine-section.visible {
  display: block;
}

.zine-section h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-container {
  text-align: center;
}

.carousel-image {
  width: 800px;
  max-width: 800px;
  border: 1px solid #00ff00;
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-controls {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.carousel-controls button {
  background: transparent;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 5px 12px;
  font-family: inherit;
  cursor: pointer;
}

#article-title, #article-caption {
  transition: opacity 0.4s ease;
  opacity: 1;
}