-
Notifications
You must be signed in to change notification settings - Fork 202
/
privacy_policy.html
459 lines (394 loc) · 13.7 KB
/
privacy_policy.html
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Alien Invasion Defense</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<style>
/* General Body Styling */
body {
cursor: none; /* Hide the default cursor */
}
/* Cursor Tail Effect - the small dots trailing behind */
.cursor-tail {
position: absolute;
width: 11px; /* Small dot */
height: 11px;
background-color: rgba(63, 228, 253, 0.8); /* Neon green tail */
border-radius: 50%;
pointer-events: none; /* Ensure the trail doesn't interfere with clicks */
z-index: 9999;
transform: translate(-50%, -50%);
animation: trail 0.5s forwards;
}
/* Tail Effect Animation - Fades and shrinks */
@keyframes trail {
0% {
transform: scale(1) translate(-50%, -50%);
opacity: 1;
}
100% {
transform: scale(0) translate(-50%, -50%);
opacity: 0;
}
}
/* Sample content to make sure scrolling works */
.content {
height: 200vh; /* Make the page taller to enable scrolling */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
color: #333;
}
.back-home {
position: fixed;
top: 20px;
left: 20px;
z-index: 1000;
}
.back-home a {
display: flex;
align-items: center;
padding: 12px 24px;
background: rgba(0, 0, 0, 0.7);
color: white;
text-decoration: none;
border-radius: 30px;
font-size: 1.1rem;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
.back-home a:hover {
background: rgba(0, 0, 0, 0.9);
transform: scale(1.05);
}
.back-home i {
margin-right: 8px;
}
h1,
h2,
h3 {
color: #2c3e50;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
p {
margin: 10px 0;
}
ul {
margin: 10px 0 20px 20px;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #555;
}
/* Styling the progress bar */
.progress-bar-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
height: 5px;
}
#progress-bar-prvp {
border: none;
border-radius: 2rem;
height: 100%;
width: 0%;
background: linear-gradient(90deg,
cyan,
#bbdefb,
#1694db,
#5c6bc0,
#2751bd,
#283593,
#a402c4,
#F72585);
box-shadow: 0 0 5px #bbdefb, 0 0 13px #283593, 0 0 21px #F72585;
}
/* Scroll Up Button Styles */
#scrollUpBtn-prvp {
display: none;
position: fixed;
bottom: 20px;
right: 40px;
background-color: #007bff;
color: #fff;
padding: 15px 20px;
border: none;
border-radius: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
font-size: 18px;
transition: all 0.3s ease;
cursor: pointer;
z-index: 1000;
}
/* Hover Effect */
#scrollUpBtn-prvp:hover {
background-color: #0056b3;
transform: scale(1.05);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<!-- The on scroll progress bar -->
<div class="progress-bar-container">
<div class="progress-bar" id="progress-bar-prvp"></div>
</div>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy</title>
<link rel="stylesheet" href="privacy.css" />
<!-- Link to your CSS file -->
</head>
<div class="back-home">
<a href="index.html">
<i class="fas fa-chevron-left"></i>
Back to Home
</a>
</div>
<body>
<header>
<h1>Privacy Policy</h1>
</header>
<div class="gtranslate_wrapper"></div>
<script>
window.gtranslateSettings = {
default_language: "en",
native_language_names: true,
languages: ["en", "fr", "de", "it", "es", "pl", "hi"],
wrapper_selector: ".gtranslate_wrapper",
alt_flags: { en: "usa" },
};
</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
<main>
<h2>Introduction</h2>
<p>
At Alien Invasion Defense, we are committed to protecting your privacy.
This Privacy Policy outlines how we collect, use, disclose, and
safeguard your information when you visit our website and interact with
our game. Please read this policy carefully. If you do not agree with
the terms of this policy, please do not access the site.
</p>
<h2>1. Information We Collect</h2>
<ul>
<li>
<strong>Personal Information</strong>: We may collect personal
information that you provide to us directly, such as your name, email
address, and any other information you choose to provide when you
register for an account or contact us.
</li>
<li>
<strong>Usage Data</strong>: We automatically collect certain
information about your device and usage of our website, including your
IP address, browser type, operating system, pages visited, time spent
on pages, and other diagnostic data.
</li>
<li>
<strong>Cookies and Tracking Technologies</strong>: We use cookies and
similar tracking technologies to monitor activity on our website and
store certain information. You can instruct your browser to refuse all
cookies or to indicate when a cookie is being sent.
</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>We may use the information we collect in the following ways:</p>
<ul>
<li>
<strong>To Provide and Maintain Our Service</strong>: Including
monitoring the usage of our website and game.
</li>
<li>
<strong>To Notify You About Changes</strong>: We may use your
information to notify you about changes to our website or game.
</li>
<li>
<strong>To Provide Customer Support</strong>: Your information helps
us respond to your customer service requests and support needs more
efficiently.
</li>
<li>
<strong>To Gather Analysis or Valuable Information</strong>: We may
use your information to improve our website and game.
</li>
<li>
<strong>To Monitor the Usage of Our Service</strong>: We may use your
information to detect, prevent, and address technical issues.
</li>
<li>
<strong>To Communicate with You</strong>: We may use your information
to contact you with newsletters, marketing or promotional materials,
and other information that may be of interest to you.
</li>
<li>
<strong>To Personalize User Experience</strong>: We may use the
information to understand how our users as a group use the services
and resources provided on our website.
</li>
<li>
<strong>To Improve Our Website</strong>: We may use feedback you
provide to improve our products and services.
</li>
</ul>
<h2>3. Disclosure of Your Information</h2>
<p>We may share your information in the following situations:</p>
<ul>
<li>
<strong>With Service Providers</strong>: We may share your personal
information with service providers to monitor and analyze the use of
our website and game.
</li>
<li>
<strong>For Business Transfers</strong>: We may share or transfer your
personal information in connection with, or during negotiations of,
any merger, sale of company assets, financing, or acquisition of all
or a portion of our business to another company.
</li>
<li>
<strong>With Affiliates</strong>: We may share your information with
our affiliates, in which case we will require those affiliates to
honor this Privacy Policy.
</li>
<li>
<strong>With Business Partners</strong>: We may share your information
with our business partners to offer you certain products, services or
promotions.
</li>
<li>
<strong>With Your Consent</strong>: We may disclose your personal
information for any other purpose with your consent.
</li>
<li>
<strong>For Legal Requirements</strong>: We may disclose your personal
information to comply with applicable law and legal processes, to
respond to any claims, or to protect the rights, property, or safety
of Alien Invasion Defense, our customers, or others.
</li>
</ul>
<h2>4. Security of Your Information</h2>
<p>
The security of your personal information is important to us, but
remember that no method of transmission over the Internet is 100%
secure. While we strive to use commercially acceptable means to protect
your personal information, we cannot guarantee its absolute security.
</p>
<h2>5. Changes to This Privacy Policy</h2>
<p>
We may update our Privacy Policy from time to time. We will notify you
of any changes by posting the new Privacy Policy on this page.
</p>
<h2>6. Contact Us</h2>
<p>
If you have any questions or concerns about this Privacy Policy, please
do not hesitate to contact us.
</p>
</main>
<!-- scroll up button -->
<button id="scrollUpBtn-prvp" onclick="scrollToTop()">↑</button>
<footer class="bg-body-tertiary text-center">
<!-- Grid container -->
<div class="container p-4">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Facebook -->
<a data-mdb-ripple-init class="btn btn-outline btn-floating m-1" href="#!" style="margin:15px"
role="button"><i class="fab fa-facebook-f"></i></a>
<!-- Twitter -->
<a data-mdb-ripple-init class="btn btn-outline btn-floating m-1" href="#!" style="margin:15px"
role="button"><i class="fab fa-twitter"></i></a>
<!-- Google -->
<a data-mdb-ripple-init class="btn btn-outline btn-floating m-1" href="#!" style="margin:15px"
role="button"><i class="fab fa-google"></i></a>
<!-- Instagram -->
<a data-mdb-ripple-init class="btn btn-outline btn-floating m-1" href="#!" style="margin:15px"
role="button"><i class="fab fa-instagram"></i></a>
<!-- Linkedin -->
<a data-mdb-ripple-init class="btn btn-outline btn-floating m-1" href="#!" style="margin:15px"
role="button"><i class="fab fa-linkedin-in"></i></a>
<!-- Github -->
<a data-mdb-ripple-init class="btn btn-outline btn-floating m-1" href="#!" style="margin:15px"
role="button"><i class="fab fa-github"></i></a>
</section>
<section class="mx-4 mb-4">
<p>
Welcome to Alien Invasion Defense, a fast-paced space shooting game! Defend your base from waves of alien
invaders and become the ultimate space defender. 🌌 With simple controls, sleek graphics, and exciting
gameplay, get ready for an epic battle. Use your weapons to destroy alien ships, survive multiple waves, and
protect your base with 3 lives. 👾
</p>
</section>
</div>
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.05);">
© <span id="currentYear"></span> Alien-Invasion-Defense. All rights reserved.
</div>
<!-- Copyright -->
</footer>
<script>
// Create a trailing dot element dynamically
function createTrailDot(x, y) {
const trailDot = document.createElement('div');
trailDot.classList.add('cursor-tail');
trailDot.style.left = `${x}px`;
trailDot.style.top = `${y}px`;
document.body.appendChild(trailDot);
// Remove the trail dot after the animation completes (0.5s)
setTimeout(() => {
trailDot.remove();
}, 500); // Match the duration of the animation in CSS
}
// Function to move the cursor and generate trailing dots
function moveCursor(event) {
const x = event.pageX;
const y = event.pageY;
// Create a new trail dot at the cursor position
createTrailDot(x, y);
}
// Listen to mousemove event to trigger the cursor and trail
document.addEventListener('mousemove', moveCursor);
</script>
</body>
<script>
window.onscroll = function () {
const scrollUpBtn = document.getElementById("scrollUpBtn-prvp");
if (
document.body.scrollTop > 100 ||
document.documentElement.scrollTop > 100
) {
scrollUpBtn.style.display = "block";
} else {
scrollUpBtn.style.display = "none";
}
const totalHeight = document.documentElement.scrollHeight - window.innerHeight;
const scrollPosition = window.pageYOffset;
const scrollPercentage = (scrollPosition / totalHeight) * 100;
document.getElementById(
"progress-bar-prvp"
).style.width = `${scrollPercentage}%`;
}
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: "smooth",
});
}
document.getElementById("currentYear").textContent = new Date().getFullYear();
</script>
</html>