/* ==========================================
   MANGA PAGE STYLES
   ========================================== */

.manga-hero {
  position: relative;
  z-index: 1;
  padding: 130px 40px 50px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.manga-hero-icons {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 24px;
  font-size: 32px;
  opacity: 0.6;
}

.manga-hero-icons i {
  background: linear-gradient(135deg, #ec4899, #d946ef, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(217, 70, 239, 0.6));
  animation: floatBook 3s ease-in-out infinite;
}

.manga-hero-icons i:nth-child(2) { animation-delay: 0.3s; font-size: 40px; }
.manga-hero-icons i:nth-child(3) { animation-delay: 0.6s; }

@keyframes floatBook {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.manga-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(217, 70, 239, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: #f0abfc;
  margin-bottom: 24px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease;
}

.manga-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text-pink {
  background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #c084fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradientShine 4s ease infinite;
  filter: drop-shadow(0 4px 20px rgba(217, 70, 239, 0.4));
}

.manga-hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.9;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.manga-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 36px;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.08), rgba(236, 72, 153, 0.04));
  border: 1px solid rgba(217, 70, 239, 0.25);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(15px);
  animation: fadeInUp 0.6s ease 0.3s both;
  flex-wrap: wrap;
  justify-content: center;
}

.manga-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}

.manga-stat i {
  font-size: 20px;
  color: #d946ef;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.5));
}

.manga-stat-value {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #ec4899, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.manga-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Manga Filters Section */
.manga-filters-section {
  position: relative;
  z-index: 1;
  padding: 0 40px 24px;
  max-width: 1500px;
  margin: 0 auto;
}

.manga-filters {
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.05), rgba(28, 20, 53, 0.6)) !important;
  border-color: rgba(217, 70, 239, 0.15) !important;
}

/* Manga Card hover - Pink theme */
.manga-card:hover .anime-card-img img {
  filter: brightness(1.1) saturate(1.2);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .manga-hero { padding: 110px 20px 36px; }
  .manga-filters-section { padding: 0 16px 20px; }
}

@media (max-width: 600px) {
  .manga-hero { padding: 90px 16px 28px; }
  .manga-hero-icons { font-size: 22px; gap: 20px; margin-bottom: 18px; }
  .manga-hero-icons i:nth-child(2) { font-size: 28px; }
  .manga-hero-badge { padding: 6px 16px; font-size: 11.5px; margin-bottom: 18px; }
  .manga-hero-title { font-size: 26px; line-height: 1.3; padding: 0 8px; }
  .manga-hero-desc { font-size: 13px; line-height: 1.8; margin-bottom: 24px; padding: 0 8px; }
  .manga-hero-stats { gap: 16px; padding: 16px 20px; flex-wrap: wrap; }
  .manga-stat { min-width: 65px; }
  .manga-stat i { font-size: 16px; }
  .manga-stat-value { font-size: 22px; }
  .manga-stat-label { font-size: 10px; }
  .manga-filters-section { padding: 0 12px 16px; }
}
