/* YuManSe Library Styles - hhx-library.com 2025 */

.yumanse-library-layout {
    --yumanse-library-accent: #8b5cf6;
    --yumanse-library-highlight: #ec4899;
}

.yumanse-search-panel {
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
}

.yumanse-search-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
}

.yumanse-manga-item {
    transition: all 0.5s ease;
}

.yumanse-manga-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

@keyframes yumanse-library-fade-in {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.yumanse-manga-item {
    animation: yumanse-library-fade-in 1s ease-out forwards;
}

.yumanse-manga-item:nth-child(1) { animation-delay: 0.1s; }
.yumanse-manga-item:nth-child(2) { animation-delay: 0.2s; }
.yumanse-manga-item:nth-child(3) { animation-delay: 0.3s; }
.yumanse-manga-item:nth-child(4) { animation-delay: 0.4s; }
.yumanse-manga-item:nth-child(5) { animation-delay: 0.5s; }