/* Cog Animation - Full SVG Rotation Effect */
/* Base state with smooth transition */
[data-name="CogAnimate"] {
transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
transform-origin: center;
}
/* Hover state with 180 degree rotation */
[data-name="CogAnimate"]:hover {
transform: rotate(180deg);
}