← Back to Game

Privacy Policy

  • 1. Information We Collect
    • a. Device Data
        We store certain data locally on your device to improve performance and reduce unnecessary data usage. This helps the game run smoothly and efficiently. This data may include:
        • Game progress
        • Settings
        • Temporary performance data
    • b. Account Information
      • To provide fair gameplay and reward systems, we may collect and store:
        • Phone number
        • Google account identifier
        • Username
        • Basic account-related information
      • This information is used to:
        • Prevent multiple or duplicate accounts
        • Ensure fairness in reward distribution
        • Maintain transparency between users and the game system
  • 2. How We Use Your Information
    • We use collected data to:
      • Operate and improve the game
      • Provide rewards and manage user accounts
      • Prevent fraud, abuse, or cheating
      • Ensure fair gameplay for all users
    • We do not sell your personal data to third parties.
  • 3. Third-Party Payment Services
    • Chicken Escape uses third-party payment providers to allow users to purchase in-game items such as skins and upgrades.
      • All payments are processed securely by these third-party providers
      • We do not collect or store your financial or payment details
      • We only use the provider’s API to verify whether a purchase was successfully completed
    • These third-party services have their own privacy policies, and we encourage users to review them.
  • 4. Data Security
    • We take reasonable measures to protect your data from unauthorized access, loss, or misuse.
    • However, no system is completely secure, and we cannot guarantee absolute security.
  • 5. User Conduct and Enforcement
    • To maintain a fair and safe environment, users may be suspended or permanently banned if they engage in any of the following:
      • Cheating or exploiting game mechanics
      • Manipulating or increasing coins, eggs, or in-game currency illegally
      • Modifying or editing game scores
      • Using hacking tools, scripts, or unauthorized software
      • Attempting to bypass security systems
    • We reserve the right to take appropriate action, including account termination, without prior notice.
  • 6. Data Retention
    • We retain user data only for as long as necessary to provide our services, comply with legal obligations, and resolve disputes.
  • 7. Children’s Privacy
    • Chicken Escape is not intended for children under the age of 13 (or the minimum age required in your region).
    • We do not knowingly collect personal data from children.
  • 8. Changes to This Policy
    • We may update this Privacy Policy from time to time.
    • Any changes will be posted within the game or on our official website.
  • 9. Contact Us
    • If you have any questions or concerns about this Privacy Policy, please contact us:
      • Email: ganjina.app.ga@gmail.com
      • Website: ganjinastudio.com
const urlParams = new URLSearchParams(window.location.search); const gameId = urlParams.get('game') || 'brothers'; const game = gameData[gameId]; if (game) { document.getElementById('gameTitle').textContent = game.title; document.getElementById('gameDescription').textContent = game.description; document.getElementById('backBtn').href = game.backLink; } else { // Default to brothers if invalid game ID document.getElementById('gameTitle').textContent = gameData.brothers.title; document.getElementById('gameDescription').textContent = gameData.brothers.description; document.getElementById('backBtn').href = gameData.brothers.backLink; } });