-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpp.html
More file actions
299 lines (266 loc) · 10.2 KB
/
Copy pathpp.html
File metadata and controls
299 lines (266 loc) · 10.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BI6ZONE - Privacy Policy</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
min-height: 100vh;
background: radial-gradient(ellipse at top, hsl(45, 100%, 15%) 0%, hsl(0, 0%, 5%) 50%, hsl(0, 0%, 0%) 100%);
position: relative;
overflow-x: hidden;
line-height: 1.6;
}
/* Halftone pattern overlays */
body::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 20px 20px;
mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
opacity: 0.3;
pointer-events: none;
}
body::after {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
background-size: 40px 40px;
mask-image: radial-gradient(ellipse at 70% 30%, black 30%, transparent 60%);
opacity: 0.2;
pointer-events: none;
}
/* Slide-in animations */
@keyframes slideInFromTop {
0% {
transform: translateY(-100px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
.container {
position: relative;
z-index: 10;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
min-height: 100vh;
}
.header {
text-align: center;
margin-bottom: 3rem;
animation: slideInFromTop 0.8s ease-out;
}
.title {
font-size: 3rem;
font-weight: 900;
color: hsl(45, 100%, 70%);
margin-bottom: 0.5rem;
letter-spacing: -0.025em;
text-shadow:
0 0 20px hsl(45, 100%, 50%),
0 0 40px hsl(45, 100%, 50%),
0 0 60px hsl(45, 100%, 50%);
}
.subtitle {
color: hsl(45, 50%, 50%);
font-size: 1.2rem;
font-weight: 300;
}
.content {
animation: slideInFromTop 1s ease-out 0.3s both;
}
.policy-card {
background: rgba(255, 215, 0, 0.1);
border: 1px solid rgba(255, 215, 0, 0.3);
border-radius: 1rem;
backdrop-filter: blur(8px);
padding: 2rem;
margin-bottom: 2rem;
}
.section-title {
color: hsl(45, 100%, 70%);
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.section-content {
color: hsl(45, 80%, 80%);
margin-bottom: 1.5rem;
}
.section-content p {
margin-bottom: 1rem;
}
.section-content ul {
margin-left: 1.5rem;
margin-bottom: 1rem;
}
.section-content li {
margin-bottom: 0.5rem;
}
.highlight {
color: hsl(45, 100%, 85%);
font-weight: 500;
}
.footer {
text-align: center;
margin-top: 3rem;
animation: slideInFromTop 1.2s ease-out 0.6s both;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: hsl(45, 100%, 70%);
text-decoration: none;
background: rgba(255, 215, 0, 0.1);
border: 1px solid rgba(255, 215, 0, 0.3);
border-radius: 0.75rem;
backdrop-filter: blur(8px);
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
font-size: 0.9rem;
font-weight: 300;
}
.back-link:hover {
background: rgba(255, 215, 0, 0.2);
border-color: rgba(255, 215, 0, 0.5);
box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
transform: translateY(-2px);
}
.last-updated {
color: hsl(45, 50%, 50%);
font-size: 0.8rem;
margin-top: 2rem;
font-style: italic;
}
@media (min-width: 768px) {
.title {
font-size: 4rem;
}
}
@media (max-width: 640px) {
.container {
padding: 1rem;
}
.title {
font-size: 2.5rem;
}
.policy-card {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<h1 class="title">Privacy Policy</h1>
<p class="subtitle">BI6ZONE Data Protection & Privacy Information</p>
</div>
<!-- Privacy Policy Content -->
<div class="content">
<div class="policy-card">
<h2 class="section-title">Information We Collect</h2>
<div class="section-content">
<p>At BI6ZONE, we are committed to protecting your privacy. We collect minimal information necessary to provide our services:</p>
<ul>
<li><span class="highlight">Usage Analytics:</span> Basic website analytics to improve user experience</li>
<li><span class="highlight">Browser Information:</span> Browser type and version for compatibility</li>
<li><span class="highlight">IP Address:</span> For security and geographic analytics</li>
<li><span class="highlight">Cookies:</span> Essential cookies for site functionality</li>
</ul>
</div>
</div>
<div class="policy-card">
<h2 class="section-title">How We Use Your Information</h2>
<div class="section-content">
<p>The information we collect is used exclusively for:</p>
<ul>
<li>Improving website performance and user experience</li>
<li>Ensuring platform security and preventing abuse</li>
<li>Analyzing usage patterns to enhance our services</li>
<li>Maintaining technical functionality</li>
</ul>
<p><span class="highlight">We do not sell, rent, or share your personal information with third parties.</span></p>
</div>
</div>
<div class="policy-card">
<h2 class="section-title">Data Storage & Security</h2>
<div class="section-content">
<p>Your data security is our priority:</p>
<ul>
<li>All data is encrypted during transmission</li>
<li>We use secure servers with regular security updates</li>
<li>Access to user data is strictly limited and monitored</li>
<li>We retain data only as long as necessary for service provision</li>
</ul>
</div>
</div>
<div class="policy-card">
<h2 class="section-title">Third-Party Services</h2>
<div class="section-content">
<p>BI6ZONE uses the following third-party services:</p>
<ul>
<li><span class="highlight">Firebase Analytics:</span> For website usage analytics</li>
<li><span class="highlight">CDN Services:</span> For content delivery and performance</li>
</ul>
<p>These services have their own privacy policies and data handling practices.</p>
</div>
</div>
<div class="policy-card">
<h2 class="section-title">Your Rights</h2>
<div class="section-content">
<p>You have the right to:</p>
<ul>
<li>Request information about data we have collected</li>
<li>Request deletion of your data</li>
<li>Opt-out of analytics tracking</li>
<li>Clear cookies and local storage</li>
</ul>
<p>For any privacy-related requests, please contact us through our GitHub repository.</p>
</div>
</div>
<div class="policy-card">
<h2 class="section-title">Children's Privacy</h2>
<div class="section-content">
<p>BI6ZONE does not knowingly collect personal information from children under 13. If we become aware that we have collected such information, we will take steps to delete it immediately.</p>
</div>
</div>
<div class="policy-card">
<h2 class="section-title">Changes to This Policy</h2>
<div class="section-content">
<p>We may update this privacy policy from time to time. Changes will be posted on this page with an updated revision date. We encourage you to review this policy periodically.</p>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<a href="main.html" class="back-link">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="m12 19-7-7 7-7"/>
<path d="M19 12H5"/>
</svg>
Back to BI6ZONE
</a>
<div class="last-updated">
Last updated: January 2025
</div>
</div>
</div>
</body>
</html>