body {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  background-color: #ff5c00;
  color: white;
  text-transform: uppercase;
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  border-bottom: 1px solid white;
}

.logo {
  border: 2px solid white;
  padding: 10px 20px;
  margin-right: 20px;
}

.title {
  font-size: 28px;
  margin-right: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  border-bottom: 1px solid white;
}

.hero-text {
  width: 50%;
}

.hero-text h2 {
  font-size: 16px;
}

.hero-text h3 {
  font-size: 48px;
  margin: 10px 0;
}

.hero-text p {
  margin-bottom: 20px;
}

.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.comic-cover {
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  border: 2px solid white;
}

button {
  background: transparent;
  border: 2px solid white;
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  padding: 10px 30px;
  cursor: pointer;
}

.featured-characters {
  padding: 40px;
  border-bottom: 1px solid white;
}

.featured-characters h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.characters {
  display: flex;
  justify-content: space-between;
}

.character {
  text-align: center;
}

.char-img {
  background: black;
  color: white;
  border: 2px solid white;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.latest-updates {
  padding: 40px;
}

.latest-updates h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.latest-updates ul {
  list-style: disc;
  padding-left: 20px;
}

footer {
  border-top: 1px solid white;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/* Library Page Styles */
.comics-grid {
  padding: 40px;
  border-bottom: 1px solid white;
}

.comics-grid h2 {
  font-size: 18px;
  margin-bottom: 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.comic-issue {
  text-align: center;
  padding: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.comic-issue:hover {
  border: 1px solid #00ff00;
  background: rgba(0, 255, 0, 0.05);
}

.comic-cover-grid {
  background: black;
  color: white;
  border: 2px solid white;
  width: 200px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  font-size: 14px;
  transition: all 0.3s ease;
}

.comic-issue h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #00ff00;
}

.comic-issue p {
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: none;
  opacity: 0.8;
}

.comic-issue button {
  margin-top: 10px;
  font-size: 12px;
  padding: 8px 20px;
}
