.comic-details {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
    color: #eee;
  }
  .comic-header {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .comic-cover-large {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }
  .comic-info {
    flex: 1;
    min-width: 200px;
  }
  .comic-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: #fff;
  }
  .comic-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
  }
  .chapter-heading {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: #fff;
  }
  .chapter-list {
    list-style: none;
    padding: 0;
  }
  .chapter-item {
    background: #1e1e1e;
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .chapter-item:hover {
    background: #2a2a2a;
  }
  .chapter-list a {
    text-decoration: none;
    color: #007dfc;
    font-weight: bold;
  }