/* Dark UI for Porn Comic Playlists */
:root { --mmp-card-bg: #111418; --mmp-card-border: #222831; --mmp-text: #e8e8e8; --mmp-muted:#aeb3b8; --mmp-accent:#6ea8fe; }

/* Archive grid (collections) */
.mmp-collections {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(420px,1fr));
  gap: 18px;
}
.mmp-collections__header { margin: 8px 0 14px; }
.mmp-collections__subtitle { color: var(--mmp-muted); margin-top: 6px; }

.mmp-collection {
  background: var(--mmp-card-bg);
  border: 1px solid var(--mmp-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgb(0 0 0 / 22%);
}
.mmp-collection__media {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  padding: 10px;
  background: #0b0e12;
}
.mmp-collection__media img {
  width: 100%; height: 160px; object-fit: cover; border-radius: 10px;
}
.mmp-collection__body { padding: 12px 14px 14px; }
.mmp-collection__title { margin: 0 0 4px; font-size: 1.05rem; }
.mmp-collection__title a { color: var(--mmp-text); text-decoration: none; }
.mmp-collection__title a:hover { color: var(--mmp-accent); }
.mmp-collection__excerpt {
  color: var(--mmp-muted);
  margin: 6px 0 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mmp-collection__cta {
  display: inline-block; text-align: center;
  width: 100%; padding: 10px 12px;
  background: transparent; border: 1px solid var(--mmp-accent);
  color: var(--mmp-accent); border-radius: 10px; text-decoration: none; font-weight: 600;
}
.mmp-collection__cta:hover { background: var(--mmp-accent); color: #0c1118; }

/* Single playlist hero */
.mmp-hero { margin: 4px 0 14px; }
.mmp-hero__title { margin: 0 0 6px; font-size: 1.35rem; color: var(--mmp-text); }
.mmp-hero__desc { color: var(--mmp-muted); margin: 0 0 6px; }
.mmp-hero__meta { color: var(--mmp-muted); font-size: .95rem; }

/* Single playlist cards */
.mmp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 14px;
}
.mmp-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--mmp-card-bg);
  border: 1px solid var(--mmp-card-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--mmp-text);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.mmp-card:hover { transform: translateY(-2px); border-color: #2c3542; box-shadow: 0 6px 18px rgb(0 0 0 / 25%); }

.mmp-card__thumb { aspect-ratio: 3/4; background: #0b0e12; }
.mmp-card__thumb img { width: 100%; height: 100%; object-fit: cover; display:block; }

.mmp-card__body { padding: 10px; }
.mmp-card__title {
  margin: 0; font-size: .95rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Pagination */
.mmp-pagination ul { margin: 18px 0; padding: 0; }
.mmp-pagination ul li { display:inline-block; margin-right: 6px; }