jQuery(document).ready(function($) {
    $('#botao-girar').on('click', function() {
        const email = $('#email_roleta').val().trim();
        if (!email) { alert('Digite seu e-mail!'); return; }

        $(this).prop('disabled', true).text('Girando...');
        $('#resultado-roleta').html('');

        const angulo = Math.floor(Math.random() * 3600)+720;
        $('.sbc-roleta').css('transform', `rotate(${angulo}deg)`);

        setTimeout(() => {
            $.post(sbc_vars.ajax_url, {
                action: 'sbc_girar_roleta',
                nonce: sbc_vars.nonce,
                email: email
            }, function(res) {
                if (res.success) {
                    $('#resultado-roleta').html(`?? Você ganhou: <strong>${res.data.premio}</strong><br>E-mail enviado com o comprovante!`);
                } else {
                    $('#resultado-roleta').html(`? ${res.data}`);
                }
                $('#botao-girar').prop('disabled', false).text('Girar Novamente');
            });
        }, 4200);
    });
});