-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitiate-realm.html
609 lines (582 loc) · 21.6 KB
/
initiate-realm.html
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
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
Reimagine Truth
</title>
<script src="https://cdn.tailwindcss.com">
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet"/>
<style>
:root {
--primary-color: #2f0139;
--secondary-color: #2a0132;
--highlight-color: #ff00ff;
--text-color: #fff;
--button-color: #692119;
--hover-effect: radial-gradient(circle, #ff00ff, transparent);
--button-bg-color: #000;
--button-text-color: #fff;
--button-hover-bg-color: #ffd700;
--button-hover-text-color: #000;
}
body {
background: #1a0120;
color: var(--text-color);
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
.hero {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
border: 2px solid var(--highlight-color);
padding: 1rem;
}
.hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--hover-effect);
opacity: 0.2;
animation: float 6s infinite ease-in-out;
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
.glow-text {
font-size: 2rem;
font-weight: bold;
text-shadow: 0 0 10px var(--highlight-color), 0 0 20px var(--highlight-color), 0 0 30px var(--highlight-color);
animation: glow 2s infinite alternate;
}
@keyframes glow {
0% {
text-shadow: 0 0 10px var(--highlight-color), 0 0 20px var(--highlight-color), 0 0 30px var(--highlight-color);
}
100% {
text-shadow: 0 0 20px var(--highlight-color), 0 0 30px var(--highlight-color), 0 0 40px var(--highlight-color);
}
}
.card {
background: var(--primary-color);
border: 2px solid var(--highlight-color);
border-radius: 10px;
padding: 1rem;
box-shadow: 0 0 15px var(--highlight-color);
transition: transform 0.3s, box-shadow 0.3s;
animation: fadeInUp 1s ease-in-out;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 0 25px var(--highlight-color);
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.btn {
background: var(--button-bg-color);
color: var(--button-text-color);
padding: 0.75rem 1.5rem;
border: 2px solid var(--highlight-color);
border-radius: 20px;
cursor: pointer;
transition: background 0.3s, color 0.3s;
animation: pulse 2s infinite;
display: inline-block;
text-align: center;
}
.btn:hover {
background: var(--button-hover-bg-color);
color: var(--button-hover-text-color);
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
footer {
background: var(--primary-color);
color: var(--text-color);
text-align: center;
padding: 1rem;
}
html {
scroll-behavior: smooth;
}
.sticky-header {
position: sticky;
top: 0;
z-index: 50;
background: var(--primary-color);
transition: background 0.3s, box-shadow 0.3s;
}
.sticky-header.scrolled {
background: var(--secondary-color);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.logo-text {
font-size: 1.5rem;
font-weight: 700;
transition: font-size 0.3s;
}
.logo-text.scrolled {
font-size: 1.25rem;
}
.nav-item {
transition: transform 0.3s;
}
.nav-item:hover {
transform: scale(1.1);
}
.fade-in {
opacity: 0;
animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
.slide-in {
transform: translateX(-100%);
animation: slideIn 1s forwards;
}
@keyframes slideIn {
to {
transform: translateX(0);
}
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 500px;
border-radius: 10px;
animation: slideInFromTop 0.5s ease-out, fadeIn 0.5s ease-out;
}
@keyframes slideInFromTop {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(0);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
transition: transform 0.3s;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
transform: rotate(90deg);
}
.floating-effect {
display: inline-block;
transition: transform 0.3s;
}
.floating-effect:hover {
transform: translateY(-10px);
}
.nav-item {
opacity: 0;
animation: fadeInUp 0.5s forwards;
}
.nav-item:nth-child(1) {
animation-delay: 0.1s;
}
.nav-item:nth-child(2) {
animation-delay: 0.2s;
}
.nav-item:nth-child(3) {
animation-delay: 0.3s;
}
.nav-item:nth-child(4) {
animation-delay: 0.4s;
}
.nav-item:nth-child(5) {
animation-delay: 0.5s;
}
.nav-item:nth-child(6) {
animation-delay: 0.6s;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<!-- Header Section -->
<header class="sticky-header flex justify-between items-center h-16 px-4">
<div class="flex items-center">
<a class="text-[var(--text-color)] mr-4 flex items-center" href="home.html">
<span class="logo-text ml-2">
TruthWeb
</span>
</a>
</div>
<div class="flex items-center">
<a class="text-[var(--text-color)] mr-4 icon floating-effect" href="notifications.html">
<i class="fas fa-bell text-xl sm:text-2xl">
</i>
</a>
<a class="text-[var(--text-color)] mr-4 icon floating-effect" href="messages.html">
<i class="fas fa-comments text-xl sm:text-2xl">
</i>
</a>
<a class="text-[var(--text-color)] icon floating-effect" href="profile.html">
<i class="fas fa-user text-xl sm:text-2xl">
</i>
</a>
</div>
</header>
<!-- Navigation Section -->
<nav class="bg-[var(--primary-color)] py-4">
<ul class="flex flex-wrap justify-center space-x-4">
<li class="nav-item">
<a class="text-[var(--text-color)] hover:text-[var(--highlight-color)] floating-effect" href="index.html">
Home
</a>
</li>
<li class="nav-item">
<a class="text-[var(--text-color)] hover:text-[var(--highlight-color)] floating-effect" href="discover.html" id="openModalButton">
Discover
</a>
</li>
<li class="nav-item">
<a class="text-[var(--text-color)] hover:text-[var(--highlight-color)] floating-effect" href="about.html">
About
</a>
</li>
<li class="nav-item">
<a class="text-[var(--text-color)] hover:text-[var(--highlight-color)] floating-effect" href="contact.html">
Contact
</a>
</li>
<li class="nav-item">
<a class="text-[var(--text-color)] hover:text-[var(--highlight-color)] floating-effect" href="policy.html">
Policy
</a>
</li>
</ul>
</nav>
<section class="my-16 px-6" id="initiate-realm">
<div class="text-center">
<h2 class="text-3xl md:text-4xl font-bold text-highlight-color mb-6">Initiate Realm: Elemental Awakening</h2>
<p class="text-xl text-gray-300 mb-4">The Initiate Realm, known as Elemental Awakening, represents the next step in the truthseeker's journey. Here, mortals begin to attune to elemental forces, unlocking hidden potential and deepening their understanding of interconnected truths.</p>
</div>
</div>
<section class="py-12">
<div class="container mx-auto px-4">
<h1 class="text-3xl font-bold mb-4">
</section>
<div class="grid md:grid-cols-2 gap-8">
<div class="card">
<h3 class="text-2xl font-semibold text-highlight-color mb-4">Key Features</h3>
<ul class="list-disc pl-6 text-lg text-gray-300">
<li><strong>Race:</strong> Element-touched Humans</li>
<li><strong>Appearance:</strong> Humans with subtle elemental traits, such as eyes shimmering with elemental hues or hair and skin tinted to reflect their affinity.</li>
<li><strong>Theme:</strong> Awakening to the primal forces within and the power of nature's elements.</li>
</ul>
</div>
<div class="card">
<h3 class="text-2xl font-semibold text-highlight-color mb-4">Inhabitants</h3>
<ul class="list-disc pl-6 text-lg text-gray-300">
<li><strong>Elemental Guardians:</strong> Beings embodying the essence of the elements, guiding initiates in their awakening journey.</li>
<li><strong>Elemental Sprites:</strong> Playful entities composed of raw elemental energy, often assisting truthseekers in mastering their newfound abilities.</li>
</ul>
</div>
</div>
<div class="mt-8">
<h3 class="text-2xl font-semibold text-highlight-color mb-4">Landscape</h3>
<p class="text-lg text-gray-300 mb-4">The Initiate Realm showcases diverse terrains that resonate with the elemental forces shaping this world:</p>
<ul class="list-disc pl-6 text-lg text-gray-300">
<li><strong>Flaming Peaks:</strong> Volcanic mountains with rivers of molten lava symbolizing passion and transformation.</li>
<li><strong>Shimmering Seas:</strong> Vast oceans glowing with mystical light, representing depth and intuition.</li>
<li><strong>Thunderous Skies:</strong> Storm-filled heavens crackling with energy, a testament to the raw power of change.</li>
<li><strong>Verdant Groves:</strong> Lush forests thriving with life and growth, fostering harmony and renewal.</li>
</ul>
</div>
</section>
<!-- News Content Section -->
<section class="py-12">
<div class="container mx-auto px-4">
<div class="card">
<img src="https://i.ibb.co/dbfYnyS/Screenshot-2025-01-02-002826.png" alt="Screenshot-2025-01-02-002826" class="w-full h-auto mb-4">
<h1 class="text-3xl font-bold mb-4">Initiate Realm: The Awakening of Elements</h1>
<p class="text-lg mb-4">
The Initiate Realm hums with the primal power of the elements. Here, the forces of fire, water, earth, and air are not just abstract concepts but living energies that shape every aspect of existence. Its inhabitants, the Element-touched Humans, are Mortals who have awakened to these elemental connections, their bodies bearing subtle but unmistakable marks of their affinity.
</p>
<p class="text-lg mb-4">
Villages in the Initiate Realm are built near elemental hotspots, where the energy is most vibrant. Lava flows illuminate the night with fiery brilliance, crystal caverns echo with the resonance of the earth, waterfalls cascade in shimmering veils, and winds carry the scents of distant horizons. These natural phenomena are not just admired but revered, as they are both the source of life and the key to understanding one’s place in the world.
</p>
<p class="text-lg mb-4">
Element-touched Humans have learned to live in harmony with the elements. Fire-touched communities harness the flames for forging tools and creating art, while water-touched dwellers build floating villages and master the currents. Earth-touched individuals sculpt their homes from stone and clay, and those attuned to air craft windmills and soar through the skies with gliders of their own design.
</p>
<p class="text-lg mb-4">
However, the realm is not without its challenges. The elements, while awe-inspiring, can be unpredictable and destructive. Volcanoes can erupt, rivers can flood, and storms can tear through the land. The Element-touched Humans must constantly strive to balance respect for these forces with their desire to harness them.
</p>
<p class="text-lg mb-4">
For those who master their elemental connection, the Initiate Realm becomes a place of growth and enlightenment. It is here that they begin to understand the deeper connections between themselves, the world, and the vast energies that flow through all existence.
</p>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Main Content Section -->
<section class="flex justify-center items-center min-h-screen">
<div class="card text-center max-w-md mx-auto">
<img alt="A wise and enigmatic guide, the Front Man leads players through the realms, offering quests and unraveling the mysteries of the Truth Web with wisdom, riddles, and subtle challenges." class="w-full h-auto" src="https://storage.googleapis.com/a1aa/image/2qpoee48nCp6i0NYFMedBgrAqXWk1NIFfjhMBRWjaeG2yAOgC.jpg" width="300">
<h3 class="text-xl font-semibold mb-2 text-[var(--heading-color)]">
TruthWeb Quest
</h3>
<p class="mb-4">
Journey Through Interconnected Realms
</p>
<a class="btn" href="ENTRANCE.html">
Door Lock
</a>
</div>
</section>
<section class="py-12">
<div class="text-center">
<h3 class="text-2xl md:text-3xl font-bold text-highlight-color mb-6">The Elemental Awakening</h3>
<p class="text-lg text-gray-300">
The path ahead reveals the elemental forces within. Truthseekers will find their connection to the primal elements, unlocking powers that will help guide them deeper into the Truth Web.
</p>
<a href="adept-realm.html" class="btn mt-6">Proceed to the Next Realm</a>
</div>
</section>
<!-- Modal -->
<div id="modal" class="fixed inset-0 bg-gray-800 bg-opacity-50 flex items-center justify-center hidden">
<div class="bg-white rounded-lg shadow-lg p-6 w-full max-w-md">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-semibold text-black">More Options</h2>
<button id="closeModal" class="text-gray-700 hover:text-red-500 transition-transform duration-300">
<i class="fas fa-times"></i>
</button>
</div>
<ul class="space-y-4">
<li><a href="wiki.html" class="text-gray-700 hover:text-blue-500"><i class="fas fa-book mr-2"></i>Wiki</a></li>
<li><a href="whitepaper.html" class="text-gray-700 hover:text-blue-500"><i class="fas fa-file-alt mr-2"></i>Whitepaper</a></li>
<li><a href="airdrop.html" class="text-gray-700 hover:text-blue-500"><i class="fas fa-gift mr-2"></i>Airdrop</a></li>
<li><a href="listing.html" class="text-gray-700 hover:text-blue-500"><i class="fas fa-list mr-2"></i>Listing</a></li>
<li><a href="rto-token.html" class="text-gray-700 hover:text-blue-500"><i class="fas fa-coins mr-2"></i>RTO Token</a></li>
<li><a href="news.html" class="text-gray-700 hover:text-blue-500"><i class="fas fa-newspaper mr-2"></i>News</a></li>
<li><a href="nft-collection.html" class="text-gray-700 hover:text-blue-500 flex items-center"><i class="fas fa-images mr-2"></i>NFT Collection</a></li>
</ul>
</div>
</div>
<script>
document.getElementById('openModalButton').addEventListener('click', function(event) {
event.preventDefault();
document.getElementById('modal').classList.remove('hidden');
});
document.getElementById('closeModal').addEventListener('click', function() {
document.getElementById('modal').classList.add('hidden');
});
window.addEventListener('click', function(event) {
if (event.target == document.getElementById('modal')) {
document.getElementById('modal').classList.add('hidden');
}
});
</script>
</body>
</html>
</div>
</div>
<!-- Footer Section -->
<footer class="bg-[var(--primary-color)] py-8">
<div class="container mx-auto text-center">
<div class="mb-4">
<a class="text-[var(--text-color)] mx-2 floating-effect" href="https://www.facebook.com/reimaginetruthofficial/" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a class="text-[var(--text-color)] mx-2 floating-effect" href="https://x.com/reimagine_truth" target="_blank"><i class="fab fa-twitter"></i></a>
<a class="text-[var(--text-color)] mx-2 floating-effect" href="https://t.me/TruthWebOfficial" target="_blank"><i class="fab fa-telegram"></i></a>
<a class="text-[var(--text-color)] mx-2 floating-effect" href="https://www.youtube.com/@ReimagineTruth" target="_blank"><i class="fab fa-youtube"></i></a>
</div>
<p class="text-[var(--text-color)] mb-4">© 2025 TruthWeb. All rights reserved.</p>
</div>
<!-- Quick Links Section -->
<div class="flex justify-center space-x-8 mb-8 animate-fadeIn">
<a class="text-white hover:text-gray-300 transition-colors" href="about.html">About Us</a>
<a class="text-white hover:text-gray-300 transition-colors" href="termsofservice.html">Terms & Conditions</a>
<a class="text-white hover:text-gray-300 transition-colors" href="policy.html">Privacy Policy</a>
<a class="text-white hover:text-gray-300 transition-colors" href="contact.html">Contact</a>
</div>
<!-- Support Section -->
<div class="text-center animate-fadeIn">
<p class="text-lg mb-4">Support Us</p>
<a href="donate.html" class="inline-flex items-center text-white bg-purple-700 px-4 py-2 rounded-full hover:bg-purple-600 transition-colors transform hover:scale-110">
<i class="fas fa-heart mr-2"></i> Donate
</a>
</div>
</div>
</footer>
<script>
document.getElementById('openModalButton').addEventListener('click', function(event) {
event.preventDefault();
document.getElementById('infoModal').style.display = 'block';
});
document.getElementById('closeModalButton').addEventListener('click', function() {
document.getElementById('infoModal').style.display = 'none';
});
window.addEventListener('click', function(event) {
if (event.target == document.getElementById('infoModal')) {
document.getElementById('infoModal').style.display = 'none';
}
});
window.addEventListener('scroll', function() {
const header = document.querySelector('.sticky-header');
const logoText = document.querySelector('.logo-text');
if (window.scrollY > 50) {
header.classList.add('scrolled');
logoText.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
logoText.classList.remove('scrolled');
}
});
</script>
</section>
</main>
</body>
</html>
<!-- Modal -->
<div class="fixed inset-0 bg-gray-800 bg-opacity-50 flex items-center justify-center hidden" id="modal">
<div class="bg-white rounded-lg shadow-lg p-6 w-full max-w-md">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-semibold text-black">
More Options
</h2>
<button class="text-gray-700 hover:text-red-500 transition-transform duration-300" id="closeModal">
<i class="fas fa-times">
</i>
</button>
</div>
<ul class="space-y-4">
<li>
<a class="text-gray-700 hover:text-blue-500" href="wiki.html">
<i class="fas fa-book mr-2">
</i>
Wiki
</a>
</li>
<li>
<a class="text-gray-700 hover:text-blue-500" href="whitepaper.html">
<i class="fas fa-file-alt mr-2">
</i>
Whitepaper
</a>
</li>
<li>
<a class="text-gray-700 hover:text-blue-500" href="airdrop.html">
<i class="fas fa-gift mr-2">
</i>
Airdrop
</a>
</li>
<li>
<a class="text-gray-700 hover:text-blue-500" href="listing.html">
<i class="fas fa-list mr-2">
</i>
Listing
</a>
</li>
<li>
<a class="text-gray-700 hover:text-blue-500" href="rto-token.html">
<i class="fas fa-coins mr-2">
</i>
RTO Token
</a>
</li>
<li>
<a class="text-gray-700 hover:text-blue-500" href="news.html">
<i class="fas fa-newspaper mr-2">
</i>
News
</a>
</li>
</ul>
</div>
</div>
<script>
document.getElementById('openModalButton').addEventListener('click', function(event) {
event.preventDefault();
document.getElementById('modal').classList.remove('hidden');
});
document.getElementById('closeModal').addEventListener('click', function() {
document.getElementById('modal').classList.add('hidden');
});
window.addEventListener('click', function(event) {
if (event.target == document.getElementById('modal')) {
document.getElementById('modal').classList.add('hidden');
}
});
</script>
</body>
</html>