-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
649 lines (577 loc) · 17.8 KB
/
index.html
File metadata and controls
649 lines (577 loc) · 17.8 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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MetaVerse Gaming App</title>
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet"/>
<style>
/* Global Styles */
body {
font-family: "Press Start 2P", cursive;
margin: 0;
padding: 0;
background-color: #121212;
color: #f0f0f0;
overflow-x: hidden;
}
/* Branding Container */
.branding {
display: flex;
align-items: center;
gap: 15px;
padding: 10px;
background-color: #1e1e1e;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.logo-img {
width: 80px;
height: 100px;
border-radius: 8px;
}
.text-content h1 {
font-size: 1.8rem;
color: #4caf50;
margin: 0;
}
.text-content .tagline {
font-size: 0.9rem;
color: #f0f0f0;
margin: 5px 0 0;
}
/* Header */
header {
background: #1e1e1e;
padding: 15px 0;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
header .logo h1 {
font-size: 1.8rem;
color: #4caf50;
margin: 0;
}
nav {
margin-top: 10px;
}
.nav-links {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
}
.nav-link {
color: #f0f0f0;
font-size: 1rem;
text-decoration: none;
transition: color 0.3s ease;
}
.nav-link:hover {
color: #4caf50;
}
/* Cover Page */
.background-video {
width: 100%;
height: 100vh;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
z-index: -1;
filter: brightness(0.7);
}
.main-content {
position: relative;
z-index: 10;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.main-title {
font-size: 4rem;
color: #4caf50;
margin-bottom: 10px;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid #4caf50;
animation: typing 4s steps(30, end) infinite, blink 0.75s step-end infinite;
}
.subtitle {
font-family: "Press Start 2P", cursive;
font-size: 1.5rem;
color: #f0f0f0;
margin-top: 5px;
}
.btn-get-app {
margin-top: 20px;
padding: 15px 30px;
font-size: 1.2rem;
color: #121212;
background: #4caf50;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
}
.btn-get-app:hover {
background: #388e3c;
transform: scale(1.05);
}
@keyframes typing {
0% {
width: 0;
}
50% {
width: 100%;
}
100% {
width: 0;
}
}
@keyframes blink {
50% {
border-color: transparent;
}
}
/* Rolling Text Section */
.rolling-section {
background-color: #1e1e1e; /* Rolling section background */
padding: 20px 0;
text-align: center;
}
.rolling-text {
font-size: 2rem;
font-weight: bold;
color: #4caf50;
overflow: hidden;
white-space: nowrap;
width: 100%;
position: relative;
}
.rolling-text span {
display: inline-block;
animation: rollText 8s linear infinite;
white-space: nowrap;
}
@keyframes rollText {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-200%);
}
}
.the animation body {
font-family: 'Press Start 2P', cursive;
margin: 0;
padding: 0;
background-color: #000;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Container for the scene */
.container3 {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
/* Text Section */
.text-section {
max-width: 400px;
opacity: 0;
transform: translateX(-100%);
transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
/* On hover, make the text visible and animate it */
.container3:hover .text-section {
opacity: 1;
transform: translateX(20px);
}
.text-section h1,
.text-section h2 {
margin: 0;
}
.text-section p {
margin-top: 20px;
font-size: 16px;
font-weight: 400;
color: #ddd;
}
/* Image Section */
.image-container {
width: 50%;
max-width: 500px;
overflow: hidden;
position: relative;
transition: transform 1s ease-in-out;
}
.image-container img {
width: 100%;
height: auto;
display: block;
transform: translateX(0);
transition: transform 1s ease-in-out;
}
/* On hover, move the image slightly */
.container:hover .image-container img {
transform: translateX(40px);
}
.p-4 {
font-family: 'Press Start 2P', cursive;
background-color: #1a1a1a;
color: #fff;
padding: 20px;
}
/* Section Title */
.section-title {
font-size: 2rem;
font-weight: 700;
text-align: center;
margin-bottom: 2rem;
animation: fadeIn 2s ease-in-out;
}
/* Content Wrapper */
.content-wrapper {
background-color: #2b2b2b;
padding: 2rem;
border-radius: 0.5rem;
margin-bottom: 2rem;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.content-wrapper img {
border-radius: 50%;
border: 1px solid;
width: 200px;
height: 200px;
z-index: 1;
}
.content-title, .content-text {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
/* Hover effect for content */
.content-wrapper:hover .content-title, .content-wrapper:hover .content-text {
opacity: 1;
transform: translateY(0);
}
.content-title {
font-size: 1.5rem;
font-weight: 700;
margin-top: 1rem;
margin-bottom: 1rem;
}
.content-text {
font-size: 1rem;
line-height: 1.5;
text-align: left;
}
/* Layout adjustment for larger screens */
@media (min-width: 768px) {
.content-wrapper {
flex-direction: row;
align-items: center;
}
.content-wrapper:nth-child(even) {
flex-direction: row-reverse;
}
.content-wrapper img {
width: 300px;
height: 300px;
}
.content-text {
text-align: left;
}
}
/* Fade-in animation for section title */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Footer Styling */
footer {
background-color: #1a1a1a;
color: white;
padding: 50px 20px;
position: relative;
overflow: hidden;
}
.footer-decor {
background: radial-gradient(circle, rgba(233, 69, 96, 0.3), transparent 60%);
padding: 30px 0;
position: relative;
}
.footer-decor::before {
content: "";
position: absolute;
top: -50px;
left: 50%;
width: 200%;
height: 200px;
background: linear-gradient(135deg, rgba(233, 69, 96, 0.5), rgba(0, 0, 0, 0));
transform: rotate(30deg);
opacity: 0.2;
z-index: 0;
}
.footer-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.logo-section {
flex: 1;
margin: 10px;
max-width: 300px;
}
.logo-section .logo {
max-width: 150px;
margin-bottom: 10px;
border-radius: 8px;
}
.logo-section p {
font-size: 0.9rem;
line-height: 1.5;
}
.social-media {
flex: 1;
margin: 10px;
max-width: 300px;
}
.social-media h4 {
font-size: 1.2rem;
margin-bottom: 10px;
}
.social-media ul {
list-style: none;
padding: 0;
}
.social-media li {
margin-bottom: 5px;
}
.social-media a {
color: #e94560;
text-decoration: none;
transition: color 0.3s ease-in-out;
}
.social-media a:hover {
color: #fff;
}
.game-info {
flex: 1;
margin: 10px;
max-width: 300px;
}
.game-info h4 {
font-size: 1.2rem;
margin-bottom: 10px;
}
.game-info a {
color: #e94560;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease-in-out;
}
.game-info a:hover {
color: #fff;
}
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
text-align: center;
}
.logo-section, .buy-tokens, .social-media, .game-info {
max-width: 100%;
}
}
</style>
</head>
<body>
<header class="header">
<div class="container4">
<div class="branding">
<img src="./logo-removebg-preview.png"
alt="Metaverse Gaming Logo" />
<div class="text-content">
<h1>Velmorra</h1>
<p class="tagline">Valar Morghulis</p>
</div>
</div>
<nav>
<ul class="nav-links">
<li><a class="nav-link" href="index.html">Home</a></li>
<li><a class="nav-link" href="aboutus.html">About Us</a></li>
<li><a class="nav-link" href="market.html">Market</a></li>
<li><a class="nav-link" href="mining.html">Mining</a></li>
<li><a class="nav-link" href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<main>
<video class="background-video" autoplay muted loop>
<source src="drogonvideo.mp4" type="video/mp4" />
</video>
<div class="main-content">
<div class="text-container">
<h1 class="main-title glitch" data-text="GET IN THE GAME">
GET IN THE GAME
</h1>
<p class="subtitle">Metaverse On-Chain Game</p>
<button class="btn-get-app" onclick="window.location.href='download.html'">Get the App Now</button>
</div>
</div>
</main>
<section class="rolling-section">
<div class="rolling-text">
<span>DOWNLOAD NOW DOWNLOAD NOW</span>
</div>
</section>
<div class="container">
<div class="decorative-header">
<h1>Hero Role</h1>
</div>
<div class="carousel-wrapper">
<div class="carousel">
<div class="carousel-card">
<img src="DALL·E 2024-12-10 20.05.51 - A fearless warrior standing victorious, exuding an aura of invincibility, clad in gleaming golden armor with intricate designs and a flowing crimson c.webp" alt="Hero 1">
<h2>Warrior</h2>
<p>Strong and fearless,, excels in close combat.</p>
</div>
<div class="carousel-card">
<img src="DALL·E 2024-12-10 20.04.53 - A legendary female archer standing tall and confident, her unmatched skills radiating power. She is clad in elegant yet durable armor with emerald and.webp" alt="Hero 2">
<h2>Archer</h2>
<p>Deadly from a distance, precise and agile.</p>
</div>
<div class="carousel-card">
<img src="./wizard.jpg" alt="Hero 3">
<h2>Wizard</h2>
<p>Master of magic, controls elements to defeat foes.</p>
</div>
<div class="carousel-card">
<img src="DALL·E 2024-12-10 20.04.37 - A deadly assassin preparing to slay a dragon, dressed in sleek, dark armor with glowing red accents, holding two sharp katanas with intricate engravin.webp" alt="Hero 4">
<h2>Assassin</h2>
<p>Swift and stealthy, a master of surprise attacks.</p>
</div>
<div class="carousel-card">
<img src="./paladin.jpg" alt="Hero 5">
<h2>Paladin</h2>
<p>Defender of justice, with a strong sense of duty.</p>
</div>
</div>
</div>
<!-- Footer -->
<div class="decorative-footer"></div>
</div>
<div class="container3">
<!-- Image Section -->
<div class="image-container">
<img id="scene-image" alt="A medieval castle under attack with fire and explosions"
src="https://storage.googleapis.com/a1aa/image/UBMJ92ZTbfwCaCzJQ0yO8XL89b4OAMeVBPA0YDWeAl9YUhwnA.jpg"/>
</div>
<!-- Text Section -->
<div class="text-section">
<h1>SCENE</h1>
<h2>CONCEPT DESIGN</h2>
<p id="scene-description">
Enjoy the unique multi-token economic system, explore the adventurous dungeon, and earn daily work income.
All characters and items are NFTs. Click the button, recruit your hero and start your epic journey in the metaverse now!
</p>
</div>
</div>
</div>
<div class="p-4">
<div class="text-center mb-8">
<div class="flex justify-center items-center mb-4">
<div class="border-t-2 border-gray-500 w-1/4"></div>
<div class="mx-4 text-2xl">⚜</div>
<div class="border-t-2 border-gray-500 w-1/4"></div>
</div>
<h1 class="section-title">How to Play</h1>
</div>
<div class="content-wrapper">
<div class="md:w-1/3 mb-4 md:mb-0 md:mr-4">
<img alt="Adventure image description" src="DALL·E 2024-12-10 20.37.00 - A dramatic and intense fantasy scene of a knight battling a massive dragon in a dark, mystical forest. The knight is wearing shiny silver armor with i.webp" />
</div>
<div class="md:w-2/3">
<h2 class="content-title">Adventure</h2>
<p class="content-text">
Villages, battlefields, forests, and every piece of land on the cyberland are full of temptation, which will grab your eyes so that you will stop by the places of battles and trials. Becoming the lord here to take away the wealth that belongs to you is the only way for every player!
</p>
</div>
</div>
<div class="content-wrapper">
<div class="md:w-1/3 mb-4 md:mb-0 md:ml-4">
<img alt="Daily Mining image description" src="./DAILYmining.jpg" />
</div>
<div class="md:w-2/3">
<h2 class="content-title">Daily Mining</h2>
<p class="content-text">
Each hero has a different talent and skill, which is your unique honor. There are BNX, crystal, gold and other wealth resources in the mine. Hard-working heroes can earn rewards for their work in the mine. Of course, if you level up, you can get higher resources.
</p>
</div>
</div>
<div class="content-wrapper">
<div class="md:w-1/3 mb-4 md:mb-0 md:mr-4">
<img alt="Challenger Competition image description" src="DALL·E 2024-12-10 20.37.07 - A vivid and action-packed depiction of a Dragon Slaying Challenger Competition in a cyber-fantasy world. The scene features a mix of glowing futuristi.webp" />
</div>
<div class="md:w-2/3">
<h2 class="content-title">Challenger Competition</h2>
<p class="content-text">
Villages, battlefields, forests, and every piece of land on the cyberland are full of temptation, which will grab your eyes so that you will stop by the places of battles and trials. Becoming the lord here to take away the wealth that belongs to you is the only way for every player!
</p>
</div>
</div>
</div>
<footer>
<div class="footer-decor">
<div class="footer-container">
<div class="logo-section">
<img src="./logo-removebg-preview.png" alt="Game Logo" class="logo" />
</div>
<div class="social-media">
<h4>Social Media</h4>
<ul>
<li><a href="https://twitter.com" target="_blank">Twitter</a></li>
<li><a href="https://discord.com" target="_blank">Discord</a></li>
<li><a href="https://www.instagram.com/" target="_blank">Instagram</a></li>
<li><a href="https://in.linkedin.com/" target="_blank">Linkedin</a></li>
</ul>
</div>
<div class="game-info">
<h4>Quick Links</h4>
<a href="download.html" target="_blank">Download</a><br>
<a href="aboutus.html" target="_blank">About Us</a><br>
<a href="market.html" target="_blank">Market</a><br>
<a href="mining.html" target="_blank">Mining</a><br>
<a href="contact.html" target="_blank">Contact Us</a>
</div>
</div>
</div>
</footer>
</body>
</html>