 /* Tabs */
    .tabs {
      display: flex;
      justify-content: center;
      margin: 1rem 0;
      gap: 0.5rem;
    }

    .tabs button {
      background: #111;
      border: 1px solid #b00020;
      border-radius: 6px;
      color: white;
      padding: 0.5rem 1rem;
      cursor: pointer;
      font-weight: bold;
      transition: 0.2s;
    }

    .tabs button.active {
      background: #b00020;
    }

    /* List Komik */
    .list-komik {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 150px)); /* ✅ Ukuran tetap */
  gap: 1rem;
  justify-content: center; /* ✅ Supaya rata tengah */
  padding: 1rem;
}

.komik-item {
  background-color: #222;
  border: 1px solid #b00020;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.komik-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.komik-item h3 {
  font-size: 0.85rem;
  margin: 8px 0 4px;
  min-height: 2.2em;
  line-height: 1.1em;
  color: #fff;
}

.komik-item p {
  margin: 4px 0;
  font-size: 0.75rem;
  color: #ccc;
  min-height: 1.2em;
  line-height: 1.2em;
}