/* Keyframes để tạo chuyển động xoay */
@keyframes rotate {
    0% {
        transform: rotate(0deg);    /* Bắt đầu từ góc 0 độ */
    }
    100% {
        transform: rotate(360deg);  /* Kết thúc xoay 360 độ */
    }
}