.yhm-creator-layout {
    min-height: 100vh;
}

.yhm-creator-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(236, 72, 153, 0.1));
}

.yhm-creator-profile {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yhm-creator-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 1s ease;
    animation: yhmCreatorGlow 3s ease-in-out infinite;
}

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

.yhm-work-card {
    transition: all 0.3s ease;
}

.yhm-work-card:hover {
    transform: translateY(-8px);
}

.yhm-tool-card {
    transition: all 0.3s ease;
}

.yhm-tool-card:hover {
    transform: translateY(-6px);
}

.yhm-creator-stats .yhm-stat-item {
    transition: all 0.3s ease;
}

.yhm-creator-stats .yhm-stat-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .yhm-creator-header {
        flex-direction: column;
        text-align: center;
    }
    
    .yhm-creator-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}