/* 在lockeElf.css中添加 */
@layer utilities {
    /* 原有样式保持不变 */
    .card-hover {
        @apply transition-all duration-300 hover:shadow-[0_0_15px_rgba(0,224,158,0.3)];
    }
    .property-pill {
        @apply px-2 py-0.5 rounded-full text-xs font-medium;
    }
    .bg-glass {
        @apply bg-secondary/60 backdrop-blur-sm;
    }
    .skill-tag {
        @apply px-2 py-0.5 rounded text-xs font-medium;
    }
    
}