-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
168 lines (137 loc) · 6.15 KB
/
privacy-policy.html
File metadata and controls
168 lines (137 loc) · 6.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - KSM X Tech</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="policy-page">
<header class="header">
<a href="index.html" class="logo">
<span class="logo-ksm">KSM</span>
<span class="logo-xtech">X Tech</span>
</a>
</header>
<main class="policy-content">
<h1>PRIVACY POLICY</h1>
<p><strong>KSM X Tech</strong></p>
<p><strong>Last Updated:</strong> January 2026</p>
<p>KSM X Tech (“we”, “our”, or “us”) develops and operates mobile applications, games, AI tools, and digital
products. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when
you use our applications and services.</p>
<p>By using our services, you agree to the collection and use of information in accordance with this policy.</p>
<hr>
<h2>1. Information We Collect</h2>
<p>We may collect the following types of information:</p>
<h3>A. Personal Information</h3>
<ul>
<li>Email address (if you sign in using Google or Apple)</li>
<li>User ID assigned through authentication services</li>
<li>Profile name (if provided by third-party login)</li>
</ul>
<h3>B. Usage Information</h3>
<ul>
<li>Gameplay activity and statistics</li>
<li>App interaction data</li>
<li>Device type, OS version, and performance data</li>
</ul>
<h3>C. Advertising Data</h3>
<p>If rewarded ads or advertisements are enabled, advertising partners may collect:</p>
<ul>
<li>Device identifiers</li>
<li>Ad interaction data</li>
</ul>
<hr>
<h2>2. How We Use Your Information</h2>
<p>We use collected information to:</p>
<ul>
<li>Provide and maintain our services</li>
<li>Enable multiplayer and account features</li>
<li>Improve app performance and user experience</li>
<li>Prevent fraud and maintain security</li>
<li>Deliver rewarded advertisements (if applicable)</li>
<li>Comply with legal obligations</li>
</ul>
<hr>
<h2>3. Third-Party Services</h2>
<p>Our apps may use third-party services including but not limited to:</p>
<ul>
<li>Google Play Services</li>
<li>Apple App Store Services</li>
<li>Firebase (Authentication, Database, Analytics, Crash Reporting)</li>
<li>Advertising networks (such as Google AdMob)</li>
<li>Payment processors (Google Play Billing / Apple In-App Purchase)</li>
</ul>
<p>These third parties may collect information in accordance with their own privacy policies.</p>
<hr>
<h2>4. Data Security</h2>
<p>We implement reasonable technical and organizational measures to protect your information. All data
transmission is encrypted in transit using secure protocols.</p>
<p>However, no method of transmission over the internet is 100% secure.</p>
<hr>
<h2>5. Data Retention</h2>
<p>We retain user data only as long as necessary to:</p>
<ul>
<li>Provide services</li>
<li>Maintain legal compliance</li>
<li>Ensure fraud prevention and system security</li>
</ul>
<p>Minimal technical logs may be retained for up to 30 days after account deletion.</p>
<hr>
<h2>6. Account Deletion</h2>
<p>Users may delete their account directly within the application settings.</p>
<p>Upon deletion:</p>
<ul>
<li>Authentication data is removed</li>
<li>Game progress and statistics are deleted</li>
<li>Associated user records are permanently removed</li>
</ul>
<p>For assistance, contact: <a href="mailto:support@ksmxtech.com">support@ksmxtech.com</a></p>
<hr>
<h2>7. Children’s Privacy</h2>
<p>Our services are not directed toward children under 13. We do not knowingly collect personal data from
children.</p>
<p>If we discover that a child has provided personal information, we will delete it promptly.</p>
<hr>
<h2>8. Changes to This Policy</h2>
<p>We may update this Privacy Policy periodically. Changes will be posted on this page with an updated effective
date.</p>
<hr>
<h2>9. Contact Us</h2>
<p>KSM X Tech</p>
<p>Email: <a href="mailto:support@ksmxtech.com">support@ksmxtech.com</a></p>
<p>Website: <a href="https://ksmxtech.com">https://ksmxtech.com</a></p>
</main>
<footer class="footer" style="padding: 2rem;">
<div class="copyright">
© 2026 KSM X Tech. All rights reserved.
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function () {
// Header scroll effect and KSM width calculation
const ksmElement = document.querySelector('.logo-ksm');
function updateKsmWidth() {
if (ksmElement) {
document.documentElement.style.setProperty('--ksm-width', ksmElement.offsetWidth + 'px');
}
}
// Wait for fonts to load before calculating width, and recalculate on resize
document.fonts.ready.then(updateKsmWidth);
window.addEventListener('resize', updateKsmWidth);
updateKsmWidth(); // initial calculation
const header = document.querySelector('.header');
if (header) {
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else if (window.scrollY <= 10) {
header.classList.remove('scrolled');
}
});
}
});
</script>
</body>
</html>