-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
872 lines (795 loc) · 60.3 KB
/
Copy pathindex.html
File metadata and controls
872 lines (795 loc) · 60.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Single Files - GBC Investigation</title>
<meta name="description" content="An official investigation into anybody's dating history, filed by the Global Bureau of Celibacy. Build a case file on your crush and send it to them. 🕵️">
<meta name="theme-color" content="#070913">
<!-- Favicon (reuses the GBC seal) -->
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<!-- Open Graph (Facebook, WhatsApp, LinkedIn, etc.) -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="The Single Files">
<meta property="og:title" content="THE SINGLE FILES — Global Bureau of Celibacy">
<meta property="og:description" content="Na official investigation into anybody love history. Build a case file on your crush and send am. The Bureau get plenty question 🕵️">
<!-- TODO: replace with your live URL before posting -->
<meta property="og:url" content="https://your-domain.example/">
<meta property="og:image" content="https://your-domain.example/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="THE SINGLE FILES — a TOP SECRET Global Bureau of Celibacy case file.">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="THE SINGLE FILES — Global Bureau of Celibacy">
<meta name="twitter:description" content="Na official investigation into anybody love history. Build a case file on your crush and send am. The Bureau get plenty question 🕵️">
<meta name="twitter:image" content="https://your-domain.example/og-image.png">
<!-- Google Fonts -->
<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=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Background Particles Canvas -->
<canvas id="particles-canvas"></canvas>
<div class="app-container">
<!-- HEADER / BRANDING -->
<header class="dossier-header">
<div class="gbc-logo-badge">
<svg width="40" height="40" viewBox="0 0 100 100" class="logo-svg">
<circle cx="50" cy="50" r="45" fill="none" stroke="var(--gold)" stroke-width="2"/>
<circle cx="50" cy="50" r="38" fill="none" stroke="var(--gold-dim)" stroke-width="1" stroke-dasharray="3 3"/>
<path d="M 30,50 Q 50,20 70,50 Q 50,80 30,50" fill="none" stroke="var(--purple)" stroke-width="2"/>
<text x="50" y="55" font-family="'Playfair Display', serif" font-size="18" fill="var(--gold)" text-anchor="middle" font-weight="bold">GBC</text>
</svg>
<div class="logo-text">
<span class="agency-title">GLOBAL BUREAU OF CELIBACY</span>
<span class="dossier-subtitle">OFFICIAL CASE FILE</span>
</div>
</div>
<div class="case-meta">
<span class="meta-label">CASE STATUS:</span>
<span class="meta-value status-unresolved">WE NEVER CONFIRM</span>
<div class="audio-control-toggle">
<button id="btn-toggle-audio" class="btn-audio-icon" title="Toggle Audio Pack">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" id="audio-icon-svg">
<path d="M11 5L6 9H2v6h4l5 4V5z" fill="currentColor"/>
<path d="M15.54 8.46a5 5 0 0 1 0 7.07M19.07 4.93a10 10 0 0 1 0 14.14" class="volume-waves"/>
</svg>
</button>
</div>
</div>
</header>
<!-- MAIN WINDOW -->
<main class="dossier-window">
<!-- SIDEBAR INDEX / NAVIGATION -->
<nav class="dossier-nav" id="dossierNav">
<div class="nav-header">FILE INDEX</div>
<ul>
<li class="nav-item active" data-target="cover">
<span class="nav-num">00</span>
<span class="nav-name">Front Page</span>
</li>
<li class="nav-item disabled" data-target="chapter1">
<span class="nav-num">01</span>
<span class="nav-name">How E Take Start</span>
</li>
<li class="nav-item disabled" data-target="chapter2">
<span class="nav-num">02</span>
<span class="nav-name">The Mumu Years</span>
</li>
<li class="nav-item disabled" data-target="chapter3">
<span class="nav-num">03</span>
<span class="nav-name">Now Now</span>
</li>
<li class="nav-item disabled" data-target="chapter4">
<span class="nav-num">04</span>
<span class="nav-name">Test Room</span>
</li>
<li class="nav-item disabled" data-target="verdict">
<span class="nav-num">05</span>
<span class="nav-name">Final Verdict</span>
</li>
<li class="nav-item nav-quick-cert" data-target="verdict" id="nav-item-quick-cert" title="Jump straight to Certificate">
<span class="nav-num">⚡</span>
<span class="nav-name">Quick Cert</span>
</li>
</ul>
<div class="nav-investigator">
<div class="lbl">LEAD INVESTIGATOR:</div>
<div class="val" id="nav-investigator-name">UNASSIGNED</div>
</div>
</nav>
<!-- CONTENT SECTIONS (THE CASE FILE) -->
<div class="dossier-content">
<!-- COVER PAGE SECTION -->
<section class="dossier-section active" id="sec-cover">
<div class="section-scroll">
<div class="cover-layout">
<div class="confidential-stamp">TOP SECRET</div>
<h1 class="main-title">THE SINGLE FILES</h1>
<p class="main-subtitle hidden" id="main-subtitle-element">Full gist about the life of <span class="subject-placeholder">Japheth "JayOnChain" Adamu</span></p>
<div class="disclaimer-note">
We open this case to settle who dey and who never dey.
</div>
<!-- Mode Selector Tabs -->
<div class="mode-selector-wrapper">
<button class="mode-tab active" id="tab-mode-express">
<span class="mode-icon">⚡</span>
<div class="mode-tab-text">
<span class="mode-tab-title">EXPRESS TEST</span>
<span class="mode-tab-sub">Instant % & Certificate (60s)</span>
</div>
</button>
<button class="mode-tab" id="tab-mode-full">
<span class="mode-icon">🕵️</span>
<div class="mode-tab-text">
<span class="mode-tab-title">FULL DOSSIER</span>
<span class="mode-tab-sub">5 Chapters, Tests & Share Link</span>
</div>
</button>
</div>
<!-- Mode 1: Express Singleness Quiz Card -->
<div class="express-quiz-card glass-panel border-pink" id="express-quiz-card">
<div class="quiz-card-header">
<span class="sweet-badge">💖 EXPRESS SINGLENESS CALCULATOR</span>
<h3>Wetin Be Your Singleness Percentage?</h3>
<p class="panel-desc">Answer these 5 quick Nigerian love questions to calculate your exact rating & generate your official certificate!</p>
</div>
<div class="express-input-row">
<div class="input-group">
<label for="express-subject-name">Your Full Name (or Crush Name)</label>
<input type="text" id="express-subject-name" placeholder="e.g. Chidimma 'Sweetheart' Okafor..." maxlength="40" autocomplete="off">
</div>
</div>
<div class="express-questions-container" id="express-questions-list">
<!-- Q1 -->
<div class="express-q-block">
<label class="q-title">1. How you dey handle Valentine's Day?</label>
<div class="q-options">
<label class="q-opt"><input type="radio" name="q1" value="25" checked> <span>😴 Dey sleep for house, off data & phone</span></label>
<label class="q-opt"><input type="radio" name="q1" value="20"> <span>🍿 Dey chop popcorn & laugh people online</span></label>
<label class="q-opt"><input type="radio" name="q1" value="12"> <span>🎁 I buy chocolate & flowers give myself</span></label>
<label class="q-opt"><input type="radio" name="q1" value="0"> <span>👩❤️👨 Out on a romantic dinner date with my bae</span></label>
</div>
</div>
<!-- Q2 -->
<div class="express-q-block">
<label class="q-title">2. When last person send you 'Good Morning My Love' text?</label>
<div class="q-options">
<label class="q-opt"><input type="radio" name="q2" value="25" checked> <span>🦖 Since 1902 / I don forget how e dey sound</span></label>
<label class="q-opt"><input type="radio" name="q2" value="18"> <span>🏦 Bank customer care count as love text?</span></label>
<label class="q-opt"><input type="radio" name="q2" value="10"> <span>📅 Last year before breakfast happened</span></label>
<label class="q-opt"><input type="radio" name="q2" value="0"> <span>💌 This morning when I wake up!</span></label>
</div>
</div>
<!-- Q3 -->
<div class="express-q-block">
<label class="q-title">3. If someone talk say "You fine well well", wetin be your first thought?</label>
<div class="q-options">
<label class="q-opt"><input type="radio" name="q3" value="20" checked> <span>💸 "This one wan borrow money, make I run"</span></label>
<label class="q-opt"><input type="radio" name="q3" value="16"> <span>🕵️ "Na format & setup, my eye dey open"</span></label>
<label class="q-opt"><input type="radio" name="q3" value="10"> <span>🙈 Blush small, but remain single & unbothered</span></label>
<label class="q-opt"><input type="radio" name="q3" value="0"> <span>🥰 "Aww, thank you sweetie!"</span></label>
</div>
</div>
<!-- Q4 -->
<div class="express-q-block">
<label class="q-title">4. How your 'God When' Index be for social media?</label>
<div class="q-options">
<label class="q-opt"><input type="radio" name="q4" value="20" checked> <span>💔 Maximum Overload! Keyboard auto-corrects to 'God When'</span></label>
<label class="q-opt"><input type="radio" name="q4" value="15"> <span>😭 I dey comment am under every wedding video</span></label>
<label class="q-opt"><input type="radio" name="q4" value="8"> <span>😐 Once in a while when I see sweet relationship</span></label>
<label class="q-opt"><input type="radio" name="q4" value="0"> <span>✨ Never typed am — na me dem dey tell 'God When'</span></label>
</div>
</div>
<!-- Q5 -->
<div class="express-q-block">
<label class="q-title">5. What is your Love Dodging & Defense Strategy?</label>
<div class="q-options">
<label class="q-opt"><input type="radio" name="q5" value="20" checked> <span>👻 Ghosting people after 2 days of chatting</span></label>
<label class="q-opt"><input type="radio" name="q5" value="15"> <span>⏳ Replying WhatsApp messages after 3 business days</span></label>
<label class="q-opt"><input type="radio" name="q5" value="8"> <span>🗣️ Talking about my ex non-stop so dem go run</span></label>
<label class="q-opt"><input type="radio" name="q5" value="0"> <span>💘 Zero defense! My heart is 100% open for romance</span></label>
</div>
</div>
</div>
<button id="btn-calculate-express" class="btn btn-accent glow-btn full-width btn-large">⚡ CALCULATE SINGLENESS % & SHOW CERTIFICATE</button>
</div>
<!-- Investigator Setup Form (Full Dossier Mode) -->
<div class="investigator-input-card glass-panel hidden" id="auth-form-card">
<h3 class="panel-title gold-text" id="auth-card-title">Open Full File</h3>
<p class="panel-desc" id="auth-card-desc">Drop your details make we build the 5-chapter dossier and open am.</p>
<div class="config-grid">
<div class="input-group" id="group-investigator">
<label for="investigator-input">Your Name (Investigator)</label>
<input type="text" id="investigator-input" placeholder="Put your name (e.g. Sophia)..." maxlength="35" autocomplete="off">
</div>
<div class="input-group" id="group-subject">
<label for="subject-input">Who We Dey Check</label>
<input type="text" id="subject-input" placeholder="Put the person name..." maxlength="35" autocomplete="off">
</div>
<div class="input-group" id="group-primary">
<label for="primary-school-input">Primary School</label>
<input type="text" id="primary-school-input" placeholder="Put primary school..." maxlength="40" autocomplete="off">
</div>
<div class="input-group" id="group-higher">
<label for="higher-school-input">Big School</label>
<input type="text" id="higher-school-input" placeholder="Put higher school..." maxlength="40" autocomplete="off">
</div>
</div>
<button id="btn-authorize" class="btn btn-primary glow-btn full-width">BUILD & OPEN FILE</button>
</div>
<!-- Wax Seal & Case ID (Initially hidden/faded until authorized, or shown as authorization result) -->
<div class="authorization-dossier-meta hidden" id="auth-meta">
<div class="case-id-display">
<span class="mono-label">CASE ID:</span>
<span id="case-id-value" class="mono-value">GBC-2026-X8F92</span>
</div>
<!-- Share Link Panel (Only shown in compiler mode) -->
<div class="share-panel glass-panel hidden" id="compiler-share-panel">
<h4 class="share-title gold-text">📂 Share This File Link</h4>
<p class="panel-desc">Send this link give your crush make dem put their name and check your record:</p>
<div class="share-row">
<input type="text" id="share-link-input" readonly>
<button id="btn-copy-link" class="btn btn-accent glow-btn">COPY LINK</button>
</div>
<div class="copy-toast hidden" id="copy-toast-msg">✓ Link don copy!</div>
<div class="share-socials">
<span class="share-socials-label">Or blow am for:</span>
<div class="share-btn-row">
<button id="btn-share-native" class="btn-social btn-social-native hidden" title="Share">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"/><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"/></svg>
Share
</button>
<button id="btn-share-whatsapp" class="btn-social btn-social-whatsapp" title="Share on WhatsApp">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.71.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>
WhatsApp
</button>
<button id="btn-share-twitter" class="btn-social btn-social-twitter" title="Share on X / Twitter">
<svg width="15" height="15" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
X
</button>
<button id="btn-share-facebook" class="btn-social btn-social-facebook" title="Share on Facebook">
<svg width="15" height="15" viewBox="0 0 24 24" fill="currentColor"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>
Facebook
</button>
</div>
</div>
</div>
<div class="wax-seal-wrapper">
<svg class="wax-seal" viewBox="0 0 100 100" width="120" height="120">
<!-- Inner wax blob -->
<path d="M 50,10 C 65,8 85,20 90,38 C 95,55 85,75 75,85 C 65,95 35,92 20,80 C 5,68 8,45 15,30 C 22,15 35,12 50,10 Z" fill="var(--seal-red)" filter="url(#drop-shadow)"/>
<!-- Concentric inner text circle -->
<circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1" stroke-dasharray="2 2"/>
<text x="50" y="44" font-family="'Playfair Display', serif" font-size="12" fill="rgba(255,255,255,0.8)" text-anchor="middle" font-weight="bold">GBC</text>
<text x="50" y="58" font-family="'Outfit', sans-serif" font-size="6" fill="rgba(255,255,255,0.6)" text-anchor="middle" letter-spacing="1">SEAL OF</text>
<text x="50" y="65" font-family="'Outfit', sans-serif" font-size="6" fill="rgba(255,255,255,0.6)" text-anchor="middle" letter-spacing="1">CELIBACY</text>
<!-- SVG Filter for realistic shadow -->
<defs>
<filter id="drop-shadow" x="-10%" y="-10%" width="130%" height="130%">
<feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000" flood-opacity="0.6"/>
</filter>
</defs>
</svg>
<span class="seal-caption">OFFICIAL STAMP</span>
</div>
<button id="btn-start" class="btn btn-accent glow-btn btn-large">START THE MATTER</button>
</div>
</div>
</section>
<!-- CHAPTER I: GENESIS OF SOLITUDE -->
<section class="dossier-section" id="sec-chapter1">
<div class="section-scroll">
<div class="chapter-header">
<span class="chapter-number">CHAPTER I</span>
<h2>How E Take Start</h2>
<span class="timeframe">Age 0 – 12</span>
</div>
<div class="academic-record-header glass-panel">
<div class="record-meta">
<div><strong>FILE:</strong> Small Pikin Days</div>
<div><strong>PLACE:</strong> <span class="primary-school-placeholder">Hekan Women School</span> (Primary)</div>
</div>
<p class="record-intro">
As pikin, this person put im whole mind for play and food. Love matter no dey the picture at all.
</p>
</div>
<div class="evidence-grid">
<!-- Left: School Log Cards -->
<div class="evidence-timeline">
<div class="timeline-event glass-panel">
<div class="event-badge">LOG #01</div>
<div class="event-year">2002 – 2008</div>
<h4 class="event-title">Biscuit Na Everything</h4>
<p class="event-desc">Na snacks, lunchbox and playground be im matter. If girl talk to am, na biscuit exchange, nothing else.</p>
</div>
<div class="timeline-event glass-panel">
<div class="event-badge">LOG #02</div>
<div class="event-year">2008 – 2012</div>
<h4 class="event-title">Girls Near, Eye No Dey</h4>
<p class="event-desc">Girls surround am for years but the guy no even notice one signal. To am, na homework competition, no be anything else.</p>
</div>
</div>
<!-- Right: Witness Statements -->
<div class="witness-statements">
<h3 class="subsection-title"><span class="icon">💬</span> Wetin People Talk</h3>
<div class="statement-card glass-panel">
<div class="quote-symbol">“</div>
<p class="quote-text">Na biscuit worry us pass girls. If girl wan collect your lunchbox, na wahala be that, no be love.</p>
<div class="quote-author">
<div class="author-name">Emeka</div>
<div class="author-relation">Childhood Padi</div>
</div>
</div>
<div class="statement-card glass-panel">
<div class="quote-symbol">“</div>
<p class="quote-text">Love no dey our syllabus. Break time na cartoon and ball we dey do. <span class="subject-short-placeholder">Jay</span> no fit see girl at all.</p>
<div class="quote-author">
<div class="author-name">Sadiq</div>
<div class="author-relation">Gate Padi</div>
</div>
</div>
</div>
</div>
<!-- Hekan Women School Report Card Accordion -->
<div class="archive-report-card glass-panel" id="primary-report-card">
<div class="accordion-header">
<div class="hdr-left">
<span class="mono-label">SECRET FILE:</span>
<strong class="gold-text"><span class="primary-school-placeholder">Hekan Women School</span> Result</strong>
</div>
<span class="accordion-chevron">▼</span>
</div>
<div class="accordion-content hidden">
<table class="report-table">
<thead>
<tr>
<th>Subject</th>
<th>Wetin E Mean</th>
<th>GBC Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dodging Eye</td>
<td>To turn face sharp sharp when person look am</td>
<td class="grade grade-a">A+</td>
</tr>
<tr>
<td>Playground Business</td>
<td>Biscuit swap and to guard im lunchbox well well</td>
<td class="grade grade-a">A</td>
</tr>
<tr>
<td>Toasting Small Talk</td>
<td>To start ordinary gist with girl</td>
<td class="grade grade-f">F (Zero Zero)</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="conclusion-box glass-panel border-gold">
<span class="conclusion-tag">INVESTIGATOR NOTE:</span>
<p>No love matter for im small days. Na cartoon, ball and to survive school be im whole life.</p>
</div>
<div class="navigation-footer">
<button class="btn btn-secondary btn-prev" data-target="cover">BACK</button>
<button class="btn btn-accent btn-next" data-target="chapter2">GO CHAPTER II</button>
</div>
</div>
</section>
<!-- CHAPTER II: OBLIVIOUS ERA -->
<section class="dossier-section" id="sec-chapter2">
<div class="section-scroll">
<div class="chapter-header">
<span class="chapter-number">CHAPTER II</span>
<h2>The Mumu Years</h2>
<span class="timeframe">Secondary School | Age 13 – 18</span>
</div>
<div class="era-intro glass-panel">
<p><strong>REPORT:</strong> Na the time wey other people dey catch feelings, but this one build strong <em>Mumu Shield</em> to dodge love completely.</p>
</div>
<!-- Interactive Excuse / Behavior Engine -->
<div class="behavior-engine-container">
<div class="engine-controls glass-panel">
<h3 class="panel-title amethyst-text">The Dodging Machine</h3>
<p class="panel-desc">Press any one make you see wetin the guy dey do when girl matter show for secondary school.</p>
<div class="simulation-events">
<button class="btn btn-secondary sim-trigger" data-event="pencil">Girl wan borrow pencil</button>
<button class="btn btn-secondary sim-trigger" data-event="crush">"Who you like?"</button>
<button class="btn btn-secondary sim-trigger" data-event="partner">Dem sit am near girl</button>
<button class="btn btn-secondary sim-trigger" data-event="valentines">Val Day reach</button>
</div>
<div class="engine-screen-box">
<div class="screen-header">
<span class="dot red"></span><span class="dot yellow"></span><span class="dot green"></span>
<span class="screen-title">GBC_ENGINE_LOGS.EXE</span>
</div>
<div class="screen-content" id="engine-terminal-output">
<div class="terminal-line system">[SYSTEM] Machine don ready. Press event on top make e run...</div>
</div>
</div>
</div>
<!-- Flowchart UI representation -->
<div class="flowchart-panel glass-panel">
<h3 class="panel-title gold-text">How Im Brain Dey Work</h3>
<div class="flowchart-visual">
<div class="flow-node highlight">
<span class="node-label">Girl Show Face</span>
</div>
<div class="flow-arrow">▼</div>
<div class="flow-node">
<span class="node-label">E Try Toast?</span>
</div>
<div class="flow-row-nodes">
<div class="flow-branch branch-no">
<span class="branch-label">NO</span>
<div class="flow-arrow">▼</div>
<div class="flow-node green-node">
<span class="node-label">Face Book</span>
</div>
</div>
<div class="flow-branch branch-yes">
<span class="branch-label">YES (0%)</span>
<div class="flow-arrow">▼</div>
<div class="flow-node red-node">
<span class="node-label">Body Dey Shake</span>
</div>
</div>
</div>
<div class="flow-arrow">▼</div>
<div class="flow-node gold-node">
<span class="node-label">Status: Still Single</span>
</div>
</div>
</div>
</div>
<div class="navigation-footer">
<button class="btn btn-secondary btn-prev" data-target="chapter1">BACK</button>
<button class="btn btn-accent btn-next" data-target="chapter3">GO CHAPTER III</button>
</div>
</div>
</section>
<!-- CHAPTER III: THE MODERN ERA -->
<section class="dossier-section" id="sec-chapter3">
<div class="section-scroll">
<div class="chapter-header">
<span class="chapter-number">CHAPTER III</span>
<h2>Now Now</h2>
<span class="timeframe"><span class="higher-school-placeholder">Kaduna Polytechnic</span> | Age 19 – Today</span>
</div>
<div class="academic-record-header glass-panel">
<div class="record-meta">
<div><strong>SCHOOL:</strong> <span class="higher-school-placeholder">Kaduna Polytechnic</span></div>
<div><strong>WETIN WE DEY CHECK:</strong> Big Boy and Tech Life</div>
</div>
<p class="record-intro">
As the guy enter big school and face tech ("<span class="subject-short-placeholder">JayOnChain</span>"), the love matter still flat. Nothing dey happen.
</p>
</div>
<!-- Premium Stats Dashboard -->
<div class="stats-dashboard">
<div class="stat-card glass-panel count-up-card">
<div class="stat-icon">📅</div>
<div class="stat-number" id="stat-dates">0</div>
<div class="stat-label">Date Wey E Go</div>
<div class="stat-sub">Confirm record</div>
</div>
<div class="stat-card glass-panel count-up-card">
<div class="stat-icon">🍃</div>
<div class="stat-number" id="stat-walks">0</div>
<div class="stat-label">Evening Waka With Bae</div>
<div class="stat-sub">Nothing dey record</div>
</div>
<div class="stat-card glass-panel count-up-card">
<div class="stat-icon">⚠️</div>
<div class="stat-number" id="stat-situationships">0</div>
<div class="stat-label">Situationship</div>
<div class="stat-sub">No talking stage waka finish</div>
</div>
<div class="stat-card glass-panel count-up-card span-all">
<div class="stat-icon">🍕</div>
<div class="stat-number-wrapper">
<span class="stat-number font-mono" id="stat-food">0</span>
</div>
<div class="stat-label">Times E Choose Food / Code Pass People</div>
<div class="stat-sub">Counter dey add as we dey talk</div>
</div>
</div>
<!-- Kaduna Polytechnic Report Card Accordion -->
<div class="archive-report-card glass-panel" id="higher-report-card">
<div class="accordion-header">
<div class="hdr-left">
<span class="mono-label">SECRET FILE:</span>
<strong class="gold-text"><span class="higher-school-placeholder">Kaduna Polytechnic</span> Result</strong>
</div>
<span class="accordion-chevron">▼</span>
</div>
<div class="accordion-content hidden">
<table class="report-table">
<thead>
<tr>
<th>Subject</th>
<th>Wetin E Mean</th>
<th>GBC Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>Indomie Science</td>
<td>Correct water-to-spice level and fast midnight cook</td>
<td class="grade grade-a">A+</td>
</tr>
<tr>
<td>Keyboard Repair</td>
<td>To couple keyboard and oil the switch</td>
<td class="grade grade-a">A</td>
</tr>
<tr>
<td>Dodging Love & Date</td>
<td>To run from outing and party</td>
<td class="grade grade-f">F (Complete Absence)</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- System Note -->
<div class="system-observation glass-panel">
<div class="obs-header">
<span class="obs-icon">🔍</span>
<strong>WETIN WE SEE:</strong>
</div>
<p class="obs-text">
The guy consistent well well. Time wey e dey put for blockchain, CSS and indomie plenty pass outing by far. No love data at all.
</p>
</div>
<div class="navigation-footer">
<button class="btn btn-secondary btn-prev" data-target="chapter2">BACK</button>
<button class="btn btn-accent btn-next" data-target="chapter4">GO CHAPTER IV</button>
</div>
</div>
</section>
<!-- CHAPTER IV: BEHAVIOR LAB (FLIRT SIMULATOR) -->
<section class="dossier-section" id="sec-chapter4">
<div class="section-scroll">
<div class="chapter-header">
<span class="chapter-number">CHAPTER IV</span>
<h2>Test Room</h2>
<span class="timeframe">We Test Am For Cage</span>
</div>
<div class="lab-intro glass-panel">
<p><strong>NOTICE:</strong> For here we throw gist at <span class="subject-short-placeholder">Japheth</span> make we see how e go reply under pressure. Every time, na the same "no love" answer.</p>
</div>
<!-- Interactive Simulator Sandbox -->
<div class="simulator-box glass-panel">
<div class="simulator-header">
<span class="badge-live">WE DEY TEST AM</span>
<span class="lab-id">LAB-ID: GBC-99-TEST</span>
</div>
<div class="simulator-main">
<!-- Interactive Screen -->
<div class="sim-screen glass-panel">
<div class="scenario-prompt" id="sim-prompt">
Pick one test for down make e run.
</div>
<div class="simulation-feedback" id="sim-feedback">
<!-- Interactive Result will go here -->
<div class="placeholder-text">We dey wait make you start...</div>
</div>
<div class="outcome-report hidden" id="sim-outcome">
<div class="report-header">TEST RESULT</div>
<div class="report-text" id="sim-outcome-text"></div>
</div>
</div>
<!-- Testing Scenarios Trigger -->
<div class="scenario-selector">
<h4>TEST CASE SELECTION:</h4>
<button class="btn btn-secondary sim-scenario-btn" data-scenario="1">
Test 1: "Cold Dey Catch Me"
</button>
<button class="btn btn-secondary sim-scenario-btn" data-scenario="2">
Test 2: "You Free This Weekend?"
</button>
<button class="btn btn-secondary sim-scenario-btn" data-scenario="3">
Test 3: "You Fine Today O"
</button>
</div>
<!-- Response Options (Hidden initially until scenario chosen) -->
<div class="sim-options-panel hidden" id="sim-options-wrapper">
<h4>PICK WETIN E GO DO:</h4>
<div class="options-grid" id="sim-options-grid">
<!-- Buttons populated dynamically -->
</div>
</div>
</div>
</div>
<!-- Interactive Polygraph (Lie Detector) -->
<div class="polygraph-wrapper glass-panel">
<div class="polygraph-header">
<span class="badge-poly">GBC LIE DETECTOR</span>
<span class="poly-status" id="poly-status-text">E DEY WAIT</span>
</div>
<div class="polygraph-body">
<div class="graph-screen">
<canvas id="polygraph-canvas"></canvas>
</div>
<div class="polygraph-controls">
<h4>PICK WETIN WE GO CHECK:</h4>
<div class="poly-buttons">
<button class="btn btn-secondary btn-poly-trigger" data-query="history">Check For Secret Ex</button>
<button class="btn btn-secondary btn-poly-trigger" data-query="crush">Check For Crush</button>
<button class="btn btn-secondary btn-poly-trigger" data-query="excuses">Check If Im Excuse Na True</button>
</div>
</div>
</div>
<div class="polygraph-report hidden" id="polygraph-report-card">
<div class="poly-report-hdr">BODY SCAN REPORT</div>
<p class="poly-report-txt" id="polygraph-report-text">Scan don finish.</p>
</div>
</div>
<div class="navigation-footer">
<button class="btn btn-secondary btn-prev" data-target="chapter3">BACK</button>
<button class="btn btn-accent btn-next" data-target="verdict">GO FINAL VERDICT</button>
</div>
</div>
</section>
<!-- SECTION V: OFFICIAL VERDICT (AFFIDAVIT) -->
<section class="dossier-section" id="sec-verdict">
<div class="section-scroll">
<div class="chapter-header">
<span class="chapter-number">FINAL FILE</span>
<h2>Final Verdict</h2>
<span class="timeframe">Bureau Confirm Am</span>
</div>
<!-- Interactive Certificate Area -->
<div class="affidavit-container glass-panel border-gold" id="affidavit-print">
<div class="affidavit-corner tl"></div>
<div class="affidavit-corner tr"></div>
<div class="affidavit-corner bl"></div>
<div class="affidavit-corner br"></div>
<div class="affidavit-seal-watermark">GBC</div>
<div class="affidavit-header">
<div class="affidavit-crest">GBC</div>
<h3 class="affidavit-agency">GLOBAL BUREAU OF CELIBACY</h3>
<p class="affidavit-office">Office of Verified Singlehood · Est. 2026</p>
<div class="divider-line"></div>
<p class="affidavit-doc-title">CERTIFICATE OF VERIFIED SINGLEHOOD</p>
</div>
<div class="affidavit-body">
<p class="cert-preamble">This is to officially certify that</p>
<h2 class="subject-highlight subject-placeholder">JAPHETH "JAYONCHAIN" ADAMU</h2>
<div class="cert-columns">
<div class="cert-col cert-col-text">
<p class="declaration-text" id="affidavit-declaration-text">
Having been thoroughly investigated across all official records right from <strong class="gold-text">childbirth till now</strong>, <span class="subject-placeholder">JAPHETH "JAYONCHAIN" ADAMU</span> is hereby confirmed by the Global Bureau of Celibacy to be of <strong class="gold-text">verified single status.</strong>
</p>
<p class="declaration-conclusion" id="declaration-conclusion-text">This certified subject has maintained 100% verified singlehood continuously from day one. No break, no ex, no hidden bae anywhere.</p>
</div>
<div class="cert-col cert-col-score">
<!-- Singleness Score Meter -->
<div class="score-block">
<span class="verdict-tier-badge" id="verdict-tier-badge">CERTIFIED SINGLE · Confirmed</span>
<div class="score-readout">
<span class="score-percent" id="score-percent">95%</span>
<span class="score-caption">Official Singlehood Rating</span>
</div>
<div class="score-bar-track">
<div class="score-bar-fill" id="score-bar-fill"></div>
</div>
</div>
</div>
</div>
<!-- Official issuance details -->
<div class="cert-meta-row">
<div class="cert-meta-item">
<span class="cert-meta-label">Certificate No.</span>
<span class="cert-meta-value" id="cert-number">GBC-2026-00000</span>
</div>
<div class="cert-meta-item">
<span class="cert-meta-label">Date of Issue</span>
<span class="cert-meta-value" id="cert-date">—</span>
</div>
<div class="cert-meta-item">
<span class="cert-meta-label">Status</span>
<span class="cert-meta-value" id="cert-status">PENDING SEAL</span>
</div>
</div>
</div>
<!-- Interactive Stamp Placement Location -->
<div class="stamp-landing-zone" id="stamp-target-zone">
<!-- Stamp will be dynamically appended here upon clicking stamp button -->
</div>
<div class="affidavit-signatures">
<div class="signature-block">
<div class="sig-line signature-text">Bureau Rep</div>
<div class="sig-title">OFFICIAL GBC VERIFIER</div>
</div>
<div class="signature-block">
<div class="sig-line signature-text" id="investigator-signature-display">We dey wait for you...</div>
<div class="sig-title">LEAD INVESTIGATOR</div>
</div>
</div>
</div>
<!-- Action panel to stamp the document -->
<div class="action-panel glass-panel">
<h3>Stamp & Save Your Official Certificate</h3>
<p>Select your official stamp style and hit the button to seal your certificate!</p>
<!-- Stamp Style Picker -->
<div class="stamp-picker-row">
<span class="stamp-picker-label">Stamp Style:</span>
<button class="stamp-choice-btn active" data-stamp-style="classic">🔴 Certified Single</button>
<button class="stamp-choice-btn" data-stamp-style="cupid">💖 Cupid Proof</button>
<button class="stamp-choice-btn" data-stamp-style="gold">👑 Chief Single</button>
</div>
<div class="final-actions-row">
<button id="btn-stamp-action" class="btn btn-accent btn-large glow-btn">SEAL & STAMP PAPER</button>
<button id="btn-download-action" class="btn btn-secondary btn-large">📸 SAVE AS LANDSCAPE IMAGE</button>
<button id="btn-print-action" class="btn btn-secondary btn-large">🖨️ PRINT CERTIFICATE (1 PAGE PDF)</button>
<button id="btn-appeal-action" class="btn btn-secondary btn-large">💔 APPEAL / DATE CHALLENGE</button>
</div>
<!-- WhatsApp Status Share row -->
<div class="cert-share-row">
<span class="cert-share-label">Flex your singlehood percentage:</span>
<button id="btn-share-cert-whatsapp" class="btn-social btn-social-whatsapp">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.71.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>
Share % on WhatsApp Status
</button>
<button id="btn-share-cert-twitter" class="btn-social btn-social-twitter">
<svg width="15" height="15" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
Post on X / Twitter
</button>
</div>
</div>
<!-- GBC Most Wanted Leaderboard (per-browser records) -->
<div class="most-wanted-panel glass-panel">
<div class="most-wanted-header">
<h3 class="gold-text">🏆 GBC MOST WANTED</h3>
<button id="btn-clear-most-wanted" class="btn-clear-mw" type="button">Clear list</button>
</div>
<p class="most-wanted-sub">Your Bureau's records — the most certified-single files you don close for this device.</p>
<ol class="most-wanted-list" id="most-wanted-list">
<li class="mw-empty">No files closed yet. Be the first wey go stamp am.</li>
</ol>
</div>
<!-- Custom Appeal Overlay/Alert Modal (Initially Hidden) -->
<div class="appeal-modal-overlay hidden" id="appeal-modal">
<div class="appeal-modal-card glass-panel border-gold">
<h3 class="gold-text">⚠️ YOU WAN CHALLENGE AM?</h3>
<p class="appeal-modal-desc">
Bureau rule talk say if you no gree with the verdict, una two must arrange one dinner date make dem check the matter face to face.
</p>
<div class="audit-summary-card">
<div class="audit-row"><strong>Who Dey Pay:</strong> <span class="investigator-placeholder">Investigator</span></div>
<div class="audit-row"><strong>Who We Dey Check:</strong> <span class="subject-placeholder">Subject</span></div>
<div class="audit-row"><strong>Why:</strong> To check the single matter well</div>
<div class="audit-row"><strong>Where:</strong> Any nice place wey dem dey chop</div>
</div>
<p class="appeal-instructions">
You wan pay for this dinner date? If you confirm, we go set am.
</p>
<div class="appeal-modal-actions">
<button id="btn-confirm-appeal" class="btn btn-accent glow-btn">YES, I GO PAY</button>
<button id="btn-cancel-appeal" class="btn btn-secondary">CANCEL</button>
</div>
</div>
</div>
<div class="navigation-footer">
<button class="btn btn-secondary btn-prev" data-target="chapter4">BACK</button>
</div>
</div>
</section>
</div>
</main>
</div>
<!-- Dossier Scripts -->
<!-- html2canvas: turns the certificate into a downloadable/shareable image -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js" integrity="sha512-BNaRQnYJYiPSqHHDb58B0yaPfCu+Wgds8Gp/gU33kqBtgNS4tSPHuGibyoeqMV/TJlSKda6FXzoEyYGjTe+vXA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="app.js"></script>
</body>
</html>