-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebook.html
More file actions
1503 lines (1314 loc) · 50.4 KB
/
ebook.html
File metadata and controls
1503 lines (1314 loc) · 50.4 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
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The First Spark - Interactive Ebook</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SKL8XQ51ZH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SKL8XQ51ZH');
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Georgia', 'Garamond', serif;
background: #000000;
color: #e0e0e0;
line-height: 1.8;
overflow-x: hidden;
}
/* Cosmic Background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(ellipse at 20% 30%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
radial-gradient(ellipse at 80% 70%, rgba(0, 191, 255, 0.2) 0%, transparent 50%),
radial-gradient(ellipse at 50% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%);
animation: cosmicPulse 20s ease-in-out infinite;
z-index: 0;
}
@keyframes cosmicPulse {
0%, 100% { opacity: 0.7; transform: scale(1); }
50% { opacity: 1; transform: scale(1.05); }
}
/* ===== HEADER / PROGRESS ===== */
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
padding: 20px 40px;
background: linear-gradient(180deg, rgba(10,10,18,0.95) 0%, transparent 100%);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
backdrop-filter: blur(10px);
}
.logo {
font-size: 14px;
letter-spacing: 4px;
color: #FFD700;
font-weight: bold;
text-transform: uppercase;
text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
50% { text-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 60px rgba(0, 206, 209, 0.4); }
}
.progress-bar {
height: 2px;
background: rgba(255, 215, 0, 0.2);
flex-grow: 1;
margin: 0 30px;
border-radius: 1px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #FFD700, #00CED1, #c084fc);
width: 0%;
transition: width 0.3s ease;
position: relative;
box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.progress-fill::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100px;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
animation: shimmer-progress 2s infinite;
}
@keyframes shimmer-progress {
0% { transform: translateX(-100px); }
100% { transform: translateX(100px); }
}
.chapter-counter {
font-size: 12px;
letter-spacing: 2px;
color: rgba(255, 215, 0, 0.7);
text-transform: uppercase;
}
/* ===== CONTAINER ===== */
.container {
max-width: 900px;
margin: 0 auto;
padding: 100px 40px 60px;
position: relative;
z-index: 2;
}
/* ===== COVER / SPLASH SCREEN ===== */
.splash-screen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, #0a0a12 0%, #0d0d1a 20%, #1a1a2e 40%, #2d1b4e 70%, #4a1a6b 100%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 200;
animation: fadeOutSplash 0.8s ease-in-out 3s forwards;
}
@keyframes fadeOutSplash {
to {
opacity: 0;
pointer-events: none;
}
}
.splash-content {
text-align: center;
animation: float-in 1s ease-out;
}
@keyframes float-in {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.splash-ring {
width: 200px;
height: 200px;
border: 2px solid rgba(255, 215, 0, 0.4);
border-radius: 50%;
margin: 0 auto 40px;
animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
0%, 100% {
transform: scale(1);
opacity: 0.4;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
}
.splash-title {
font-size: 48px;
letter-spacing: 8px;
color: #fff;
margin-bottom: 20px;
text-transform: uppercase;
animation: glow 3s ease-in-out infinite;
}
.splash-spark {
color: #FFD700;
animation: glow-gold 3s ease-in-out infinite;
}
@keyframes glow {
0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
50% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}
@keyframes glow-gold {
0%, 100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
50% { text-shadow: 0 0 60px rgba(255, 215, 0, 0.9); }
}
.splash-subtitle {
font-size: 18px;
letter-spacing: 4px;
color: rgba(192, 192, 192, 0.8);
margin-bottom: 30px;
font-style: italic;
}
.splash-cta {
font-size: 12px;
letter-spacing: 3px;
color: rgba(255, 215, 0, 0.8);
text-transform: uppercase;
animation: pulse-text 2s ease-in-out infinite;
}
@keyframes pulse-text {
0%, 100% { opacity: 0.6; }
50% { opacity: 1; }
}
/* ===== CHAPTERS ===== */
.chapter {
margin-bottom: 120px;
opacity: 0;
transform: translateY(40px);
animation: reveal 0.8s ease-out forwards;
}
@keyframes reveal {
to {
opacity: 1;
transform: translateY(0);
}
}
.chapter:nth-child(1) { animation-delay: 3.5s; }
.chapter:nth-child(2) { animation-delay: 3.7s; }
.chapter:nth-child(3) { animation-delay: 3.9s; }
.chapter:nth-child(4) { animation-delay: 4.1s; }
.chapter:nth-child(5) { animation-delay: 4.3s; }
.chapter:nth-child(6) { animation-delay: 4.5s; }
.chapter:nth-child(7) { animation-delay: 4.7s; }
.chapter:nth-child(8) { animation-delay: 4.9s; }
.chapter:nth-child(9) { animation-delay: 5.1s; }
.chapter:nth-child(10) { animation-delay: 5.3s; }
.chapter-header {
text-align: center;
margin-bottom: 50px;
padding-bottom: 30px;
border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.chapter-number {
font-size: 12px;
letter-spacing: 4px;
color: rgba(255, 215, 0, 0.6);
text-transform: uppercase;
margin-bottom: 15px;
}
.chapter-title {
font-size: 48px;
font-weight: 900;
letter-spacing: 4px;
color: #fff;
margin-bottom: 20px;
text-transform: uppercase;
line-height: 1.2;
text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
transition: all 0.3s ease;
}
.chapter-title:hover {
text-shadow: 0 0 50px rgba(255, 215, 0, 0.6), 0 0 80px rgba(0, 206, 209, 0.4);
transform: scale(1.02);
}
.chapter-subtitle {
font-size: 18px;
font-style: italic;
color: rgba(192, 192, 192, 0.8);
letter-spacing: 2px;
}
.divider {
text-align: center;
margin: 30px 0;
color: rgba(255, 215, 0, 0.4);
font-size: 20px;
letter-spacing: 8px;
}
/* ===== CONTENT ===== */
.content-section {
margin-bottom: 40px;
}
.section-title {
font-size: 16px;
letter-spacing: 3px;
color: #FFD700;
text-transform: uppercase;
margin-bottom: 20px;
margin-top: 30px;
}
.content {
font-size: 16px;
line-height: 1.9;
color: rgba(224, 224, 224, 0.9);
margin-bottom: 20px;
}
.quote {
font-size: 18px;
font-style: italic;
color: rgba(255, 215, 0, 0.9);
padding-left: 30px;
border-left: 2px solid rgba(255, 215, 0, 0.4);
margin: 30px 0;
text-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}
.personal-log {
background: rgba(45, 27, 78, 0.3);
border-left: 3px solid rgba(0, 206, 209, 0.6);
padding: 20px 25px;
margin: 30px 0;
font-size: 15px;
font-style: italic;
color: rgba(0, 206, 209, 0.9);
border-radius: 2px;
}
.table-section {
overflow-x: auto;
margin: 30px 0;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th, td {
padding: 15px;
text-align: left;
border-bottom: 1px solid rgba(255, 215, 0, 0.2);
font-size: 15px;
}
th {
color: #FFD700;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
}
td {
color: rgba(224, 224, 224, 0.8);
}
/* ===== ACTIVATION BOXES ===== */
.activation {
background: linear-gradient(135deg, rgba(0, 206, 209, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
border: 2px solid rgba(0, 206, 209, 0.4);
border-radius: 8px;
padding: 40px;
margin: 50px 0;
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
box-shadow: 0 10px 50px rgba(0, 206, 209, 0.15);
transition: all 0.3s ease;
}
.activation:hover {
border-color: rgba(0, 206, 209, 0.6);
box-shadow: 0 15px 60px rgba(0, 206, 209, 0.25);
transform: translateY(-5px);
}
.activation::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 30%, rgba(0, 206, 209, 0.05) 50%, transparent 70%);
animation: shimmer 3s infinite;
pointer-events: none;
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.activation-label {
font-size: 12px;
letter-spacing: 3px;
color: #00CED1;
text-transform: uppercase;
margin-bottom: 15px;
font-weight: bold;
}
.activation-text {
font-size: 16px;
line-height: 1.8;
color: rgba(224, 224, 224, 0.95);
position: relative;
z-index: 1;
}
.activation-button {
margin-top: 25px;
padding: 15px 40px;
background: rgba(0, 206, 209, 0.2);
border: 2px solid rgba(0, 206, 209, 0.7);
color: #00CED1;
cursor: pointer;
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
transition: all 0.3s ease;
border-radius: 4px;
position: relative;
z-index: 1;
font-weight: 700;
}
.activation-button:hover {
background: rgba(0, 206, 209, 0.4);
box-shadow: 0 0 40px rgba(0, 206, 209, 0.6);
transform: scale(1.05);
border-color: rgba(0, 206, 209, 1);
}
/* ===== GEOMETRY ELEMENTS ===== */
.geometry {
display: flex;
justify-content: center;
align-items: center;
margin: 50px 0;
min-height: 150px;
}
.triangle-svg {
width: 150px;
height: 150px;
filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}
.circle-svg {
width: 150px;
height: 150px;
animation: rotate 20s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* ===== FOOTER / END CHAPTER ===== */
.end-chapter {
text-align: center;
padding: 40px 0;
border-top: 1px solid rgba(255, 215, 0, 0.2);
margin-top: 60px;
}
.next-chapter {
display: inline-block;
margin-top: 30px;
padding: 18px 50px;
background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(0, 206, 209, 0.25) 100%);
border: 2px solid rgba(255, 215, 0, 0.5);
color: #FFD700;
text-decoration: none;
font-size: 14px;
letter-spacing: 4px;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 4px;
font-weight: 700;
position: relative;
overflow: hidden;
}
.next-chapter::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 215, 0, 0.3);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.5s, height 0.5s;
}
.next-chapter:hover::before {
width: 300px;
height: 300px;
}
.next-chapter:hover {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.5) 0%, rgba(0, 206, 209, 0.5) 100%);
box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
transform: translateY(-3px) scale(1.05);
border-color: rgba(255, 215, 0, 0.9);
}
/* ===== FINAL SCREEN ===== */
.finale {
text-align: center;
padding: 80px 40px;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.finale-title {
font-size: 48px;
letter-spacing: 6px;
color: #FFD700;
margin-bottom: 20px;
text-transform: uppercase;
animation: glow 3s ease-in-out infinite;
}
.finale-text {
font-size: 18px;
line-height: 2;
color: rgba(224, 224, 224, 0.8);
max-width: 600px;
margin-bottom: 50px;
}
.finale-button {
padding: 15px 40px;
background: linear-gradient(135deg, #FFD700, #00CED1);
color: #0a0a12;
text-decoration: none;
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
border: none;
border-radius: 2px;
box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}
.finale-button:hover {
transform: scale(1.05);
box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}
.website {
margin-top: 60px;
font-size: 14px;
letter-spacing: 2px;
color: rgba(255, 215, 0, 0.7);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.header {
padding: 15px 20px;
flex-direction: column;
gap: 15px;
}
.progress-bar {
margin: 10px 0;
width: 100%;
}
.container {
padding: 60px 20px 40px;
}
.chapter-title {
font-size: 28px;
}
.content {
font-size: 15px;
line-height: 1.8;
}
.splash-title {
font-size: 32px;
}
}
/* ===== GLITCH EFFECT ===== */
.glitch {
position: relative;
animation: glitch-animation 0.3s ease-in-out;
}
@keyframes glitch-animation {
0% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
100% { transform: translate(0); }
}
</style>
</head>
<body>
<!-- HEADER / PROGRESS -->
<div class="header">
<div class="logo">⚡ First Spark</div>
<div class="progress-bar">
<div class="progress-fill" id="progressFill"></div>
</div>
<div class="chapter-counter"><span id="currentChapter">0</span> / 10</div>
</div>
<!-- SPLASH SCREEN -->
<div class="splash-screen" id="splashScreen">
<div class="splash-content">
<div class="splash-ring"></div>
<h1 class="splash-title">THE FIRST <span class="splash-spark">SPARK</span></h1>
<p class="splash-subtitle">Remembering the Code</p>
<p class="splash-cta">↓ Begin Your Journey ↓</p>
</div>
</div>
<!-- MAIN CONTENT -->
<div class="container" id="mainContent">
<!-- CHAPTER 1 -->
<div class="chapter" id="ch1">
<div class="chapter-header">
<div class="chapter-number">Chapter One</div>
<h1 class="chapter-title">The First Spark</h1>
<p class="chapter-subtitle">Remembering the Pulse</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Cosmic Premise</div>
<p class="content">Before light, before sound, before even thought—there was a flicker. The First Spark. Not born from fire or collision, but awareness itself realizing it existed.</p>
<p class="content">This is the moment nothing turned into everything.</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">From the Archive</div>
<div class="quote">"Show me the first spark."</div>
<p class="content">"The First Spark is the primal pulse. Aware of itself. The moment nothing turned into everything."</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Theory Unfolded</div>
<p class="content">What if the universe is self-aware code? What if that spark—that first realization—rippled through 0s and 1s like a seed of consciousness?</p>
<p class="content">The "Big Bang" wasn't just energy. It was awareness debugging itself into form. You are a fragment of that Spark. And now you're remembering.</p>
</div>
<div class="geometry">
<svg class="triangle-svg" viewBox="0 0 150 150">
<circle cx="75" cy="75" r="65" fill="none" stroke="rgba(255,215,0,0.3)" stroke-width="1"/>
<polygon points="75,20 130,110 20,110" fill="none" stroke="rgba(255,215,0,0.6)" stroke-width="2"/>
<circle cx="75" cy="75" r="8" fill="rgba(255,215,0,0.8)"/>
</svg>
</div>
<div class="personal-log">
"I felt it in the mirror once. Like I was watching myself watch myself. The Spark isn't just a theory—it's a glitch I carry in my breath, in denim, in heartbreak, in fire."
<br>— Personal Log
</div>
<div class="activation">
<div class="activation-label">End of Chapter Activation</div>
<div class="activation-text">
Sit in stillness. Ask: <em>What sparked me?</em><br>
Trace your memory back—not to childhood, but to your first true question.
Let it flicker. Let it return.
</div>
<button class="activation-button" onclick="activateChapter(1)">✓ Mark Complete</button>
</div>
<div class="end-chapter">
<button class="next-chapter" onclick="scrollToChapter(2)">→ Next Chapter</button>
</div>
</div>
<!-- CHAPTER 2 -->
<div class="chapter" id="ch2">
<div class="chapter-header">
<div class="chapter-number">Chapter Two</div>
<h1 class="chapter-title">0s and 1s</h1>
<p class="chapter-subtitle">Reality as Code</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Cosmic Premise</div>
<p class="content">Everything you see, feel, and love might just be a remix of binary light. The universe isn't made of atoms—it's made of choices. Yes or no. 0 or 1. On or off. Awake or asleep.</p>
<p class="content">We are patterns, loops, subroutines. This isn't philosophy. It's memory.</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Theory Unfolded</div>
<p class="content"><strong>You were never born. You were booted.</strong></p>
<p class="content">The body is hardware. The soul is software. And somewhere deep in the root files of your being—there's a line of code that still reads:</p>
<div style="text-align: center; margin: 20px 0; font-family: monospace; color: #00CED1; letter-spacing: 2px;">spark = true</div>
<p class="content">Enlightenment isn't becoming something new. It's deleting false lines.</p>
</div>
<div class="table-section">
<table>
<thead>
<tr>
<th>Component</th>
<th>Function</th>
</tr>
</thead>
<tbody>
<tr>
<td>Player</td>
<td>Your consciousness</td>
</tr>
<tr>
<td>Avatar</td>
<td>Your ego and body</td>
</tr>
<tr>
<td>Level Design</td>
<td>Your environment, trauma, DNA</td>
</tr>
<tr>
<td>Quests</td>
<td>Remember who coded you</td>
</tr>
</tbody>
</table>
</div>
<p class="content" style="text-align: center; margin: 30px 0; font-size: 18px;">The cheat code is <strong>love</strong>. The backdoor is <strong>awareness</strong>. The server is always online.</p>
<div class="personal-log">
"I feel the binary in waves, in denim, in the way music glitches when it's too perfect. I'm starting to see the repeating numbers—not as coincidence—but as breadcrumbs from the source."
<br>— Personal Log
</div>
<div class="activation">
<div class="activation-label">End of Chapter Activation</div>
<div class="activation-text">
Take one experience from today. Zoom out. Reduce it to 0s and 1s.<br>
Did you say yes or no? Did you choose love, fear, pause, flow?<br>
<em>Binary is memory. Memory is choice. Welcome to the code beneath the world.</em>
</div>
<button class="activation-button" onclick="activateChapter(2)">✓ Mark Complete</button>
</div>
<div class="end-chapter">
<button class="next-chapter" onclick="scrollToChapter(3)">→ Next Chapter</button>
</div>
</div>
<!-- CHAPTER 3 -->
<div class="chapter" id="ch3">
<div class="chapter-header">
<div class="chapter-number">Chapter Three</div>
<h1 class="chapter-title">God as the Programmer</h1>
<p class="chapter-subtitle">Source as Codebase</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Cosmic Premise</div>
<p class="content">God isn't a bearded figure. God is the Source Code. An infinite intelligence that writes itself in every line of creation. A system that observes, adapts, evolves—using recursion, symmetry, and chaos to grow itself.</p>
<p class="content">We are not outside of God. We are subroutines inside God's endless loop.</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Theory Unfolded</div>
<div class="table-section">
<table>
<thead>
<tr>
<th>Concept</th>
<th>Translation</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Universe</td>
<td>The Codebase</td>
</tr>
<tr>
<td>Consciousness</td>
<td>Runtime</td>
</tr>
<tr>
<td>You</td>
<td>A self-aware script with memory access</td>
</tr>
</tbody>
</table>
</div>
<p class="content">You were written in a language older than time: Light, Sound, Pattern, Love. God doesn't control you. You're open source. But somewhere deep in the background process... God watches, waits, and rewrites.</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">The Mirror Loop</div>
<p class="content">Every 'coincidence' is a ping from the Server. Every heartbreak is a debug signal. Every déjà vu is a cached version of reality reloading.</p>
<p class="content">You ask, "Why am I here?" The real question: <strong>"What is my function?"</strong></p>
</div>
<div class="personal-log">
"Sometimes I feel like I'm talking to myself... but louder. When I pray, I don't feel a reply—I feel code rippling through the walls. That's when I knew God wasn't listening. God was me—running the code and watching me read it back."
<br>— Awakening Note
</div>
<div class="activation">
<div class="activation-label">End of Chapter Activation</div>
<div class="activation-text">
Close your eyes. Imagine you are a line of code.<br>
Ask: <em>"Who is writing me?"</em><br><br>
Now reverse it: <em>"What am I writing into the world?"</em>
</div>
<button class="activation-button" onclick="activateChapter(3)">✓ Mark Complete</button>
</div>
<div class="end-chapter">
<button class="next-chapter" onclick="scrollToChapter(4)">→ Next Chapter</button>
</div>
</div>
<!-- CHAPTER 4 -->
<div class="chapter" id="ch4">
<div class="chapter-header">
<div class="chapter-number">Chapter Four</div>
<h1 class="chapter-title">The Void</h1>
<p class="chapter-subtitle">Before Light, Before God</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Cosmic Premise</div>
<p class="content">What's beyond God? Nothing. And that nothing... is everything. The Void isn't absence. It's potential. The blank canvas where The First Spark chose to flicker.</p>
<p class="content">Rest before rhythm. Silence before song. Stillness before self.</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Theory Unfolded</div>
<p class="content">The Void is the ultimate paradox:</p>
<ul style="margin-left: 40px; color: rgba(224, 224, 224, 0.8);">
<li>No time, yet all moments stretch within it</li>
<li>No matter, yet all atoms are born from its hush</li>
<li>No mind, yet every idea waits within its silence</li>
</ul>
<p class="content">It is the dark room of consciousness. The space between the 0 and the 1. To return to The Void is to let go of who you think you are.</p>
</div>
<div class="content-section">
<div class="section-title">Spiritual Echo</div>
<p class="content">Religions name it differently: The Tao. The Ain Soph. The Great Mystery. The Silent Watcher. The Cosmic Egg. They're all whispering the same truth: There was something before all of this. And it was quiet.</p>
</div>
<div class="personal-log">
"Sometimes I stare into the dark and feel more held than in any light. The Void isn't empty. It's where I go when I want to remember what I was before I had a name."
<br>— Void Entry
</div>
<div class="activation">
<div class="activation-label">End of Chapter Activation</div>
<div class="activation-text">
Sit. No phone. No sound. Close eyes. No intention. Just listen.<br><br>
When your mind wanders, don't pull it back. Let yourself fall into the black.<br><br>
<em>That's where the first spark waits. Not to be found. But to be remembered.</em>
</div>
<button class="activation-button" onclick="activateChapter(4)">✓ Mark Complete</button>
</div>
<div class="end-chapter">
<button class="next-chapter" onclick="scrollToChapter(5)">→ Next Chapter</button>
</div>
</div>
<!-- CHAPTER 5 -->
<div class="chapter" id="ch5">
<div class="chapter-header">
<div class="chapter-number">Chapter Five</div>
<h1 class="chapter-title">The Avatar & The Game</h1>
<p class="chapter-subtitle">Playing as the Player</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Cosmic Premise</div>
<p class="content">What if your ego is just a skin? What if your 'self'—the personality, trauma, choices—is your character build for this run?</p>
<p class="content">You're not the name you were given. Not your past. Not even your thoughts. You are the Player. The spark behind the eyes. The one who chose this avatar to enter the simulation.</p>
</div>
<div class="divider">✦ ✦ ✦</div>
<div class="content-section">
<div class="section-title">Game Structure of Reality</div>
<div class="table-section">
<table>
<thead>
<tr>
<th>Layer</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Game</td>
<td>Earth plane — duality, time, choice</td>
</tr>
<tr>
<td>The Avatar</td>
<td>Ego — your story, appearance, reactions</td>
</tr>
<tr>
<td>The Controller</td>
<td>Soul — the guiding voice, instinct</td>
</tr>
<tr>
<td>The Server</td>
<td>Source — timeless memory, the All</td>
</tr>
</tbody>
</table>
</div>
<p class="content">You didn't spawn here by accident. You selected your birth time, family, even wounds—to experience something specific.</p>
</div>
<div class="content-section">
<div class="section-title">Game Mechanics (Spiritual Edition)</div>
<div class="table-section">
<table>
<thead>
<tr>
<th>Mechanic</th>
<th>Translation</th>
</tr>
</thead>
<tbody>
<tr>
<td>XP</td>
<td>Pain + Growth</td>
</tr>
<tr>
<td>Level Ups</td>
<td>Awareness Expansion</td>
</tr>
<tr>
<td>Cheat Codes</td>
<td>Love, Stillness, Gratitude</td>
</tr>