.yjmh-library-layout {
    min-height: 100vh;
}

.yjmh-library-hero {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
}

.yjmh-search-panel {
    transition: all 0.3s ease;
}

.yjmh-search-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.15);
}

.yjmh-category-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yjmh-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.yjmh-category-card:hover::before {
    left: 100%;
}

.yjmh-category-card:hover {
    transform: translateY(-8px);
}

.yjmh-category-icon {
    transition: all 0.3s ease;
}

.yjmh-category-card:hover .yjmh-category-icon {
    transform: scale(1.15) rotate(5deg);
}

@media (max-width: 768px) {
    .yjmh-search-form {
        flex-direction: column;
    }
    
    .yjmh-search-form > div {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .yjmh-categories-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .yjmh-category-card {
        padding: 1.5rem;
    }
}