-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html5
More file actions
514 lines (455 loc) · 21 KB
/
index.html5
File metadata and controls
514 lines (455 loc) · 21 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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Join India's Ultimate Esports Arena. Play tournaments, win cash prizes, and withdraw instantly.">
<meta name="google-site-verification" content="R9LUrAZ1pDhdCeA4veV0dgU6TRcgEjgvkZEuNtiMyks" />
<title>Hyper Esports - Ultimate Gaming Tournament App</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
<style>
/* --- CSS VARIABLES & THEME --- */
:root {
--primary-bg: #0F172A;
--secondary-bg: #1E293B;
--text-primary: #E2E8F0;
--text-secondary: #94A3B8;
--accent-color: #FACC15;
--border-color: #334155;
--font-main: 'Poppins', sans-serif;
}
body {
background-color: var(--primary-bg);
color: var(--text-primary);
font-family: var(--font-main);
overflow-x: hidden;
}
border-radius: 50%;
border: 2px solid var(--accent-color);
margin-right: 10px;
}
.navbar-brand span {
font-weight: 700;
font-size: 1.2rem;
color: var(--text-primary);
}
.nav-link {
color: var(--text-secondary) !important;
font-weight: 500;
margin: 0 10px;
transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
color: var(--accent-color) !important;
}
.dropdown-menu {
background-color: var(--secondary-bg);
border: 1px solid var(--border-color);
}
.dropdown-item {
color: var(--text-primary);
}
.dropdown-item:hover {
background-color: var(--primary-bg);
color: var(--accent-color);
}
.navbar-toggler {
border-color: var(--accent-color);
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(250, 204, 21, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* --- HERO SECTION --- */
.hero-section {
padding: 120px 0 80px 0;
position: relative;
overflow: hidden;
}
.hero-headline {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 20px;
}
.hero-img-container {
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.hero-img {
max-width: 80%;
height: auto;
animation: float 4s ease-in-out infinite;
filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
/* --- ANIMATIONS --- */
.fade-in-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
opacity: 1;
transform: translateY(0);
}
/* --- GAME SLIDER --- */
.slider-section {
background-color: var(--secondary-bg);
padding: 80px 0;
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}
.swiper {
width: 100%;
padding-top: 20px;
padding-bottom: 50px;
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 300px;
height: 170px;
border-radius: 15px;
overflow: hidden;
border: 2px solid var(--border-color);
transition: transform 0.3s;
}
.swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
.swiper-slide-active {
transform: scale(1.1);
border-color: var(--accent-color);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* --- HOW IT WORKS --- */
.steps-section {
padding: 80px 0;
}
.step-card {
background: var(--secondary-bg);
padding: 30px;
border-radius: 20px;
border: 1px solid var(--border-color);
position: relative;
transition: all 0.3s;
height: 100%;
overflow: hidden;
}
.step-card:hover {
transform: translateY(-10px);
border-color: var(--accent-color);
}
.step-number {
position: absolute;
top: -10px;
right: 10px;
font-size: 5rem;
font-weight: 800;
color: rgba(255, 255, 255, 0.03);
z-index: 0;
}
.step-icon {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 20px;
position: relative;
z-index: 1;
}
/* --- FEATURES --- */
.features-section {
padding: 80px 0;
background: linear-gradient(to bottom, var(--primary-bg), var(--secondary-bg));
}
.feature-box {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
}
.feature-icon {
background: rgba(250, 204, 21, 0.1);
color: var(--accent-color);
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-right: 20px;
flex-shrink: 0;
}
/* --- FAQ --- */
.faq-section {
padding: 80px 0;
}
.accordion-item {
background-color: var(--secondary-bg);
border: 1px solid var(--border-color);
margin-bottom: 10px;
border-radius: 10px !important;
overflow: hidden;
}
.accordion-button {
background-color: var(--secondary-bg);
color: var(--text-primary);
font-weight: 600;
}
.accordion-button:not(.collapsed) {
background-color: rgba(250, 204, 21, 0.1);
color: var(--accent-color);
box-shadow: none;
}
.accordion-button:focus {
box-shadow: none;
}
.accordion-body {
color: var(--text-secondary);
border-top: 1px solid var(--border-color);
}
/* --- FOOTER --- */
footer {
background-color: var(--secondary-bg);
border-top: 1px solid var(--border-color);
padding: 40px 0 80px 0;
text-align: center;
}
/* --- MOBILE STICKY BAR --- */
.mobile-sticky-bar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: var(--secondary-bg);
padding: 15px;
border-top: 1px solid var(--accent-color);
z-index: 1050;
display: none;
box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}
/* --- MODALS --- */
.modal-content {
background-color: var(--secondary-bg);
border: 1px solid var(--border-color);
color: var(--text-primary);
}
.modal-header {
border-bottom: 1px solid var(--border-color);
}
.btn-close {
filter: invert(1);
}
/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
.mobile-sticky-bar {
display: block;
}
.hero-headline {
font-size: 2.2rem;
text-align: center;
}
.hero-text-content {
text-align: center;
margin-bottom: 40px;
}
.hero-section {
padding-top: 100px;
}
footer {
padding-bottom: 100px;
}
.desktop-download-btn {
display: none;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="#">
<img src="https://i.ibb.co/TDdbPJFb/1766187566002.png" alt="Hyper Esports Logo">
<span>Hyper Esports</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link active" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#how-it-works">How to Play</a></li>
<li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown">More</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#faq">FAQ</a></li>
<li><hr class="dropdown-divider" style="border-color: var(--border-color);"></li>
<li><a class="dropdown-item" href="#" data-bs-toggle="modal" data-bs-target="#privacyModal">Privacy Policy</a></li>
<li><a class="dropdown-item" href="#" data-bs-toggle="modal" data-bs-target="#termsModal">Terms & Conditions</a></li>
<li><a class="dropdown-item" href="#" data-bs-toggle="modal" data-bs-target="#refundModal">Refund Policy</a></li>
<li><a class="dropdown-item" href="#" data-bs-toggle="modal" data-bs-target="#fairPlayModal">Fair Play Policy</a></li>
</ul>
</li>
</ul>
<div class="d-flex desktop-download-btn">
<a href="https://devuploads.com/ltc4df8xl6dx" class="btn btn-accent btn-sm rounded-pill px-4">Download App</a>
</div>
</div>
</div>
</nav>
<section id="home" class="hero-section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 hero-text-content fade-in-up">
<h1 class="hero-headline">India's Ultimate <span class="text-accent">Esports Arena</span> is Here</h1>
<p class="lead text-muted-custom mb-4">
Join thousands of gamers, compete in your favorite titles, and win real cash rewards. Experience low latency, instant withdrawals, and 24/7 support.
</p>
<div class="d-flex flex-column flex-sm-row gap-3 justify-content-lg-start justify-content-center">
<a href="https://devuploads.com/ltc4df8xl6dx" class="btn btn-accent">Download & Start Playing</a>
</div>
<div class="mt-3 text-center text-lg-start">
<a href="https://devuploads.com/ltc4df8xl6dx" class="btn btn-secondary-custom btn-sm">Get ₹5 FREE on Signup!</a>
</div>
</div>
<div class="col-lg-6 mt-5 mt-lg-0 fade-in-up">
<div class="hero-img-container">
<img src="https://i.ibb.co/TDdbPJFb/1766187566002.png" alt="Esports Character" class="hero-img">
</div>
</div>
</div>
</div>
</section>
<section class="slider-section">
<div class="container text-center mb-4">
<h2 class="mb-2">Tournaments for Your Favorite Games</h2>
<p class="text-muted-custom">Compete daily and win big</p>
</div>
<div class="swiper gameSwiper">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="https://i.ibb.co/YB0XTMY4/hq720-2.jpg" alt="Game 1"></div>
<div class="swiper-slide"><img src="https://i.ibb.co/73F5dBD/maxresdefault-2.jpg" alt="Game 2"></div>
<div class="swiper-slide"><img src="https://i.ibb.co/YB0XTMY4/hq720-2.jpg" alt="Game 1"></div>
<div class="swiper-slide"><img src="https://i.ibb.co/73F5dBD/maxresdefault-2.jpg" alt="Game 2"></div>
</div>
</div>
</section>
<section id="how-it-works" class="steps-section">
<div class="container">
<div class="text-center mb-5 fade-in-up">
<h2 class="mb-3">How It Works</h2>
<p class="text-muted-custom">Start your journey in 3 simple steps</p>
</div>
<div class="row g-4">
<div class="col-lg-4 col-md-6 fade-in-up">
<div class="step-card">
<div class="step-number">01</div>
<div class="step-icon"><i class="bi bi-download"></i></div>
<h4>Download & Register</h4>
<p class="text-muted-custom">Download the app using the link and sign up with your mobile number to get a joining bonus.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 fade-in-up">
<div class="step-card">
<div class="step-number">02</div>
<div class="step-icon"><i class="bi bi-controller"></i></div>
<h4>Join a Tournament</h4>
<p class="text-muted-custom">Browse through ongoing tournaments. Join the one that suits you.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 fade-in-up">
<div class="step-card">
<div class="step-number">03</div>
<div class="step-icon"><i class="bi bi-trophy-fill"></i></div>
<h4>Play, Win & Withdraw</h4>
<p class="text-muted-custom">Show your skills, defeat opponents, and instantly withdraw your winnings.</p>
</div>
</div>
</div>
</div>
</section>
<section id="features" class="features-section">
<div class="container">
<div class="text-center mb-5 fade-in-up">
<h2>Why Choose <span class="text-accent">Hyper Esports</span>?</h2>
</div>
<div class="row g-4">
<div class="col-md-6 fade-in-up">
<div class="feature-box">
<div class="feature-icon"><i class="bi bi-shield-lock-fill"></i></div>
<div>
<h4>100% Secure & Fair Play</h4>
<p class="text-muted-custom">Advanced anti-cheat systems to ensure every match is fair.</p>
</div>
</div>
</div>
<div class="col-md-6 fade-in-up">
<div class="feature-box">
<div class="feature-icon"><i class="bi bi-lightning-charge-fill"></i></div>
<div>
<h4>Instant Withdrawals</h4>
<p class="text-muted-custom">Get your winnings transferred to your account within seconds.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="faq" class="faq-section">
<div class="container">
<div class="text-center mb-5"><h2>Frequently Asked Questions</h2></div>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="accordion accordion-flush" id="faqAccordion">
<div class="accordion-item">
<h2 class="accordion-header"><button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq1">Is playing legal?</button></h2>
<div id="faq1" class="accordion-collapse collapse" data-bs-parent="#faqAccordion"><div class="accordion-body">Yes, it is considered a game of skill and is 100% legal in India.</div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="mb-4">
<img src="https://i.ibb.co/TDdbPJFb/1766187566002.png" alt="Logo" style="width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent-color);">
<h4 class="mt-2 text-accent">Hyper Esports</h4>
</div>
<p class="text-muted-custom small mb-4 w-75 mx-auto">
<span class="text-accent fw-bold">Hyper Esports</span> is an esports platform. Play responsibly. Only for 18+.
</p>
<div class="text-muted-custom small">© 2024 <span class="text-accent fw-bold">Hyper Esports</span>. All rights reserved.</div>
</div>
</footer>
<div class="mobile-sticky-bar">
<a href="https://devuploads.com/ltc4df8xl6dx" class="btn btn-accent w-100 rounded-pill">Download & Get ₹5 Bonus</a>
</div>
<div class="modal fade" id="privacyModal" tabindex="-1"><div class="modal-dialog modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Privacy Policy</h5><button type="button" class="btn-close" data-bs-dismiss="modal"></button></div><div class="modal-body text-secondary"><p>Welcome to <span class="text-accent fw-bold">Hyper Esports</span>...</p></div></div></div></div>
<div class="modal fade" id="termsModal" tabindex="-1"><div class="modal-dialog modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Terms & Conditions</h5><button type="button" class="btn-close" data-bs-dismiss="modal"></button></div><div class="modal-body text-secondary"><p>By using <span class="text-accent fw-bold">Hyper Esports</span>...</p></div></div></div></div>
<div class="modal fade" id="refundModal" tabindex="-1"><div class="modal-dialog modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Refund Policy</h5><button type="button" class="btn-close" data-bs-dismiss="modal"></button></div><div class="modal-body text-secondary"><p>Refunds at <span class="text-accent fw-bold">Hyper Esports</span>...</p></div></div></div></div>
<div class="modal fade" id="fairPlayModal" tabindex="-1"><div class="modal-dialog modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Fair Play Policy</h5><button type="button" class="btn-close" data-bs-dismiss="modal"></button></div><div class="modal-body text-secondary"><p>Fairness at <span class="text-accent fw-bold">Hyper Esports</span>...</p></div></div></div></div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script>
const swiper = new Swiper('.gameSwiper', { slidesPerView: 'auto', centeredSlides: true, spaceBetween: 30, loop: true, autoplay: { delay: 2500, disableOnInteraction: false } });
const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) entry.target.classList.add('visible'); }); }, { threshold: 0.1 });
document.querySelectorAll('.fade-in-up').forEach((el) => observer.observe(el));
const menuToggle = document.getElementById('navbarNav');
const bsCollapse = new bootstrap.Collapse(menuToggle, {toggle: false});
document.querySelectorAll('.nav-link').forEach((l) => l.addEventListener('click', () => { if(window.innerWidth < 992) bsCollapse.hide(); }));
</script>
</body>
</html>