{"id":8375,"date":"2026-09-23T10:17:30","date_gmt":"2026-09-23T10:17:30","guid":{"rendered":"https:\/\/blog.789bingo.com\/?p=8375"},"modified":"2026-09-23T10:54:52","modified_gmt":"2026-09-23T10:54:52","slug":"casino-cashback-calculation","status":"publish","type":"post","link":"https:\/\/blog.789bingo.com\/our-promo\/casino-cashback-calculation\/","title":{"rendered":"Casino Cashback Calculation: How Cashback and Rebates Actually Work"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"8375\" class=\"elementor elementor-8375\">\n\t\t\t\t<div class=\"elementor-element elementor-element-26bb9d7 e-flex e-con-boxed e-con e-parent\" data-id=\"26bb9d7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2f5a418 elementor-widget elementor-widget-text-editor\" data-id=\"2f5a418\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">A <\/span><b>casino cashback calculation<\/b><span style=\"font-weight: 400;\"> looks simple when an offer advertises a percentage. The difficult part sits one step earlier: what amount does that percentage apply to?<\/span><\/p><p><span style=\"font-weight: 400;\">A 10% cashback rate could refer to eligible net losses. Another program may calculate a smaller percentage from total qualifying bets. A third may use deposits as its calculation base. Older loyalty programs can convert wagering into points, then points into cash. These methods can produce very different rewards even when the promotional language sounds similar.<\/span><\/p><p><span style=\"font-weight: 400;\">For players in the Philippines, terminology matters even more. PAGCOR&#8217;s May 7, 2026 memorandum separates <\/span><b>cash rebates based on turnover or deposits<\/b><span style=\"font-weight: 400;\"> from <\/span><b>cashback based on net losses<\/b><span style=\"font-weight: 400;\">. The regulator also sets maximum rates for certain programs and requires operators to disclose qualification rules, wagering conditions, rates, coverage and settlement terms before implementation.<\/span><\/p><p><span style=\"font-weight: 400;\">So the first rule is straightforward.<\/span><\/p><p><b>Never calculate casino cashback from the percentage alone. Identify the calculation base first, or see if it has a fixed tier table.<\/b><\/p><p><span style=\"font-weight: 400;\">For a broader look at bonuses and active promotions, see the 789Bingo <\/span><a href=\"https:\/\/789bingo.com\/blog\/our-promo\/789bingo-online-casino-free-bonus\/?utm_source=chatgpt.com\"><span style=\"font-weight: 400;\">Online Casino Free Bonus<\/span><\/a><span style=\"font-weight: 400;\"> and Promos guide.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ff629c1 e-flex e-con-boxed e-con e-parent\" data-id=\"ff629c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-28cf4e5 elementor-widget elementor-widget-shortcode\" data-id=\"28cf4e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><style>\n\/* TABLE OF CONTENTS *\/\n.my-toc {\n    width: 100%;\n    padding: 20px 24px;\n    margin: 20px 0 30px;\n    background: #f7f7f7;\n    border: 1px solid #e5e5e5;\n    border-radius: 8px;\n}\n\n.my-toc-title {\n    font-size: 20px;\n    font-weight: 700;\n    margin-bottom: 15px;\n    color: #222;\n}\n\n.my-toc-list {\n    list-style: none;\n    padding: 0;\n    margin: 0;\n}\n\n.my-toc-list li {\n    margin: 8px 0;\n    padding: 0;\n}\n\n.my-toc-list li.toc-h3 {\n    padding-left: 20px;\n}\n\n.my-toc-list a {\n    color: #333;\n    text-decoration: none;\n    line-height: 1.5;\n}\n\n.my-toc-list a:hover {\n    color: #0073aa;\n    text-decoration: underline;\n}\n\n\/* Smooth scrolling *\/\nhtml {\n    scroll-behavior: smooth;\n}\n\n\/* Adjust this if you have a sticky header *\/\nh2[id],\nh3[id] {\n    scroll-margin-top: 100px;\n}\n<\/style>\n\n\n<div class=\"my-toc\">\n    <div class=\"my-toc-title\">Table of Contents<\/div>\n    <ul class=\"my-toc-list\" id=\"my-toc-list\"><\/ul>\n<\/div>\n\n\n<script>\n(function () {\n\n    function generateTOC() {\n\n        var toc = document.getElementById('my-toc-list');\n\n        if (!toc) return;\n\n        \/*\n         * Finds headings inside the main Elementor content.\n         * H2 = main TOC item\n         * H3 = sub-item\n         *\/\n        var headings = document.querySelectorAll(\n            '.elementor h2, .elementor h3'\n        );\n\n        if (!headings.length) {\n            document.querySelector('.my-toc').style.display = 'none';\n            return;\n        }\n\n        toc.innerHTML = '';\n\n        headings.forEach(function(heading, index) {\n\n            \/* Don't include headings inside the TOC itself *\/\n            if (heading.closest('.my-toc')) {\n                return;\n            }\n\n            \/* Create anchor ID *\/\n            if (!heading.id) {\n\n                var slug = heading.textContent\n                    .trim()\n                    .toLowerCase()\n                    .replace(\/[^a-z0-9\\s-]\/g, '')\n                    .replace(\/\\s+\/g, '-')\n                    .replace(\/-+\/g, '-');\n\n                if (!slug) {\n                    slug = 'section-' + (index + 1);\n                }\n\n                \/* Prevent duplicate IDs *\/\n                var originalSlug = slug;\n                var count = 2;\n\n                while (document.getElementById(slug)) {\n                    slug = originalSlug + '-' + count;\n                    count++;\n                }\n\n                heading.id = slug;\n            }\n\n            \/* Create TOC item *\/\n            var li = document.createElement('li');\n\n            if (heading.tagName.toLowerCase() === 'h3') {\n                li.className = 'toc-h3';\n            }\n\n            var link = document.createElement('a');\n\n            link.href = '#' + heading.id;\n            link.textContent = heading.textContent.trim();\n\n            li.appendChild(link);\n            toc.appendChild(li);\n        });\n    }\n\n    \/* Elementor\/frontend safe loading *\/\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', generateTOC);\n    } else {\n        generateTOC();\n    }\n\n})();\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-36cddec e-flex e-con-boxed e-con e-parent\" data-id=\"36cddec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a746be elementor-widget elementor-widget-heading\" data-id=\"5a746be\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Casino Cashback Calculation at a Glance<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-25c3b8a e-flex e-con-boxed e-con e-parent\" data-id=\"25c3b8a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e19c0b elementor-widget elementor-widget-text-editor\" data-id=\"4e19c0b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Different programs use different equations.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c738fbf e-flex e-con-boxed e-con e-parent\" data-id=\"c738fbf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dcc4eec elementor-widget elementor-widget-text-editor\" data-id=\"dcc4eec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<table><tbody><tr><td><p><b>Reward method<\/b><\/p><\/td><td><p><b>Basic calculation<\/b><\/p><\/td><td><p><b>Calculation base<\/b><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Net-loss cashback<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Eligible net loss \u00d7 cashback rate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Player&#8217;s qualifying net loss<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Turnover cash rebate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Eligible turnover \u00d7 rebate rate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Gross qualifying bets placed<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Deposit cash rebate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Qualifying deposit \u00d7 rebate rate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Eligible deposit amount<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Points-based cashback<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Cash reward \u00f7 wagering needed to earn it<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Player activity converted through points<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Fixed-tier rebate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Published reward for the reached tier<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Defined loss, turnover or activity bracket<\/span><\/p><\/td><\/tr><\/tbody><\/table>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-39e51d6 e-flex e-con-boxed e-con e-parent\" data-id=\"39e51d6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3d096d1 elementor-widget elementor-widget-text-editor\" data-id=\"3d096d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">CasinoKit&#8217;s cashback calculator presents net-loss cashback as a common model in the wider online casino market. Its explanation also flags several variables that can change what the player receives, including the calculation period, maximum cashback limit and wagering attached to the resulting reward.<\/span><\/p><p><span style=\"font-weight: 400;\">That distinction is useful, but Philippine players should not automatically apply an international site&#8217;s terminology to a PAGCOR-regulated promotion. PAGCOR uses specific classifications for turnover or deposit rebates and net-loss cashback.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d923079 e-flex e-con-boxed e-con e-parent\" data-id=\"d923079\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-65643de elementor-widget elementor-widget-heading\" data-id=\"65643de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">What Does Casino Cashback Mean?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-42cbced e-flex e-con-boxed e-con e-parent\" data-id=\"42cbced\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e8962f7 elementor-widget elementor-widget-text-editor\" data-id=\"e8962f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Cashback generally returns an amount to a qualifying player after specified gambling activity. The operator first measures the activity defined in the promotion, applies the stated rate or reward schedule, then credits the resulting amount according to its settlement rules.<\/span><\/p><p><span style=\"font-weight: 400;\">Sounds easy. Sometimes it is.<\/span><\/p><p><span style=\"font-weight: 400;\">The calculation becomes messy when players treat <\/span><b>loss<\/b><span style=\"font-weight: 400;\">, <\/span><b>turnover<\/b><span style=\"font-weight: 400;\">, <\/span><b>deposit<\/b><span style=\"font-weight: 400;\"> and <\/span><b>valid bet<\/b><span style=\"font-weight: 400;\"> as interchangeable figures. They aren&#8217;t.<\/span><\/p><p><span style=\"font-weight: 400;\">Suppose someone deposits \u20b15,000 and repeatedly wagers the same balance through several rounds. Their total turnover could reach \u20b120,000 or more without another \u20b120,000 deposit. They might finish with a net loss much smaller than either number.<\/span><\/p><p><span style=\"font-weight: 400;\">One account can therefore show several distinct figures:<\/span><\/p><p><b>Deposit:<\/b><span style=\"font-weight: 400;\"> money added to the account.<\/span><\/p><p><b>Turnover:<\/b><span style=\"font-weight: 400;\"> the total value of qualifying bets recorded during the applicable period.<\/span><\/p><p><b>Wins:<\/b><span style=\"font-weight: 400;\"> returns produced by qualifying gambling activity under the promotion&#8217;s accounting rules.<\/span><\/p><p><b>Net loss:<\/b><span style=\"font-weight: 400;\"> the qualifying loss after the relevant wins and bets have been accounted for according to the promotion.<\/span><\/p><p><span style=\"font-weight: 400;\">A cashback percentage means little until you know which figure goes into the formula.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7ebefff e-flex e-con-boxed e-con e-parent\" data-id=\"7ebefff\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-400eb46 elementor-widget elementor-widget-heading\" data-id=\"400eb46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How Net-Loss Cashback Is Calculated<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-367c012 e-flex e-con-boxed e-con e-parent\" data-id=\"367c012\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9cbe63d elementor-widget elementor-widget-text-editor\" data-id=\"9cbe63d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">For a straightforward net-loss cashback program, the arithmetic takes this form:<\/span><\/p><p><b>Eligible Net Loss \u00d7 Cashback Rate = Calculated Cashback<\/b><\/p><p><span style=\"font-weight: 400;\">CasinoKit describes the same basic method for net-loss programs. It also warns that the applicable period and maximum cap can affect the final credit.<\/span><\/p><p><span style=\"font-weight: 400;\">PAGCOR&#8217;s 2026 rules allow cashback based on a player&#8217;s <\/span><b>net losses up to a maximum rate of 15% for electronic games<\/b><span style=\"font-weight: 400;\">. That 15% figure is a regulatory ceiling in the cited rules. It does not mean every licensed promotion must pay 15%.<\/span><\/p><p><span style=\"font-weight: 400;\">Consider the regulatory maximum purely as a calculation example.<\/span><\/p><p><span style=\"font-weight: 400;\">If qualifying net losses equal \u20b120,000:<\/span><\/p><p><b>\u20b120,000 \u00d7 15% = \u20b13,000<\/b><\/p><p><span style=\"font-weight: 400;\">The mathematical result is \u20b13,000.<\/span><\/p><p><span style=\"font-weight: 400;\">That does <\/span><b>not<\/b><span style=\"font-weight: 400;\"> establish that a player will receive \u20b13,000. An approved promotion could use a lower rate, a fixed tier, a maximum reward, game restrictions or additional qualification conditions.<\/span><\/p><p><span style=\"font-weight: 400;\">The exact approved terms decide the credit.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1fe39fd e-flex e-con-boxed e-con e-parent\" data-id=\"1fe39fd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7bd4be5 elementor-widget elementor-widget-heading\" data-id=\"7bd4be5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Net loss is not the same as total losing bets<\/h3>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d480289 e-flex e-con-boxed e-con e-parent\" data-id=\"d480289\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fc36d99 elementor-widget elementor-widget-text-editor\" data-id=\"fc36d99\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">This catches people out.<\/span><\/p><p><span style=\"font-weight: 400;\">A player could place many losing bets during a session but also record substantial wins. A net-loss program normally considers the result specified by its rules for the calculation period rather than simply adding every individual losing wager.<\/span><\/p><p><span style=\"font-weight: 400;\">CasinoKit distinguishes net loss from gross loss on this basis, explaining that wins can reduce the amount used for a net-loss calculation.<\/span><\/p><p><span style=\"font-weight: 400;\">The exact accounting formula still belongs to the promotion terms. Don&#8217;t assume every casino uses identical cut-off times, excluded games, balance rules or settlement procedures.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f591a91 e-flex e-con-boxed e-con e-parent\" data-id=\"f591a91\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d17d963 elementor-widget elementor-widget-heading\" data-id=\"d17d963\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How Turnover-Based Cash Rebates Are Calculated<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e9a26d5 e-flex e-con-boxed e-con e-parent\" data-id=\"e9a26d5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ba96d5 elementor-widget elementor-widget-text-editor\" data-id=\"2ba96d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Turnover takes a different route.<\/span><\/p><p><span style=\"font-weight: 400;\">A turnover-based rebate considers <\/span><b>qualifying bets placed<\/b><span style=\"font-weight: 400;\">, rather than the amount the player finished down.<\/span><\/p><p><span style=\"font-weight: 400;\">The equation becomes:<\/span><\/p><p><b>Eligible Turnover \u00d7 Cash Rebate Rate = Calculated Rebate<\/b><\/p><p><span style=\"font-weight: 400;\">Under PAGCOR&#8217;s May 2026 rules, a cash rebate based on turnover or deposit may reach a maximum rate of <\/span><b>1.50%<\/b><span style=\"font-weight: 400;\"> for slot machine games, electronic bingo games, numeric games and sports betting. The provision excludes casino table games and arcade-type games from that specific rate structure. For electronic games outside that provision, PAGCOR&#8217;s Electronic Gaming Licensing Department evaluates the proposed rate and considers each game&#8217;s RTP.<\/span><\/p><p><span style=\"font-weight: 400;\">Using the 1.50% regulatory ceiling as an illustration:<\/span><\/p><p><b>\u20b1100,000 qualifying turnover \u00d7 1.50% = \u20b11,500<\/b><\/p><p><span style=\"font-weight: 400;\">Again, \u20b11,500 represents the arithmetic result at that rate. It is not a promise that an actual program pays the maximum.<\/span><\/p><p><span style=\"font-weight: 400;\">Turnover can become much larger than a player&#8217;s original deposit because money may circulate through repeated bets.<\/span><\/p><p><span style=\"font-weight: 400;\">That&#8217;s why comparing a 1.50% turnover rebate against a 15% net-loss cashback by percentage alone makes little sense.<\/span><\/p><p><span style=\"font-weight: 400;\">The bases differ.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2150d91 e-flex e-con-boxed e-con e-parent\" data-id=\"2150d91\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f35477 elementor-widget elementor-widget-heading\" data-id=\"1f35477\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How Deposit-Based Cash Rebates Work<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f506508 e-flex e-con-boxed e-con e-parent\" data-id=\"f506508\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e05bf8 elementor-widget elementor-widget-text-editor\" data-id=\"2e05bf8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">PAGCOR&#8217;s framework also permits qualifying cash rebates calculated from <\/span><b>deposits<\/b><span style=\"font-weight: 400;\">, subject to the applicable rules and regulatory maximum for covered games.<\/span><\/p><p><span style=\"font-weight: 400;\">The equation looks familiar:<\/span><\/p><p><b>Qualifying Deposit \u00d7 Rebate Rate = Calculated Cash Rebate<\/b><\/p><p><span style=\"font-weight: 400;\">At a 1.50% rate, a \u20b110,000 qualifying deposit would produce:<\/span><\/p><p><b>\u20b110,000 \u00d7 1.50% = \u20b1150<\/b><\/p><p><span style=\"font-weight: 400;\">The important word is <\/span><i><span style=\"font-weight: 400;\">qualifying<\/span><\/i><span style=\"font-weight: 400;\">.<\/span><\/p><p><span style=\"font-weight: 400;\">A promotion may specify minimum deposits, eligible deposit channels, program tiers, settlement timing or other conditions. PAGCOR requires operators to state relevant deposit requirements in the program rules submitted for approval.<\/span><\/p><p><span style=\"font-weight: 400;\">A deposit-based reward therefore does not automatically apply to every peso ever added to an account.<\/span><\/p><p><span style=\"font-weight: 400;\">Check the period. Check eligibility. Then do the math.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fd5c378 e-flex e-con-boxed e-con e-parent\" data-id=\"fd5c378\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-459af09 elementor-widget elementor-widget-heading\" data-id=\"459af09\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Cashback From Casino Loyalty Points<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-776ae11 e-flex e-con-boxed e-con e-parent\" data-id=\"776ae11\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-61557eb elementor-widget elementor-widget-text-editor\" data-id=\"61557eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Cashback did not start with modern online casino dashboards.<\/span><\/p><p><span style=\"font-weight: 400;\">Henry Tamburin&#8217;s 2009 Casino City Times explanation shows an older points-based method used by land-based casino loyalty programs. The casino records the player&#8217;s total money wagered, often called coin-in, awards points from that activity and converts a defined number of points into cash.<\/span><\/p><p><span style=\"font-weight: 400;\">The article compares two examples.<\/span><\/p><p><span style=\"font-weight: 400;\">One program required $20 of wagering for one point and 20 points for $1 cashback. That means the player needed $400 in total wagering to earn $1:<\/span><\/p><p><b>$20 \u00d7 20 points = $400<\/b><\/p><p><span style=\"font-weight: 400;\">Then:<\/span><\/p><p><b>$1 \u00f7 $400 = 0.0025<\/b><\/p><p><span style=\"font-weight: 400;\">Converted to percentage form:<\/span><\/p><p><b>0.25% cashback<\/b><\/p><p><span style=\"font-weight: 400;\">The second example required $3 wagering per point and 100 points for $1 cashback:<\/span><\/p><p><b>$3 \u00d7 100 = $300<\/b><\/p><p><span style=\"font-weight: 400;\">Then:<\/span><\/p><p><b>$1 \u00f7 $300 = 0.0033<\/b><\/p><p><span style=\"font-weight: 400;\">That works out to roughly <\/span><b>0.33%<\/b><span style=\"font-weight: 400;\">.<\/span><\/p><p><span style=\"font-weight: 400;\">The article is historical and discusses a different casino environment, so its terminology should not replace current PAGCOR definitions. The arithmetic remains useful because it shows how a seemingly generous points program can be converted into an effective percentage.<\/span><\/p><p><span style=\"font-weight: 400;\">Without that conversion, points are just points.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-beca652 e-flex e-con-boxed e-con e-parent\" data-id=\"beca652\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-78a112d elementor-widget elementor-widget-heading\" data-id=\"78a112d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Net-Loss Cashback vs Turnover Rebate<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-187de1a e-flex e-con-boxed e-con e-parent\" data-id=\"187de1a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-040004a elementor-widget elementor-widget-text-editor\" data-id=\"040004a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Here is where percentages get deceptive.<\/span><\/p><p><span style=\"font-weight: 400;\">Imagine \u20b1100,000 in qualifying turnover and \u20b110,000 in qualifying net loss during the same measurement period.<\/span><\/p><p><span style=\"font-weight: 400;\">At a hypothetical 1.50% turnover rebate:<\/span><\/p><p><b>\u20b1100,000 \u00d7 1.50% = \u20b11,500<\/b><\/p><p><span style=\"font-weight: 400;\">At a 15% net-loss cashback:<\/span><\/p><p><b>\u20b110,000 \u00d7 15% = \u20b11,500<\/b><\/p><p><span style=\"font-weight: 400;\">Different percentage. Same calculated amount.<\/span><\/p><p><span style=\"font-weight: 400;\">This does not mean the two programs carry equal value in every situation. Change the relationship between turnover and loss, and the results change immediately.<\/span><\/p><p><span style=\"font-weight: 400;\">That&#8217;s the reason we think players should compare <\/span><b>effective peso value<\/b><span style=\"font-weight: 400;\">, not the advertised percentage in isolation.<\/span><\/p><p><span style=\"font-weight: 400;\">A 15% headline number looks much larger than 1.50%. Yet one might apply to a much smaller base.<\/span><\/p><p><span style=\"font-weight: 400;\">Math first. Marketing second.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-63181f2 e-flex e-con-boxed e-con e-parent\" data-id=\"63181f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4ce7dd4 elementor-widget elementor-widget-heading\" data-id=\"4ce7dd4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">PAGCOR Rules for Casino Cashback Calculation<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4d55292 e-flex e-con-boxed e-con e-parent\" data-id=\"4d55292\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec15b67 elementor-widget elementor-widget-text-editor\" data-id=\"ec15b67\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">PAGCOR&#8217;s May 7, 2026 memorandum gives Philippine operators a clearer regulatory framework for electronic-game cashback and cash rebate programs.<\/span><\/p><p><span style=\"font-weight: 400;\">The document permits turnover or deposit cash rebates up to the stated 1.50% maximum for specified game categories. It separately permits net-loss cashback up to 15% for electronic games. Electronic games outside the stated turnover\/deposit provision require EGLD evaluation of the proposed rate with consideration given to game RTP.<\/span><\/p><p><span style=\"font-weight: 400;\">Operators cannot simply launch a cashback percentage because the marketing team likes the number.<\/span><\/p><p><span style=\"font-weight: 400;\">The memorandum requires the GSA, IR licensee or operator to submit the relevant marketing or promotional form to EGLD for approval before implementation.<\/span><\/p><p><span style=\"font-weight: 400;\">The implementing rules must also identify important program details.<\/span><\/p><p><span style=\"font-weight: 400;\">These include minimum deposits where applicable, turnover or wagering requirements, cashback or cash rebate rates, maximum reward amounts if any, qualification rules, program coverage, deposit requirements, settlement conditions and general conditions.<\/span><\/p><p><span style=\"font-weight: 400;\">That disclosure structure has a practical consequence for players: the advertised rate is only one field among several.<\/span><\/p><p><span style=\"font-weight: 400;\">A 10% reward with a strict cap could return less than expected. A lower percentage with a much larger qualifying base may calculate differently. A cashback credit carrying wagering conditions also works differently from withdrawable cash.<\/span><\/p><p><span style=\"font-weight: 400;\">Read the full equation, not just the banner.<\/span><\/p><p><span style=\"font-weight: 400;\">PAGCOR also states that operators must record these rebates and cashbacks separately as marketing expenses rather than gaming losses, and must not deduct them when calculating Gross Gaming Revenue. The rules further prohibit combining promotional cash incentives in a way that exceeds the prescribed maximum rebate or cashback rate. Programs introduced without prior approval, or beyond permitted rates, may face regulatory action.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7a926e1 e-flex e-con-boxed e-con e-parent\" data-id=\"7a926e1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c38d519 elementor-widget elementor-widget-heading\" data-id=\"c38d519\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How Maximum Cashback Caps Change the Calculation<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fce92b1 e-flex e-con-boxed e-con e-parent\" data-id=\"fce92b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-596afa2 elementor-widget elementor-widget-text-editor\" data-id=\"596afa2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">A percentage can produce one number, then a cap cuts it down.<\/span><\/p><p><span style=\"font-weight: 400;\">The calculation becomes:<\/span><\/p><p><b>Eligible Base \u00d7 Rate = Gross Calculated Cashback<\/b><\/p><p><span style=\"font-weight: 400;\">Then:<\/span><\/p><p><b>Final Cashback = Lower of Calculated Cashback or Maximum Cashback<\/b><\/p><p><span style=\"font-weight: 400;\">Suppose a promotion calculates 15% against a \u20b120,000 eligible net loss.<\/span><\/p><p><span style=\"font-weight: 400;\">The first calculation produces:<\/span><\/p><p><b>\u20b120,000 \u00d7 15% = \u20b13,000<\/b><\/p><p><span style=\"font-weight: 400;\">If that specific promotion set a \u20b12,000 maximum, the credited reward would stop at \u20b12,000.<\/span><\/p><p><span style=\"font-weight: 400;\">The cap matters more as losses or turnover rise.<\/span><\/p><p><span style=\"font-weight: 400;\">CasinoKit includes the same concept in its cashback tool: users enter the calculation base, rate and applicable maximum so a headline percentage does not hide the ceiling.<\/span><\/p><p><span style=\"font-weight: 400;\">PAGCOR likewise requires the implementing rules to identify a maximum cashback or cash rebate amount <\/span><b>if one applies<\/b><span style=\"font-weight: 400;\">.<\/span><\/p><p><span style=\"font-weight: 400;\">No guesswork needed. The terms should tell you.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-44eb435 e-flex e-con-boxed e-con e-parent\" data-id=\"44eb435\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6c0970 elementor-widget elementor-widget-heading\" data-id=\"a6c0970\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How Wagering Requirements Affect Cashback\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b4a93bf e-flex e-con-boxed e-con e-parent\" data-id=\"b4a93bf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5e34adf elementor-widget elementor-widget-text-editor\" data-id=\"5e34adf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Calculating the award is only the first question.<\/span><\/p><p><span style=\"font-weight: 400;\">The next one is: <\/span><b>what happens after the cashback reaches the player&#8217;s account?<\/b><\/p><p><span style=\"font-weight: 400;\">Some promotions credit cash. Others credit a bonus balance that requires more wagering before eligible remaining funds can become withdrawable.<\/span><\/p><p><span style=\"font-weight: 400;\">CasinoKit&#8217;s general-market explanation makes this distinction and notes that wagering requirements can reduce the practical value of a cashback bonus because the player must continue betting the credited amount.<\/span><\/p><p><span style=\"font-weight: 400;\">PAGCOR does not impose one universal wagering multiplier on every cashback promotion in the cited memorandum. Instead, the regulator requires the approved program rules to specify the applicable turnover or wagering requirement.<\/span><\/p><p><span style=\"font-weight: 400;\">For example, a \u20b1188 cashback bonus with a 10\u00d7 requirement needs:<\/span><\/p><p><b>\u20b1188 \u00d7 10 = \u20b11,880 in qualifying wagers<\/b><\/p><p><span style=\"font-weight: 400;\">That is turnover, not a requirement to lose \u20b11,880.<\/span><\/p><p><span style=\"font-weight: 400;\">Actual results during those bets can increase or decrease the remaining balance.<\/span><\/p><p><span style=\"font-weight: 400;\">For a deeper explanation of 1\u00d7, 3\u00d7, 10\u00d7 and other playthrough calculations, read the<\/span><a href=\"https:\/\/789bingo.com\/blog\/our-promo\/wagering-requirements-explained\/?utm_source=chatgpt.com\"> <span style=\"font-weight: 400;\">789Bingo Wagering Requirements guide<\/span><\/a><span style=\"font-weight: 400;\">.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5ed1fc9 e-flex e-con-boxed e-con e-parent\" data-id=\"5ed1fc9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-130851b elementor-widget elementor-widget-heading\" data-id=\"130851b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How 789Bingo Daily Rescue Shows a Tiered Calculation\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-533a8d1 e-flex e-con-boxed e-con e-parent\" data-id=\"533a8d1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-548f9a9 elementor-widget elementor-widget-text-editor\" data-id=\"548f9a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">A cashback-style reward does not always use one flat percentage.<\/span><\/p><p><span style=\"font-weight: 400;\">The current 789Bingo bonus pillar describes <\/span><b>Daily Rescue<\/b><span style=\"font-weight: 400;\"> as a tiered daily net-loss rebate. According to the published table, a \u20b1100 qualifying daily net loss corresponds to a \u20b13 Rescue Bonus, \u20b11,000 corresponds to \u20b138, and \u20b110,000 corresponds to \u20b1188. Higher fixed tiers continue above those levels. The page currently states a 10\u00d7 wagering condition on the resulting Rescue Bonus.<\/span><\/p><p><span style=\"font-weight: 400;\">That produces varying effective rebate percentages.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-40fb3e7 e-flex e-con-boxed e-con e-parent\" data-id=\"40fb3e7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-77158ec elementor-widget elementor-widget-text-editor\" data-id=\"77158ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<table><tbody><tr><td><p><b>Published daily net-loss tier<\/b><\/p><\/td><td><p><b>Rescue Bonus<\/b><\/p><\/td><td><p><b>Effective rate<\/b><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">\u20b1100<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">\u20b13<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">3.00%<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">\u20b11,000<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">\u20b138<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">3.80%<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">\u20b110,000<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">\u20b1188<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">1.88%<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">\u20b1100,000<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">\u20b11,888<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">1.89%<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">\u20b11mn<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">\u20b118,888<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">1.89%<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">\u20b110mn<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">\u20b1888,888<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">8.89%<\/span><\/p><\/td><\/tr><\/tbody><\/table>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f80d8bc e-flex e-con-boxed e-con e-parent\" data-id=\"f80d8bc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5ed972a elementor-widget elementor-widget-text-editor\" data-id=\"5ed972a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">These figures come from the current published 789Bingo promo table, rather than a universal cashback formula.<\/span><\/p><p><span style=\"font-weight: 400;\">Take the \u20b110,000 tier.<\/span><\/p><p><b>Effective rebate rate = \u20b1188 \u00f7 \u20b110,000 \u00d7 100<\/b><\/p><p><span style=\"font-weight: 400;\">That equals <\/span><b>1.88%<\/b><span style=\"font-weight: 400;\">.<\/span><\/p><p><span style=\"font-weight: 400;\">Then apply the published 10\u00d7 wagering requirement:<\/span><\/p><p><b>\u20b1188 \u00d7 10 = \u20b11,880 qualifying turnover<\/b><\/p><p><span style=\"font-weight: 400;\">This example shows why a player should separate three questions:<\/span><\/p><p><span style=\"font-weight: 400;\">What activity qualifies?<\/span><span style=\"font-weight: 400;\"><br \/><\/span><span style=\"font-weight: 400;\"> How much reward does the schedule produce?<\/span><span style=\"font-weight: 400;\"><br \/><\/span><span style=\"font-weight: 400;\"> What conditions apply after crediting?<\/span><\/p><p><span style=\"font-weight: 400;\">Mix those stages together and the calculation quickly goes sideways.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ed765f0 e-flex e-con-boxed e-con e-parent\" data-id=\"ed765f0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7285674 elementor-widget elementor-widget-heading\" data-id=\"7285674\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Daily Cashback and Daily Rescue Should Not Share One Formula<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a54677b e-flex e-con-boxed e-con e-parent\" data-id=\"a54677b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ce216a5 elementor-widget elementor-widget-text-editor\" data-id=\"ce216a5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">789Bingo also has a separate public <\/span><b>Daily Cashback<\/b><span style=\"font-weight: 400;\"> article. That page currently describes a campaign scheduled from February 1 through December 31, 2026 and states that the cashback carries 0\u00d7 wagering. It describes an automated calculation based on account activity rather than the fixed Daily Rescue tiers published in the newer promo pillar.<\/span><\/p><p><span style=\"font-weight: 400;\">Those are materially different mechanics.<\/span><\/p><p><span style=\"font-weight: 400;\">Players should therefore avoid taking the Daily Rescue formula, rate or wagering rule and applying it to Daily Cashback, or vice versa.<\/span><\/p><p><span style=\"font-weight: 400;\">The promotion-specific rules control each calculation.<\/span><\/p><p><span style=\"font-weight: 400;\">See the<\/span><a href=\"https:\/\/789bingo.com\/blog\/our-promo\/789bingo-daily-cashback\/?utm_source=chatgpt.com\" target=\"_blank\" rel=\"noopener\"> <span style=\"font-weight: 400;\">789Bingo Daily Cashback promo guide<\/span><\/a><span style=\"font-weight: 400;\"> for the currently published Daily Cashback description. Because promotional conditions can change, check the live account terms and current promotion page before relying on an older calculation example.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-253023c e-flex e-con-boxed e-con e-parent\" data-id=\"253023c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-608cb3f elementor-widget elementor-widget-heading\" data-id=\"608cb3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How to Compare Two Casino Cashback Offers Properly<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a1c8f5e e-flex e-con-boxed e-con e-parent\" data-id=\"a1c8f5e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ffecb85 elementor-widget elementor-widget-text-editor\" data-id=\"ffecb85\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Start with the base.<\/span><\/p><p><span style=\"font-weight: 400;\">If one offer advertises 10% cashback on net losses and another advertises 1% on turnover, don&#8217;t decide from 10 versus 1. Estimate the qualifying base for each offer.<\/span><\/p><p><span style=\"font-weight: 400;\">Then inspect the calculation period. Daily, weekly and monthly settlement can change the amount used to determine net loss.<\/span><\/p><p><span style=\"font-weight: 400;\">Next, inspect the maximum reward.<\/span><\/p><p><span style=\"font-weight: 400;\">After that, check wagering.<\/span><\/p><p><span style=\"font-weight: 400;\">Look at eligible games too. A percentage has no value on activity excluded from the promotion.<\/span><\/p><p><span style=\"font-weight: 400;\">Finally, check when the reward settles and whether the terms require a claim.<\/span><\/p><p><span style=\"font-weight: 400;\">The shortest useful comparison looks like this:<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-323a84f e-flex e-con-boxed e-con e-parent\" data-id=\"323a84f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8b3e734 elementor-widget elementor-widget-text-editor\" data-id=\"8b3e734\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<table><tbody><tr><td><p><b>Item to compare<\/b><\/p><\/td><td><p><b>Offer A<\/b><\/p><\/td><td><p><b>Offer B<\/b><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Calculation base<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Net loss<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Turnover<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Published rate<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">X%<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">X%<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Measurement period<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Daily\/weekly<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Daily\/weekly<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Maximum reward<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Amount or none stated<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Amount or none stated<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Wagering<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Multiplier<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Multiplier<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Eligible games<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Listed games<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Listed games<\/span><\/p><\/td><\/tr><tr><td><p><span style=\"font-weight: 400;\">Settlement<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Published schedule<\/span><\/p><\/td><td><p><span style=\"font-weight: 400;\">Published schedule<\/span><\/p><\/td><\/tr><\/tbody><\/table>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8f68594 e-flex e-con-boxed e-con e-parent\" data-id=\"8f68594\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-288d79c elementor-widget elementor-widget-text-editor\" data-id=\"288d79c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Only after filling those fields does the percentage become meaningful.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8d174b3 e-flex e-con-boxed e-con e-parent\" data-id=\"8d174b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0bfd2ba elementor-widget elementor-widget-heading\" data-id=\"0bfd2ba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Common Casino Cashback Calculation Mistakes<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-be8e117 e-flex e-con-boxed e-con e-parent\" data-id=\"be8e117\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f45d02 elementor-widget elementor-widget-text-editor\" data-id=\"6f45d02\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">The most common error is treating deposits as losses.<\/span><\/p><p><span style=\"font-weight: 400;\">They measure different things.<\/span><\/p><p><span style=\"font-weight: 400;\">Another error involves confusing turnover with money spent from the player&#8217;s pocket. Repeated betting can push turnover far beyond the original deposit.<\/span><\/p><p><span style=\"font-weight: 400;\">Players also sometimes apply the percentage to every losing bet without subtracting wins, even when the promotion uses net loss.<\/span><\/p><p><span style=\"font-weight: 400;\">Then there is the cap.<\/span><\/p><p><span style=\"font-weight: 400;\">A cashback calculation may look correct mathematically and still produce the wrong expected credit because the player ignored a maximum reward.<\/span><\/p><p><span style=\"font-weight: 400;\">Wagering creates another trap. Receiving \u20b1500 as bonus cashback does not automatically mean \u20b1500 can move straight to a withdrawal method. Check the settlement and playthrough conditions first.<\/span><\/p><p><span style=\"font-weight: 400;\">And one more: using another casino&#8217;s formula.<\/span><\/p><p><span style=\"font-weight: 400;\">Don&#8217;t.<\/span><\/p><p><span style=\"font-weight: 400;\">Casino City&#8217;s older points examples, CasinoKit&#8217;s calculator and PAGCOR&#8217;s 2026 framework all demonstrate the same broader lesson from different angles. A cashback offer only makes mathematical sense after you identify its specific measurement system.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-05df227 e-flex e-con-boxed e-con e-parent\" data-id=\"05df227\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c027437 elementor-widget elementor-widget-heading\" data-id=\"c027437\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Does Cashback Improve the Odds of Winning?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-47874de e-flex e-con-boxed e-con e-parent\" data-id=\"47874de\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-967a090 elementor-widget elementor-widget-text-editor\" data-id=\"967a090\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Cashback changes the amount returned under a promotion. It does not alter the random result of a slot spin, card draw or other independent game outcome.<\/span><\/p><p><span style=\"font-weight: 400;\">It also does not erase a loss.<\/span><\/p><p><span style=\"font-weight: 400;\">Suppose an eligible player loses \u20b11,000 and receives \u20b1100 cashback. The promotional credit reduces the player&#8217;s net financial shortfall to \u20b1900 before considering any later wagering results. The player still lost money during the original activity.<\/span><\/p><p><span style=\"font-weight: 400;\">Chasing an additional loss to reach a higher cashback tier reverses the purpose of the reward. Risk rises faster than the rebate can guarantee repayment.<\/span><\/p><p><span style=\"font-weight: 400;\">Treat <a href=\"https:\/\/en.wikipedia.org\/wiki\/Online_casino#Bonuses\" target=\"_blank\" rel=\"noopener\">cashback as a conditional promotional return<\/a>, never as insurance against gambling losses.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c5dade1 e-flex e-con-boxed e-con e-parent\" data-id=\"c5dade1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a8d99f9 elementor-widget elementor-widget-shortcode\" data-id=\"a8d99f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"faq-section\">\n\n  <h2>Frequently Asked Questions<\/h2>\n\n  <div class=\"faq-item\">\n    <h3>How do you calculate 10% casino cashback?<\/h3>\n    <p>\n      If a promotion genuinely uses a <strong>10% net-loss rate<\/strong>, multiply the\n      eligible net loss by <strong>0.10<\/strong>. A \u20b15,000 eligible net loss would\n      calculate to <strong>\u20b1500<\/strong> before applying any cap, eligibility rule or\n      wagering condition.\n    <\/p>\n  <\/div>\n\n  <div class=\"faq-item\">\n    <h3>Is casino cashback calculated from deposits or losses?<\/h3>\n    <p>\n      It depends on the program. PAGCOR's 2026 framework distinguishes cash rebates\n      based on turnover or deposits from cashback based on net losses. Read the\n      promotion rules before choosing a formula.\n    <\/p>\n  <\/div>\n\n  <div class=\"faq-item\">\n    <h3>What is the maximum PAGCOR cashback rate?<\/h3>\n    <p>\n      The May 7, 2026 PAGCOR rules permit net-loss cashback up to a maximum rate of\n      <strong>15%<\/strong> for electronic games. The same framework provides a maximum\n      <strong>1.50%<\/strong> turnover or deposit cash rebate for specified game\n      categories, with separate evaluation for electronic games outside that provision.\n    <\/p>\n  <\/div>\n\n  <div class=\"faq-item\">\n    <h3>Is a 15% cashback always better than a 1.5% rebate?<\/h3>\n    <p>\n      No. A percentage cannot be judged without its base. A 15% rate applied to a\n      relatively small net loss may return the same or less money than a 1.5% rate\n      applied to much larger qualifying turnover.\n    <\/p>\n  <\/div>\n\n  <div class=\"faq-item\">\n    <h3>Does cashback always have a wagering requirement?<\/h3>\n    <p>\n      No universal multiplier applies. The relevant promotion terms determine the\n      wagering condition. PAGCOR requires operators to state the turnover or wagering\n      requirement in the program rules submitted for approval.\n    <\/p>\n  <\/div>\n\n  <div class=\"faq-item\">\n    <h3>Can cashback guarantee that I recover casino losses?<\/h3>\n    <p>\n      No. Cashback returns only the amount specified by the qualifying promotion.\n      It does not guarantee recovery of the remaining loss, and additional gambling\n      can produce further losses.\n    <\/p>\n  <\/div>\n\n<\/div>\n\n<style>\n.faq-section {\n  margin: 30px 0;\n}\n\n.faq-section > h2 {\n  margin: 0 0 24px;\n}\n\n.faq-section .faq-item {\n  margin-bottom: 24px;\n}\n\n.faq-section .faq-item h3 {\n  margin: 0 0 10px;\n  font-size: 20px;\n  line-height: 1.4;\n}\n\n.faq-section .faq-item p {\n  margin: 0 0 12px;\n  line-height: 1.7;\n}\n\n.faq-section .faq-item p:last-child {\n  margin-bottom: 0;\n}\n<\/style>\n\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [\n    {\n      \"@type\": \"Question\",\n      \"name\": \"How do you calculate 10% casino cashback?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"If a promotion genuinely uses a 10% net-loss rate, multiply the eligible net loss by 0.10. A \u20b15,000 eligible net loss would calculate to \u20b1500 before applying any cap, eligibility rule or wagering condition.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Is casino cashback calculated from deposits or losses?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"It depends on the program. PAGCOR's 2026 framework distinguishes cash rebates based on turnover or deposits from cashback based on net losses. Read the promotion rules before choosing a formula.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"What is the maximum PAGCOR cashback rate?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"The May 7, 2026 PAGCOR rules permit net-loss cashback up to a maximum rate of 15% for electronic games. The same framework provides a maximum 1.50% turnover or deposit cash rebate for specified game categories, with separate evaluation for electronic games outside that provision.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Is a 15% cashback always better than a 1.5% rebate?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"No. A percentage cannot be judged without its base. A 15% rate applied to a relatively small net loss may return the same or less money than a 1.5% rate applied to much larger qualifying turnover.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Does cashback always have a wagering requirement?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"No universal multiplier applies. The relevant promotion terms determine the wagering condition. PAGCOR requires operators to state the turnover or wagering requirement in the program rules submitted for approval.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Can cashback guarantee that I recover casino losses?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"No. Cashback returns only the amount specified by the qualifying promotion. It does not guarantee recovery of the remaining loss, and additional gambling can produce further losses.\"\n      }\n    }\n  ]\n}\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3a62294 e-flex e-con-boxed e-con e-parent\" data-id=\"3a62294\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5664e73 elementor-widget elementor-widget-heading\" data-id=\"5664e73\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Final Takeaway<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d5e2251 e-flex e-con-boxed e-con e-parent\" data-id=\"d5e2251\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-616992c elementor-widget elementor-widget-text-editor\" data-id=\"616992c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">A reliable <\/span><b>casino cashback calculation<\/b><span style=\"font-weight: 400;\"> starts by identifying the figure behind the percentage.<\/span><\/p><p><span style=\"font-weight: 400;\">For PAGCOR-regulated electronic gaming, that distinction is explicit. A cash rebate can use qualifying turnover or deposits, subject to the relevant regulatory provisions. Cashback can use qualifying net losses. The promotion may then add a rate, tier, maximum amount, wagering requirement, game coverage and settlement rule.<\/span><\/p><p><span style=\"font-weight: 400;\">So don&#8217;t ask only, \u201cWhat&#8217;s the cashback percentage?\u201d<\/span><\/p><p><span style=\"font-weight: 400;\">Ask what the percentage applies to.<\/span><\/p><p><span style=\"font-weight: 400;\">Then calculate.<\/span><\/p><p><span style=\"font-weight: 400;\">For current 789Bingo promotions and bonus types, visit the<\/span><a href=\"https:\/\/789bingo.com\/blog\/our-promo\/789bingo-online-casino-free-bonus\/?utm_source=chatgpt.com\"> <span style=\"font-weight: 400;\">Online Casino Free Bonus<\/span><\/a><span style=\"font-weight: 400;\"> guide. If a cashback or rebate carries playthrough conditions, the<\/span><a href=\"https:\/\/789bingo.com\/blog\/our-promo\/wagering-requirements-explained\/?utm_source=chatgpt.com\"> <span style=\"font-weight: 400;\">Wagering Requirements guide<\/span><\/a><span style=\"font-weight: 400;\"> explains how the multiplier affects qualifying bets. The<\/span><a href=\"https:\/\/789bingo.com\/blog\/our-promo\/789bingo-daily-cashback\/?utm_source=chatgpt.com\"> <span style=\"font-weight: 400;\">Daily Cashback promo page<\/span><\/a><span style=\"font-weight: 400;\"> contains the currently published details for that specific offer.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9869534 e-flex e-con-boxed e-con e-parent\" data-id=\"9869534\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7380763 elementor-widget elementor-widget-heading\" data-id=\"7380763\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Responsible Gaming\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e480f79 e-flex e-con-boxed e-con e-parent\" data-id=\"e480f79\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4f7b1ea elementor-widget elementor-widget-shortcode\" data-id=\"4f7b1ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"responsible-gaming-footer\">\n  <p>\n    789Bingo is committed to Responsible Gaming. Underage gambling is prohibited;\n    gaming is strictly for eligible persons aged 21 and above. If you or someone\n    you know has a gambling problem, contact the 24\/7 National Problem Gambling\n    Helpline at <a href=\"tel:+63282489568\">(02) 8248-9568<\/a> or PAGCOR at\n    <a href=\"mailto:ResponsibleGaming@pagcor.ph\">\n      ResponsibleGaming@pagcor.ph\n    <\/a>.\n    Gambling can be addictive; know when to stop.\n  <\/p>\n<\/div>\n\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"WPFooter\",\n  \"@id\": \"https:\/\/789bingo.com\/#responsible-gaming-footer\",\n  \"name\": \"789Bingo Responsible Gaming Notice\",\n  \"text\": \"789Bingo is committed to Responsible Gaming. Underage gambling is prohibited; gaming is strictly for eligible persons aged 21 and above. If you or someone you know has a gambling problem, contact the 24\/7 National Problem Gambling Helpline at (02) 8248-9568 or PAGCOR at ResponsibleGaming@pagcor.ph. Gambling can be addictive; know when to stop.\",\n  \"audience\": {\n    \"@type\": \"PeopleAudience\",\n    \"audienceType\": \"Eligible persons aged 21 and above\",\n    \"requiredMinAge\": 21\n  },\n  \"about\": [\n    {\n      \"@type\": \"Thing\",\n      \"name\": \"Responsible Gaming\"\n    },\n    {\n      \"@type\": \"Thing\",\n      \"name\": \"Problem Gambling Support\"\n    }\n  ],\n  \"isPartOf\": {\n    \"@type\": \"WebSite\",\n    \"@id\": \"https:\/\/789bingo.com\/#website\",\n    \"url\": \"https:\/\/789bingo.com\/\",\n    \"name\": \"789Bingo\"\n  }\n}\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e8579db e-flex e-con-boxed e-con e-parent\" data-id=\"e8579db\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f995166 elementor-widget elementor-widget-image\" data-id=\"f995166\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/789bingo.com\/promo\" target=\"_blank\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"130\" src=\"https:\/\/blog.789bingo.com\/wp-content\/uploads\/2026\/09\/789Bingo-promo-1024x166.gif\" class=\"attachment-large size-large wp-image-7764\" alt=\"789bingo promo, 789bingo bonus, 789bingo rewards\" srcset=\"https:\/\/blog.789bingo.com\/wp-content\/uploads\/2026\/09\/789Bingo-promo-1024x166.gif 1024w, https:\/\/blog.789bingo.com\/wp-content\/uploads\/2026\/09\/789Bingo-promo-300x49.gif 300w, https:\/\/blog.789bingo.com\/wp-content\/uploads\/2026\/09\/789Bingo-promo-768x124.gif 768w, https:\/\/blog.789bingo.com\/wp-content\/uploads\/2026\/09\/789Bingo-promo-1536x249.gif 1536w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>A casino cashback calculation looks simple when an offer advertises a percentage. The difficult part sits one step earlier: what amount does that percentage apply to? A 10% cashback rate could refer to eligible net losses. Another program may calculate a smaller percentage from total qualifying bets. A third may use deposits as its calculation [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":8378,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"class_list":["post-8375","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-our-promo"],"_links":{"self":[{"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/posts\/8375","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/comments?post=8375"}],"version-history":[{"count":15,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/posts\/8375\/revisions"}],"predecessor-version":[{"id":8473,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/posts\/8375\/revisions\/8473"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/media\/8378"}],"wp:attachment":[{"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/media?parent=8375"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/categories?post=8375"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.789bingo.com\/wp-json\/wp\/v2\/tags?post=8375"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}