-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
318 lines (284 loc) Β· 7.9 KB
/
index.html
File metadata and controls
318 lines (284 loc) Β· 7.9 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<!DOCTYPE html>
<html lang="uz">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PPPOKERUZ β Poker Club Uzbekistan</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap" rel="stylesheet">
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '2509208982850207');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=2509208982850207&ev=PageView&noscript=1"/>
</noscript>
<style>
:root {
--green: #4dff9a;
--green-dim: #2ecc71;
--green-glow: rgba(77, 255, 154, 0.35);
--bg-dark: #060f0a;
--card-bg: rgba(12, 30, 20, 0.92);
--text: #e8fff3;
--text-muted: rgba(200, 240, 220, 0.55);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Montserrat', sans-serif;
background: var(--bg-dark);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 24px 16px;
position: relative;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
top: -120px;
left: 50%;
transform: translateX(-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(46,204,113,0.18) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
body::after {
content: '';
position: fixed;
bottom: -100px;
left: 50%;
transform: translateX(-50%);
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(77,255,154,0.08) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.card {
position: relative;
z-index: 1;
background: var(--card-bg);
border-radius: 28px;
padding: 36px 28px 32px;
max-width: 400px;
width: 100%;
text-align: center;
border: 1px solid rgba(77, 255, 154, 0.15);
box-shadow:
0 0 0 1px rgba(77,255,154,0.05),
0 40px 80px rgba(0,0,0,0.7),
inset 0 1px 0 rgba(255,255,255,0.04);
backdrop-filter: blur(20px);
animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
.logo-wrap {
width: 100px;
height: 100px;
margin: 0 auto 20px;
border-radius: 22px;
overflow: hidden;
border: 2px solid rgba(77,255,154,0.25);
box-shadow: 0 0 32px var(--green-glow);
}
.logo-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
}
.title {
font-size: 32px;
font-weight: 900;
letter-spacing: 1px;
color: var(--green);
text-shadow: 0 0 28px rgba(77,255,154,0.5);
margin-bottom: 6px;
}
.subtitle {
font-size: 13px;
font-weight: 500;
color: var(--text-muted);
margin-bottom: 10px;
letter-spacing: 0.3px;
}
.badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(77,255,154,0.08);
border: 1px solid rgba(77,255,154,0.2);
border-radius: 999px;
padding: 5px 14px;
font-size: 12.5px;
font-weight: 700;
color: var(--green);
letter-spacing: 0.5px;
margin-bottom: 18px;
}
.stars {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-bottom: 22px;
}
.stars-icons {
color: #ffc83d;
font-size: 16px;
letter-spacing: 2px;
}
.stars-score {
font-size: 15px;
font-weight: 800;
color: var(--text);
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(77,255,154,0.2), transparent);
margin-bottom: 20px;
}
.features {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 26px;
}
.feature {
display: flex;
align-items: center;
gap: 12px;
background: rgba(77,255,154,0.05);
border: 1px solid rgba(77,255,154,0.12);
border-radius: 14px;
padding: 13px 16px;
text-align: left;
transition: border-color 0.2s, background 0.2s;
}
.feature:hover {
background: rgba(77,255,154,0.09);
border-color: rgba(77,255,154,0.25);
}
.feature-icon {
font-size: 20px;
flex-shrink: 0;
width: 28px;
text-align: center;
}
.feature-text {
font-size: 13.5px;
font-weight: 600;
color: var(--text);
line-height: 1.4;
}
.feature-text .highlight {
color: var(--green);
}
.feature-text .handle {
display: inline-block;
background: rgba(77,255,154,0.12);
border-radius: 6px;
padding: 1px 7px;
color: var(--green);
font-size: 12px;
font-weight: 700;
margin-left: 4px;
}
.cta {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 17px 0;
border-radius: 16px;
background: linear-gradient(135deg, #4dff9a 0%, #27c96a 100%);
color: #031a0c;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 800;
letter-spacing: 0.5px;
text-decoration: none;
box-shadow: 0 8px 32px rgba(77,255,154,0.4);
transition: transform 0.18s ease, box-shadow 0.18s ease;
animation: pulse 3s ease-in-out infinite;
}
.cta:hover {
transform: translateY(-2px);
box-shadow: 0 14px 48px rgba(77,255,154,0.65);
}
.cta:active {
transform: translateY(0);
}
@keyframes pulse {
0%, 100% { box-shadow: 0 8px 32px rgba(77,255,154,0.4); }
50% { box-shadow: 0 10px 44px rgba(77,255,154,0.65); }
}
.trust {
margin-top: 12px;
font-size: 11.5px;
font-weight: 500;
color: var(--text-muted);
letter-spacing: 0.3px;
}
.trust span {
color: rgba(77,255,154,0.6);
}
</style>
</head>
<body>
<div class="card">
<div class="logo-wrap">
<img src="logo.png" alt="PPPOKERUZ">
</div>
<div class="title">PPPOKERUZ</div>
<div class="subtitle">O'zbekistondagi poker hamjamiyati</div>
<div class="badge">π Klub ID: 3809196</div>
<div class="stars">
<div class="stars-icons">β
β
β
β
β
</div>
<div class="stars-score">5.0</div>
</div>
<div class="divider"></div>
<div class="features">
<div class="feature">
<div class="feature-icon">π</div>
<div class="feature-text">
Har kuni <span class="highlight" style="white-space:nowrap">5 000 000 so'mlik</span> tekin turnir
</div>
</div>
<div class="feature">
<div class="feature-icon">π°</div>
<div class="feature-text">
Har kuni <span class="highlight" style="white-space:nowrap">20 000 000 so'm</span> β 100 ta faol ishtirokchiga
</div>
</div>
<div class="feature">
<div class="feature-icon">β
</div>
<div class="feature-text">
4 yildan beri faol klub Β· 24/7 xizmat
<span class="handle">@uz3809196</span>
</div>
</div>
</div>
<a class="cta" href="https://t.me/pppokeruz_bot" target="_blank" onclick="fbq('track', 'Lead');">
β οΈ O'ynashni boshlash
</a>
<div class="trust"><span>π</span> Telegram orqali yopiq kirish</div>
</div>
</body>
</html>