-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
235 lines (207 loc) · 6.6 KB
/
terms.html
File metadata and controls
235 lines (207 loc) · 6.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Legal — HideZone</title>
<style>
:root {
--void: #000000;
--surface: #0A0A0A;
--surface-elevated: #141414;
--border: #1F1F1F;
--text-primary: #FFFFFF;
--text-secondary: #6B6B6B;
--text-muted: #3D3D3D;
--accent: #00FF88;
--accent-glow: rgba(0, 255, 136, 0.15);
--font-family: 'Inter', -apple-system, sans-serif;
--mono: 'JetBrains Mono', monospace;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: var(--void);
color: var(--text-primary);
font-family: var(--font-family);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}
/* ── ANIMATED GRID BG ── */
body::before {
content: '';
position: fixed;
inset: 0;
background:
linear-gradient(var(--border) 1px, transparent 1px),
linear-gradient(90deg, var(--border) 1px, transparent 1px);
background-size: 60px 60px;
opacity: 0.2;
pointer-events: none;
}
/* ── SCAN LINE ── */
body::after {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
opacity: 0.3;
animation: scanLine 6s ease-in-out infinite;
pointer-events: none;
z-index: 100;
}
@keyframes scanLine {
0% { top: -2px; }
100% { top: 100%; }
}
.container {
position: relative;
z-index: 10;
max-width: 900px;
width: 100%;
padding: 40px 24px;
text-align: center;
}
.header {
margin-bottom: 60px;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.8s ease forwards;
}
.label {
font-family: var(--mono);
font-size: 10px;
letter-spacing: 4px;
color: var(--text-muted);
text-transform: uppercase;
margin-bottom: 12px;
}
h1 {
font-family: var(--mono);
font-size: 32px;
font-weight: 600;
letter-spacing: 2px;
margin-bottom: 16px;
text-shadow: 0 0 20px var(--accent-glow);
}
.subtitle {
color: var(--text-secondary);
font-size: 16px;
max-width: 500px;
margin: 0 auto;
}
.selection-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 40px;
}
.legal-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 20px;
padding: 40px 32px;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
position: relative;
overflow: hidden;
opacity: 0;
transform: translateY(30px);
}
.legal-card:nth-child(1) { animation: fadeInUp 0.8s ease 0.2s forwards; }
.legal-card:nth-child(2) { animation: fadeInUp 0.8s ease 0.4s forwards; }
.legal-card:hover {
border-color: var(--accent);
box-shadow: 0 0 40px var(--accent-glow);
transform: translateY(-8px);
}
.card-icon {
font-size: 40px;
margin-bottom: 24px;
display: block;
}
.card-title {
font-family: var(--mono);
font-size: 18px;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 12px;
}
.card-desc {
color: var(--text-secondary);
font-size: 14px;
line-height: 1.6;
}
.footer {
margin-top: 80px;
font-family: var(--mono);
font-size: 10px;
letter-spacing: 2px;
color: var(--text-muted);
opacity: 0;
animation: fadeInUp 0.8s ease 0.6s forwards;
}
.footer a {
color: var(--text-secondary);
text-decoration: none;
margin: 0 10px;
}
.footer a:hover {
color: var(--accent);
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 640px) {
.selection-grid {
grid-template-columns: 1fr;
}
h1 { font-size: 24px; }
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<p class="label">// Encryption Protocol</p>
<h1>Select Your Platform</h1>
<p class="subtitle">To continue, please select the platform you are using to view the applicable Terms of Use.</p>
</header>
<div class="selection-grid">
<!-- iOS -->
<a href="https://www.apple.com/legal/internet-services/itunes/dev/stdeula/" class="legal-card" target="_blank">
<span class="card-icon">🍎</span>
<h2 class="card-title">iOS Users</h2>
<p class="card-desc">The standard Apple Licensed Application End User License Agreement (EULA) applies to all iOS installations.</p>
</a>
<!-- Android -->
<a href="terms_android.html" class="legal-card">
<span class="card-icon">🤖</span>
<h2 class="card-title">Android Users</h2>
<p class="card-desc">Our Custom Terms of Use apply to all Android installations and direct APK downloads.</p>
</a>
</div>
<footer class="footer">
<a href="index.html">RETURN TO BASE</a>
<span>|</span>
<a href="privacy.html">PRIVACY POLICY</a>
<span>|</span>
<a href="support.html">SUPPORT</a>
</footer>
</div>
</body>
</html>