-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2162 lines (2101 loc) · 83.3 KB
/
Copy pathindex.html
File metadata and controls
2162 lines (2101 loc) · 83.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
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" />
<meta
name="description"
content="From La Plata, Argentina. In the field of infraestructure and automation, building day by day useful and interesting things either for fun and professionally. I am currently working with devops culture. Homelabs, linux, finance, chess and anime."
/>
<meta
name="keywords"
content="jd-apprentice, jonathan dyallo, devops, sre, homelab, pentesting"
/>
<meta name="author" content="jd-apprentice" />
<meta
property="og:title"
content="jd-apprentice - homelab enthusiast"
/>
<meta
property="og:description"
content="From La Plata, Argentina. In the field of infraestructure and automation, building day by day useful and interesting things either for fun and professionally."
/>
<meta
property="og:image"
content="https://avatars.githubusercontent.com/u/68082746?s=400&u=91d9f39e5c3715d8b3ef4bce134a346bbbe95150&v=4"
/>
<meta property="og:url" content="https://jonathan.com.ar/" />
<meta property="og:type" content="website" />
<title>jd-apprentice@portfolio:~$ ★ 90s ANIME TERMINAL ★</title>
<link
href="https://fonts.googleapis.com/css2?family=VT323&family=Russo+One&family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<script
defer
src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"
></script>
<style>
/* ═══════════════════════════════════════════════════
90s ANIME TERMINAL — DESIGN TOKENS & RESET
═══════════════════════════════════════════════════ */
:root {
--bg-deep: #0a0015;
--bg-mid: #150025;
--bg-term: #0c0c0c;
--cyan: #00ddff;
--pink: #ff69ff;
--gold: #ffd700;
--teal: #39c5bb;
--hotpink: #ff1493;
--green: #00ff41;
--soft-purple: #bb99ff;
--light: #f0e6ff;
--neon-shadow:
0 0 10px rgba(0, 221, 255, 0.15),
0 0 30px rgba(255, 105, 255, 0.08);
--border-neon: 1px solid rgba(255, 105, 255, 0.25);
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* ═══════════════════════════════════════════════════
BODY — Deep space gradient + 90s cursor
═══════════════════════════════════════════════════ */
body {
background: var(--bg-deep);
color: var(--cyan);
font-family: "VT323", "Courier New", monospace;
font-size: 18px;
line-height: 1.35;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 12px 16px 20px;
overflow-x: hidden;
text-rendering: optimizeSpeed;
cursor: auto;
}
/* ═══════════════════════════════════════════════════
STARFIELD — 3 layers of twinkling stars
Uses box-shadow technique + CSS animation
═══════════════════════════════════════════════════ */
.bg-stars {
position: fixed;
inset: 0;
z-index: 0;
pointer-events: none;
background: linear-gradient(
180deg,
#0a0015 0%,
#120020 40%,
#1a0030 100%
);
}
.star-layer {
position: absolute;
inset: 0;
will-change: transform;
}
#stars {
width: 2px;
height: 2px;
background: transparent;
box-shadow:
124px 85px rgba(255, 255, 255, 0.8),
580px 220px rgba(255, 255, 255, 0.6),
940px 140px rgba(255, 255, 255, 0.7),
210px 480px rgba(255, 255, 255, 0.5),
760px 610px rgba(255, 255, 255, 0.6),
340px 780px rgba(255, 255, 255, 0.7),
1020px 350px rgba(255, 255, 255, 0.5),
150px 920px rgba(255, 255, 255, 0.6),
620px 1050px rgba(255, 255, 255, 0.7),
880px 890px rgba(255, 255, 255, 0.5),
440px 170px rgba(255, 255, 255, 0.8),
1150px 520px rgba(255, 255, 255, 0.6),
290px 650px rgba(255, 255, 255, 0.7),
700px 250px rgba(255, 255, 255, 0.5),
510px 420px rgba(255, 255, 255, 0.8),
400px 1120px rgba(255, 255, 255, 0.5),
960px 730px rgba(255, 255, 255, 0.6),
180px 540px rgba(255, 255, 255, 0.7),
670px 380px rgba(255, 255, 255, 0.5),
1050px 190px rgba(255, 255, 255, 0.6),
830px 480px rgba(255, 255, 255, 0.7),
260px 100px rgba(255, 255, 255, 0.5),
1300px 310px rgba(255, 255, 255, 0.8),
50px 1030px rgba(255, 255, 255, 0.5),
780px 1320px rgba(255, 255, 255, 0.6),
430px 750px rgba(255, 255, 255, 0.7),
1190px 590px rgba(255, 255, 255, 0.5),
540px 960px rgba(255, 255, 255, 0.6),
910px 120px rgba(255, 255, 255, 0.7),
360px 1380px rgba(255, 255, 255, 0.5),
1450px 240px rgba(255, 255, 255, 0.6),
110px 580px rgba(255, 255, 255, 0.8),
990px 850px rgba(255, 255, 255, 0.5),
650px 1270px rgba(255, 255, 255, 0.6),
460px 310px rgba(255, 255, 255, 0.7),
720px 1160px rgba(255, 255, 255, 0.5),
1380px 430px rgba(255, 255, 255, 0.6),
190px 440px rgba(255, 255, 255, 0.8),
1210px 760px rgba(255, 255, 255, 0.5),
310px 1240px rgba(255, 255, 255, 0.7),
810px 640px rgba(255, 255, 255, 0.6),
160px 150px rgba(255, 255, 255, 0.5),
1520px 500px rgba(255, 255, 255, 0.7),
560px 200px rgba(255, 255, 255, 0.5),
140px 800px rgba(255, 255, 255, 0.6),
1100px 420px rgba(255, 255, 255, 0.7),
640px 550px rgba(255, 255, 255, 0.5),
370px 1450px rgba(255, 255, 255, 0.6),
1780px 320px rgba(255, 255, 255, 0.5),
1630px 610px rgba(255, 255, 255, 0.6);
animation: twinkle1 6s ease-in-out infinite alternate;
}
#stars2 {
width: 3px;
height: 3px;
background: transparent;
box-shadow:
460px 350px rgba(255, 255, 255, 0.5),
890px 120px rgba(255, 255, 255, 0.4),
150px 620px rgba(255, 255, 255, 0.6),
740px 450px rgba(255, 255, 255, 0.5),
1280px 280px rgba(255, 255, 255, 0.4),
390px 880px rgba(255, 255, 255, 0.5),
1050px 510px rgba(255, 255, 255, 0.6),
220px 1080px rgba(255, 255, 255, 0.4),
680px 960px rgba(255, 255, 255, 0.5),
550px 180px rgba(255, 255, 255, 0.6),
1350px 650px rgba(255, 255, 255, 0.4),
80px 340px rgba(255, 255, 255, 0.5),
430px 1260px rgba(255, 255, 255, 0.6),
970px 830px rgba(255, 255, 255, 0.4),
740px 1180px rgba(255, 255, 255, 0.5),
190px 500px rgba(255, 255, 255, 0.6),
520px 720px rgba(255, 255, 255, 0.4),
1160px 380px rgba(255, 255, 255, 0.5),
310px 1540px rgba(255, 255, 255, 0.6),
690px 1640px rgba(255, 255, 255, 0.4),
870px 1360px rgba(255, 255, 255, 0.5),
1270px 890px rgba(255, 255, 255, 0.6),
240px 230px rgba(255, 255, 255, 0.4),
1410px 720px rgba(255, 255, 255, 0.5),
1090px 1010px rgba(255, 255, 255, 0.6),
610px 1420px rgba(255, 255, 255, 0.4),
330px 410px rgba(255, 255, 255, 0.5),
1570px 180px rgba(255, 255, 255, 0.6),
1020px 680px rgba(255, 255, 255, 0.4),
480px 1340px rgba(255, 255, 255, 0.5);
animation: twinkle2 8s ease-in-out infinite alternate;
}
#stars3 {
width: 4px;
height: 4px;
background: transparent;
box-shadow:
680px 490px rgba(255, 255, 255, 0.7),
250px 820px rgba(255, 255, 255, 0.6),
930px 250px rgba(255, 255, 255, 0.5),
1120px 640px rgba(255, 255, 255, 0.7),
380px 1150px rgba(255, 255, 255, 0.6),
780px 350px rgba(255, 255, 255, 0.5),
560px 750px rgba(255, 255, 255, 0.7),
1250px 420px rgba(255, 255, 255, 0.6),
170px 940px rgba(255, 255, 255, 0.5),
1440px 680px rgba(255, 255, 255, 0.7),
500px 140px rgba(255, 255, 255, 0.6),
1060px 920px rgba(255, 255, 255, 0.5),
330px 1640px rgba(255, 255, 255, 0.7),
820px 1280px rgba(255, 255, 255, 0.6),
1360px 540px rgba(255, 255, 255, 0.5),
440px 640px rgba(255, 255, 255, 0.7),
1650px 280px rgba(255, 255, 255, 0.6),
1140px 140px rgba(255, 255, 255, 0.5),
720px 1070px rgba(255, 255, 255, 0.7),
980px 1520px rgba(255, 255, 255, 0.6);
animation: twinkle3 4s ease-in-out infinite alternate;
}
@keyframes twinkle1 {
0% {
opacity: 0.5;
}
50% {
opacity: 0.9;
}
100% {
opacity: 0.6;
}
}
@keyframes twinkle2 {
0% {
opacity: 0.4;
}
40% {
opacity: 1;
}
100% {
opacity: 0.5;
}
}
@keyframes twinkle3 {
0% {
opacity: 0.6;
}
60% {
opacity: 0.3;
}
100% {
opacity: 0.9;
}
}
/* ═══════════════════════════════════════════════════
SCANLINES overlay (kept from original, purple-tinted)
═══════════════════════════════════════════════════ */
body::after {
content: "";
position: fixed;
inset: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(187, 153, 255, 0.035) 2px,
rgba(187, 153, 255, 0.035) 4px
);
pointer-events: none;
z-index: 999;
}
/* CRT flicker (kept) */
@keyframes flicker {
0% {
opacity: 0.97;
}
5% {
opacity: 1;
}
10% {
opacity: 0.98;
}
15% {
opacity: 1;
}
20% {
opacity: 0.97;
}
50% {
opacity: 1;
}
80% {
opacity: 0.98;
}
90% {
opacity: 1;
}
100% {
opacity: 0.97;
}
}
/* ═══════════════════════════════════════════════════
RETRO CONSTRUCTION BANNER
═══════════════════════════════════════════════════ */
.construction-banner {
position: relative;
z-index: 10;
width: 100%;
max-width: 880px;
margin: 0 auto 8px;
padding: 8px 16px;
background: repeating-linear-gradient(
45deg,
#111 0px,
#111 10px,
#ffd700 10px,
#ffd700 20px
);
text-align: center;
border: 2px solid #ff1493;
border-radius: 4px;
font-family: "Press Start 2P", monospace;
font-size: 10px;
color: #fff;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
letter-spacing: 4px;
box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
overflow: hidden;
}
.construction-banner span {
display: inline-block;
animation: bannerPulse 1.5s ease-in-out infinite;
}
.construction-banner .spinner {
display: inline-block;
animation: spin 2s linear infinite;
margin-right: 4px;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@keyframes bannerPulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.7;
}
}
/* ═══════════════════════════════════════════════════
MARQUEE — CSS scrolling text (no deprecated marquee tag)
═══════════════════════════════════════════════════ */
.marquee-wrap {
position: relative;
z-index: 10;
width: 100%;
max-width: 880px;
margin: 0 auto 10px;
overflow: hidden;
background: rgba(12, 12, 12, 0.6);
border: 1px solid rgba(255, 105, 255, 0.2);
border-radius: 4px;
padding: 4px 0;
height: 30px;
display: flex;
align-items: center;
}
.marquee-track {
display: flex;
white-space: nowrap;
animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover {
animation-play-state: paused;
}
.marquee-text {
padding: 0 16px;
font-family: "Russo One", sans-serif;
font-size: 16px;
letter-spacing: 2px;
background: linear-gradient(
90deg,
#ff69ff,
#00ddff,
#ffd700,
#ff1493,
#39c5bb,
#ff69ff
);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: rainbowShift 6s linear infinite;
}
@keyframes marqueeScroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes rainbowShift {
to {
background-position: 200% center;
}
}
/* ═══════════════════════════════════════════════════
TERMINAL WRAPPER — flex row with character sidebars
═══════════════════════════════════════════════════ */
.terminal-wrapper {
position: relative;
z-index: 10;
display: flex;
justify-content: center;
align-items: flex-start;
gap: 16px;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
/* ── Character side decorations ── */
.char-side {
flex: 0 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding-top: 50px;
width: 130px;
}
.char-frame {
border: 2px solid transparent;
border-image: linear-gradient(135deg, #ff1493, #ffd700, #39c5bb)
1;
padding: 4px;
background: rgba(12, 12, 12, 0.85);
box-shadow:
0 0 24px rgba(255, 105, 255, 0.25),
0 0 60px rgba(0, 221, 255, 0.1);
border-radius: 4px;
transition: box-shadow 0.4s ease;
}
.char-frame:hover {
box-shadow:
0 0 40px rgba(255, 105, 255, 0.45),
0 0 80px rgba(0, 221, 255, 0.2);
}
.char-frame img {
display: block;
width: 120px;
height: auto;
image-rendering: pixelated;
}
.char-label {
color: var(--soft-purple);
font-family: "Press Start 2P", monospace;
font-size: 8px;
text-align: center;
text-shadow: 0 0 10px rgba(187, 153, 255, 0.4);
letter-spacing: 1px;
}
/* ═══════════════════════════════════════════════════
BIG RETRO BANNER — inspired by sammwy.com
═══════════════════════════════════════════════════ */
.big-banner {
position: relative;
z-index: 10;
width: 100%;
max-width: 880px;
margin: 0 auto 14px;
border-radius: 10px;
padding: 0;
}
.big-banner::before {
content: "";
position: absolute;
inset: -1px;
border-radius: 11px;
padding: 1px;
background: linear-gradient(
135deg,
#ff1493,
#39c5bb,
#ffd700,
#ff69ff,
#00ddff
);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: 998;
opacity: 0.5;
}
.banner-inner {
background: linear-gradient(
180deg,
#0f001a 0%,
#1a0030 50%,
#0f001a 100%
);
border-radius: 9px;
padding: 0;
overflow: hidden;
position: relative;
line-height: 0;
}
.banner-inner::before {
content: "";
position: absolute;
inset: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(255, 105, 255, 0.03) 2px,
rgba(255, 105, 255, 0.03) 4px
);
pointer-events: none;
z-index: 1;
}
.banner-frieren {
display: block;
width: 100%;
height: 130px;
object-fit: cover;
object-position: center 75%;
image-rendering: pixelated;
}
/* ═══════════════════════════════════════════════════
ABOUT + MIKU REGION — flex layout outside terminal
═══════════════════════════════════════════════════ */
.about-region {
position: relative;
z-index: 10;
display: flex;
gap: 20px;
width: 100%;
max-width: 880px;
margin: 0 auto 14px;
align-items: stretch;
}
.about-content {
flex: 1;
min-width: 0;
background: rgba(12, 12, 12, 0.6);
border-radius: 8px;
padding: 14px 16px;
display: flex;
flex-direction: column;
gap: 8px;
position: relative;
}
.about-content::before {
content: "";
position: absolute;
inset: -1px;
border-radius: 9px;
padding: 1px;
background: linear-gradient(
135deg,
#ff1493,
#39c5bb,
#ffd700,
#ff69ff,
#00ddff
);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: 998;
opacity: 0.5;
}
.about-header-inline {
display: flex;
gap: 12px;
align-items: flex-start;
}
.about-avatar {
flex-shrink: 0;
border-radius: 4px;
border: 1px solid rgba(255, 105, 255, 0.2);
padding: 2px;
image-rendering: pixelated;
}
.about-text-block {
flex: 1;
min-width: 0;
}
.about-heading {
color: var(--pink);
font-size: 20px;
margin-bottom: 4px;
text-shadow: 0 0 12px rgba(255, 105, 255, 0.3);
}
.about-sub {
color: var(--cyan);
line-height: 1.5;
font-size: 16px;
}
.about-bio {
color: var(--cyan);
line-height: 1.5;
font-size: 16px;
}
.about-row {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.about-roadmap {
flex: 1;
min-width: 180px;
color: var(--cyan);
line-height: 1.55;
font-size: 16px;
}
.about-interests {
flex: 1;
min-width: 180px;
color: var(--soft-purple);
line-height: 1.55;
font-size: 16px;
}
.about-miku-card {
flex: 0 0 auto;
width: 160px;
display: flex;
align-items: stretch;
}
.miku-frame-inner {
width: 100%;
padding: 4px;
background: transparent;
border-radius: 6px;
position: relative;
display: flex;
}
.miku-frame-inner::before {
content: "";
position: absolute;
inset: -1px;
border-radius: 7px;
padding: 1px;
background: linear-gradient(
135deg,
#ff1493,
#39c5bb,
#ffd700,
#ff69ff,
#00ddff
);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: 998;
opacity: 0.5;
}
.miku-frame-inner img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
image-rendering: pixelated;
border-radius: 2px;
}
/* ═══════════════════════════════════════════════════
TERMINAL WINDOW — retro app frame with neon glow
═══════════════════════════════════════════════════ */
.terminal {
width: 100%;
max-width: 880px;
max-height: min(92vh, 760px);
background: var(--bg-term);
border: 1px solid rgba(255, 105, 255, 0.3);
border-radius: 8px;
overflow: hidden;
display: flex;
flex-direction: column;
box-shadow:
0 0 15px rgba(255, 20, 147, 0.15),
0 0 40px rgba(0, 221, 255, 0.08),
0 0 80px rgba(255, 105, 255, 0.05),
inset 0 0 50px rgba(0, 0, 0, 0.5),
inset 0 0 2px rgba(255, 105, 255, 0.1);
animation: flicker 6s infinite;
position: relative;
}
/* Multicolored inner border glow */
.terminal::before {
content: "";
position: absolute;
inset: -1px;
border-radius: 9px;
padding: 1px;
background: linear-gradient(
135deg,
#ff1493,
#39c5bb,
#ffd700,
#ff69ff,
#00ddff
);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: 998;
opacity: 0.5;
}
/* ═══════════════════════════════════════════════════
TITLE BAR — Rainbow gradient + colored dots
═══════════════════════════════════════════════════ */
.titlebar {
background: linear-gradient(
90deg,
#ff1493,
#d435a0,
#39c5bb,
#ffd700
);
padding: 5px 12px;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
flex-shrink: 0;
user-select: none;
min-height: 32px;
}
.titlebar-dots {
display: flex;
gap: 6px;
}
.titlebar-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.titlebar-dot.red {
background: #ff3b30;
border-color: #ff6b6b;
box-shadow: 0 0 4px rgba(255, 59, 48, 0.6);
}
.titlebar-dot.yellow {
background: #ffd700;
border-color: #fff176;
box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}
.titlebar-dot.green {
background: #34c759;
border-color: #69db7c;
box-shadow: 0 0 4px rgba(52, 199, 89, 0.6);
}
.titlebar-text {
flex: 1;
font-family: "Russo One", sans-serif;
font-size: 14px;
letter-spacing: 1px;
color: transparent;
background: linear-gradient(
90deg,
#fff,
#fff176,
#fff,
#e0e0ff
);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: rainbowShift 4s linear infinite;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* ═══════════════════════════════════════════════════
SCREEN — scrollable content area
═══════════════════════════════════════════════════ */
.screen {
flex: 1;
overflow-y: auto;
padding: 18px 20px 12px;
scrollbar-width: thin;
scrollbar-color: rgba(255, 105, 255, 0.2) transparent;
}
.screen::-webkit-scrollbar {
width: 6px;
}
.screen::-webkit-scrollbar-track {
background: transparent;
}
.screen::-webkit-scrollbar-thumb {
background: rgba(255, 105, 255, 0.25);
border-radius: 3px;
}
/* ═══════════════════════════════════════════════════
TYPOGRAPHY — neon colors throughout
═══════════════════════════════════════════════════ */
a {
color: var(--teal);
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-color: rgba(57, 197, 187, 0.3);
transition:
color 0.15s,
text-decoration-color 0.15s;
}
a:hover {
color: var(--cyan);
text-decoration-color: var(--cyan);
}
/* ── PROMPT ── */
.prompt-line {
display: flex;
align-items: center;
gap: 4px;
color: var(--soft-purple);
font-size: 18px;
margin: 6px 0;
}
.prompt-line .prompt {
color: var(--green);
text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}
.prompt-line .cmd {
color: var(--cyan);
}
.terminal-input {
flex: 1;
background: transparent;
border: none;
outline: none;
color: var(--cyan);
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: 0;
margin: 0;
caret-color: var(--cyan);
min-width: 20px;
}
.terminal-input::selection {
background: rgba(0, 221, 255, 0.3);
color: var(--light);
}
/* ═══════════════════════════════════════════════════
COMMANDS GRID
═══════════════════════════════════════════════════ */
.cmd-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 6px;
margin: 10px 0 16px;
}
.cmd-btn {
background: transparent;
border: 1px solid rgba(255, 105, 255, 0.15);
color: var(--soft-purple);
font-family: inherit;
font-size: 17px;
padding: 6px 12px;
text-align: left;
cursor: pointer;
transition:
background 0.15s,
color 0.15s,
border-color 0.15s,
box-shadow 0.15s;
border-radius: 3px;
}
.cmd-btn:hover,
.cmd-btn.active {
background: rgba(255, 105, 255, 0.08);
color: var(--cyan);
border-color: rgba(0, 221, 255, 0.4);
box-shadow: 0 0 12px rgba(0, 221, 255, 0.1);
}
.cmd-btn .prompt {
color: var(--green);
}
.cmd-btn .name {
color: var(--pink);
}
/* ═══════════════════════════════════════════════════
SECTION OUTPUT
═══════════════════════════════════════════════════ */
.output {
margin: 8px 0 4px;
padding: 10px 14px;
border-left: 2px solid rgba(255, 105, 255, 0.3);
}
.output-title {
color: var(--pink);
font-size: 20px;
margin-bottom: 8px;
text-shadow: 0 0 12px rgba(255, 105, 255, 0.3);
}
.output-text {
color: var(--cyan);
line-height: 1.55;
margin-bottom: 10px;
}
/* ── persistent about header ── */
.about-header {
display: flex;
gap: 16px;
align-items: flex-start;
margin-bottom: 4px;
}
.about-body {
flex: 1;
min-width: 0;
}
.about-body .output-title {
margin-top: 0;
}
.about-body .output-text {
margin-bottom: 0;
}
/* ── profile pic ── */
.profile-pic {
flex-shrink: 0;
border: 1px solid rgba(255, 105, 255, 0.25);
border-radius: 4px;
padding: 3px;
box-shadow: 0 0 15px rgba(255, 105, 255, 0.15);
}
.profile-pic img {
display: block;
width: 96px;
height: 96px;
border-radius: 2px;
image-rendering: pixelated;
}
/* ── 90s retro divider ── */
.separator {
height: 1px;
background: linear-gradient(
90deg,
transparent,
var(--pink),
var(--cyan),
var(--gold),
var(--pink),
transparent
);
margin: 14px 0 8px;
border: none;
}
/* Additional thick retro divider for extra 90s feel */
.divider-90s {
height: 4px;
background: linear-gradient(