-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
314 lines (269 loc) · 9.07 KB
/
index.html
File metadata and controls
314 lines (269 loc) · 9.07 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
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BEN BOT V2 - ULTIMATE</title>
<link rel="stylesheet" href="css/all.min.css">
<style>
:root {
--neon-blue: #00f3ff;
--neon-pink: #ff00ff;
--cyber-black: #0a0a1a;
--cyber-gray: #1a1a2e;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Orbitron', sans-serif;
}
body {
background: var(--cyber-black);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
.cyber-grid {
position: fixed;
width: 100vw;
height: 100vh;
background-image:
linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
background-size: 30px 30px;
z-index: 0;
}
.main-container {
background: rgba(16, 18, 27, 0.95);
backdrop-filter: blur(15px);
border-radius: 20px;
padding: 3rem;
margin: 2rem;
border: 2px solid var(--neon-blue);
box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
position: relative;
z-index: 1;
max-width: 800px;
width: 90%;
animation: floatContainer 4s ease-in-out infinite; /* මෙය එක් කරන්න */
}
@keyframes floatContainer {
0%, 100% {
transform: translateY(0) rotate(0deg);
box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
}
25% {
transform: translateY(-15px) rotate(-1.5deg);
box-shadow: 0 15px 60px rgba(0, 243, 255, 0.3);
}
50% {
transform: translateY(10px) rotate(1.5deg);
box-shadow: 0 -10px 60px rgba(0, 243, 255, 0.3);
}
75% {
transform: translateY(-5px) rotate(0.5deg);
box-shadow: 0 5px 60px rgba(0, 243, 255, 0.3);
}
}
.cyber-header {
text-align: center;
margin-bottom: 3rem;
position: relative;
}
.cyber-header h1 {
color: var(--neon-blue);
font-size: 3.5rem;
text-shadow: 0 0 30px var(--neon-blue);
letter-spacing: 3px;
margin-bottom: 1rem;
animation: titleGlow 2s infinite alternate;
}
@keyframes titleGlow {
from { text-shadow: 0 0 20px var(--neon-blue); }
to { text-shadow: 0 0 40px var(--neon-blue); }
}
.button-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 2rem 0;
}
.cyber-btn {
position: relative;
padding: 1.5rem 2rem;
background: var(--cyber-gray);
border: none;
border-radius: 10px;
color: white;
font-size: 1.2rem;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
overflow: hidden;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
animation: buttonFloat 3s ease-in-out infinite;
}
@keyframes buttonFloat {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
25% {
transform: translateY(-3px) rotate(-0.5deg);
}
50% {
transform: translateY(2px) rotate(0.5deg);
}
75% {
transform: translateY(-1px) rotate(0deg);
}
}
.cyber-btn:hover {
animation: buttonHover 0.5s ease-out forwards;
z-index: 2;
}
@keyframes buttonHover {
0% {
transform: scale(1) translateY(0);
box-shadow: 0 0 15px var(--neon-blue);
}
50% {
transform: scale(1.05) translateY(-5px);
box-shadow: 0 5px 25px var(--neon-pink);
}
100% {
transform: scale(1.03) translateY(-2px);
box-shadow: 0 2px 20px var(--neon-blue);
}
}
.cyber-btn::before {
content: '';
position: absolute;
inset: -2px;
background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-blue));
z-index: -1;
opacity: 0;
transition: opacity 0.4s;
}
.cyber-btn:hover::before {
opacity: 1;
}
.cyber-btn i {
font-size: 1.5rem;
transition: transform 0.3s;
}
.cyber-btn:hover i {
transform: scale(1.2);
filter: drop-shadow(0 0 5px var(--neon-blue));
}
.error-btn {
background: rgba(255, 50, 50, 0.15);
}
.error-btn::before {
background: linear-gradient(45deg, #ff0000, #ff6b6b);
}
.particle {
position: absolute;
pointer-events: none;
background: var(--neon-blue);
border-radius: 50%;
animation: particlePop 1s forwards;
}
@keyframes particlePop {
0% { transform: scale(0); opacity: 1; }
100% { transform: scale(3); opacity: 0; }
}
.cyber-footer {
margin-top: 3rem;
color: var(--neon-blue);
text-align: center;
font-size: 1rem;
text-shadow: 0 0 10px var(--neon-blue);
}
@media (max-width: 768px) {
.main-container {
padding: 1.5rem;
margin: 1rem;
}
.cyber-header h1 {
font-size: 2.5rem;
}
.cyber-btn {
font-size: 1rem;
padding: 1rem 1.5rem;
}
}
</style>
</head>
<body>
<div class="cyber-grid"></div>
<div class="main-container">
<header class="cyber-header">
<h1>
<i class="fas fa-robot"></i>
BEN BOT V2
</h1>
<p style="color: var(--neon-pink); font-size: 1.2rem;">Ultimate Session Manager</p>
</header>
<div class="button-grid">
<a href="/qr" class="cyber-btn" target="_blank">
<i class="fas fa-qrcode"></i>
QR-CODE
</a>
<a href="/pair" class="cyber-btn" target="_blank">
<i class="fas fa-handshake"></i>
PAIRING-CODE
</a>
<a href="https://youtu.be/a7fq-Oua0Sw?si=9S1MhEqEcyECHPrm" class="cyber-btn" target="_blank">
<i class="fab fa-youtube"></i>
BOT DEPOLY VIDEO
</a>
<a href="https://cdn.apis-nothing.xyz/file/BEN-BOT-V2.zip" class="cyber-btn" target="_blank">
<i class="fab fa-download"></i>
BEN BOT V1 DOWNLOAD
</a>
<a href="https://whatsapp.com/channel/0029Vasu3qP9RZAUkVkvSv32" class="cyber-btn" target="_blank">
<i class="fab fa-whatsapp"></i>
WA-CHANNEL
</a>
<a href="https://wa.me/+93744215959?text=HAVE_ERROR_BEN-BOT" class="cyber-btn error-btn" target="_blank">
<i class="fas fa-bug"></i>
ERROR
</a>
<a href="https://wa.me/+93744215959?text=HELLO-BEN-BOT-OWNER" class="cyber-btn" target="_blank">
<i class="fas fa-user-secret"></i>
OWNER
</a>
</div>
</div>
<footer class="cyber-footer">
© 2025 BEN BOT | Powered by NOTHING TECH
</footer>
<script>
// Particle Animation
document.addEventListener('mousemove', (e) => {
const particles = document.createElement('div');
particles.className = 'particle';
particles.style.left = `${e.clientX}px`;
particles.style.top = `${e.clientY}px`;
document.body.appendChild(particles);
setTimeout(() => particles.remove(), 1000);
});
// Hover Sound Effect
const buttons = document.querySelectorAll('.cyber-btn');
const hoverSound = new Audio('data:audio/wav;base64,UklGRl9vT19XQVZFZm10IBAAAAABAAEAQB8AAEAfAAABAAgAZGF0YU');
buttons.forEach(btn => {
btn.addEventListener('mouseenter', () => {
hoverSound.currentTime = 0;
hoverSound.play();
});
});
// Dynamic Year Update
document.querySelector('.cyber-footer').innerHTML += new Date().getFullYear();
</script>
</body></html>