<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Privacy Policy — Snake X</title>

<style>

  :root {

    --ink: #1b2b22;

    --muted: #5c6b62;

    --accent: #2f9e6e;

    --accent-soft: #e6f5ee;

    --line: #dde8e1;

    --bg: #fbfdfc;

  }

  * { box-sizing: border-box; }

  body {

    margin: 0;

    background: var(--bg);

    color: var(--ink);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    line-height: 1.7;

    padding: 48px 20px 80px;

  }

  main { max-width: 680px; margin: 0 auto; }

  .badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: var(--accent-soft);

    color: var(--accent);

    font-weight: 600;

    font-size: 13px;

    letter-spacing: 0.02em;

    padding: 6px 14px;

    border-radius: 999px;

    margin-bottom: 20px;

  }

  h1 { font-size: 32px; margin: 0 0 6px; letter-spacing: -0.01em; }

  .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }

  h2 {

    font-size: 18px;

    margin: 40px 0 10px;

    padding-bottom: 8px;

    border-bottom: 2px solid var(--line);

  }

  p { color: #33443b; margin: 0 0 14px; }

  .placeholder {

    background: #fff3d6;

    color: #7a5b00;

    padding: 1px 6px;

    border-radius: 4px;

    font-weight: 600;

  }

  footer {

    margin-top: 56px;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 13px;

  }

</style>

</head>

<body>

<main>

  <div class="badge">🐍 Snake X</div>

  <h1>Privacy Policy</h1>

  <p class="updated">Last updated: July 4, 2026</p>


  <p>This Privacy Policy explains how Snake X ("the App", "we", "us") handles information when you play our game. Snake X was built to be simple and fully offline, and this policy reflects that.</p>


  <h2>Information We Collect</h2>

  <p>Snake X does not collect, store, or share any personal information. You do not need to create an account, sign in, or provide any personal details to play the game.</p>


  <h2>Local Data Only</h2>

  <p>Your high score and game progress are saved locally on your own device only. This information is never transmitted to us or to anyone else, and it is permanently deleted if you uninstall the App.</p>


  <h2>Third-Party Services</h2>

  <p>Snake X contains no advertisements and does not use any third-party analytics, advertising, or tracking tools. No information from the App is shared with any third party.</p>


  <h2>Permissions</h2>

  <p>The App does not request access to your camera, microphone, contacts, location, or any other sensitive device permission.</p>


  <h2>Children's Privacy</h2>

  <p>Because Snake X does not collect any personal information from any user, it does not knowingly collect data from children either, and is safe for players of any age.</p>


  <h2>Changes to This Policy</h2>

  <p>If this Privacy Policy is ever updated, the revised version will be posted on this page along with a new "Last updated" date.</p>


  <h2>Contact Us</h2>

  <p>If you have any questions about this Privacy Policy, please contact:<br>

  <span class="placeholder">devrafay3@gmail.com</span></p>


  <footer>Snake X — Developed by <span class="placeholder">dev</span></footer>

</main>

</body>

</html>