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

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

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

.yumanse-community-stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

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

.yumanse-discussion-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.25);
}

.yumanse-category-card {
    transition: all 0.5s ease;
}

.yumanse-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.35);
}

@keyframes yumanse-community-fade-in {
    0% { opacity: 0; transform: translateY(35px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.yumanse-category-card {
    animation: yumanse-community-fade-in 1s ease-out forwards;
}

.yumanse-category-card:nth-child(1) { animation-delay: 0.2s; }
.yumanse-category-card:nth-child(2) { animation-delay: 0.4s; }
.yumanse-category-card:nth-child(3) { animation-delay: 0.6s; }