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

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

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

.yjmh-anime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 1s ease;
    animation: yjmhAnimeGlow 3s ease-in-out infinite;
}

@keyframes yjmhAnimeGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

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

.yjmh-play-overlay {
    transition: all 0.3s ease;
}

.yjmh-anime-card:hover {
    transform: translateY(-10px);
}

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

.yjmh-anime-category:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .yjmh-anime-featured {
        grid-template-columns: 1fr;
    }
    
    .yjmh-anime-categories {
        grid-template-columns: 1fr 1fr;
    }
    
    .yjmh-weekly-recommend {
        grid-template-columns: 1fr;
    }
}