<style>
    .stars {
        position: absolute;
        z-index: 2;
    }

    .star {
        color: #f4c430;
        font-size: 10px;
        animation: color-cycle 1.2s ease-in-out infinite alternate;
    }

    #star1 {
        position: absolute;
        top: -6px;
        left: 36px;
    }

    #star2 {
        position: absolute;
        top: -11px;
        left: 41px;
    }

    #star3 {
        position: absolute;
        top: -13px;
        left: 48px;
    }

    #star4 {
        position: absolute;
        top: -13px;
        left: 55px;
    }

    #star5 {
        position: absolute;
        top: -11px;
        left: 62px;
    }

    #star6 {
        position: absolute;
        top: -6px;
        left: 68px;
    }

    .pulse {
        animation: pulse 1.4s ease-in-out infinite, color-cycle 1.2s ease-in-out infinite alternate;
        transform-origin: center;
    }

    .stars .star:nth-child(2) { animation-delay: 0.12s; }
    .stars .star:nth-child(3) { animation-delay: 0.24s; }
    .stars .star:nth-child(4) { animation-delay: 0.36s; }
    .stars .star:nth-child(5) { animation-delay: 0.48s; }
    .stars .star:nth-child(6) { animation-delay: 0.60s; }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.9;
        }

        50% {
            transform: scale(1.35);
            opacity: 1;
        }
    }

    @keyframes color-cycle {
        from {
            color: #009c3b;
        }

        to {
            color: #ffdf00;
        }
    }

    .bola {
        position: absolute;
        z-index: 1;
        left: 92px;
        bottom: 2px;
        width: 10px;
        height: 10px;
        animation: girar-bola 2s linear infinite;
        transform-origin: center;
    }

    .bola_backend {
        position: absolute;
        z-index: 1;
        left: 93px;
        bottom: 8px;
        width: 10px;
        height: 10px;
        animation: girar-bola 2s linear infinite;
        transform-origin: center;
    }

    @keyframes girar-bola {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }
</style>