
.hwsc-container {
	margin: 15px 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hwsc-icon {
	display: inline-block;
	margin-right: 5px;
}
.hwsc-icon-smile:before {
	content: '😊';
}
.hwsc-icon-star:before {
	content: '⭐';
}
.hwsc-icon-heart:before {
	content: '❤️';
}
.hwsc-animation-fade {
	animation: hwscFade 1s ease-in;
}
.hwsc-animation-slide {
	animation: hwscSlide 0.5s ease-out;
}
.hwsc-animation-bounce {
	animation: hwscBounce 0.5s ease;
}
@keyframes hwscFade {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes hwscSlide {
	from { transform: translateX(-20px); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}
@keyframes hwscBounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}