reaper-arcade-hub 2.8.0 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/styles.css +412 -29
- package/index.html +191 -36
- package/js/app.js +273 -132
- package/main/css/styles.css +412 -29
- package/main/index.html +191 -36
- package/main/js/app.js +273 -132
- package/package.json +1 -1
- package/verify/css/styles.css +412 -29
package/css/styles.css
CHANGED
|
@@ -450,65 +450,362 @@ body {
|
|
|
450
450
|
max-width: calc(100% - 370px);
|
|
451
451
|
}
|
|
452
452
|
|
|
453
|
-
/*
|
|
454
|
-
|
|
455
|
-
|
|
453
|
+
/* ==========================================
|
|
454
|
+
CYBER HOME DASHBOARD & PORTAL
|
|
455
|
+
========================================== */
|
|
456
|
+
.cyber-home-dashboard {
|
|
457
|
+
max-width: 1300px;
|
|
458
|
+
margin: 0 auto;
|
|
459
|
+
padding: 1.5rem 0.5rem 3rem;
|
|
456
460
|
display: flex;
|
|
457
461
|
flex-direction: column;
|
|
458
|
-
|
|
462
|
+
gap: 2rem;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
/* Telemetry Strip */
|
|
466
|
+
.home-telemetry-bar {
|
|
467
|
+
display: flex;
|
|
459
468
|
justify-content: center;
|
|
469
|
+
gap: 1rem;
|
|
470
|
+
flex-wrap: wrap;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.telemetry-pill {
|
|
474
|
+
display: inline-flex;
|
|
475
|
+
align-items: center;
|
|
476
|
+
gap: 0.45rem;
|
|
477
|
+
background: rgba(5, 14, 32, 0.7);
|
|
478
|
+
border: 1px solid rgba(0, 210, 255, 0.22);
|
|
479
|
+
border-radius: 20px;
|
|
480
|
+
padding: 0.3rem 0.85rem;
|
|
481
|
+
font-family: var(--font-mono);
|
|
482
|
+
font-size: 0.73rem;
|
|
483
|
+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
|
|
484
|
+
backdrop-filter: blur(10px);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.telemetry-dot {
|
|
488
|
+
width: 7px;
|
|
489
|
+
height: 7px;
|
|
490
|
+
border-radius: 50%;
|
|
491
|
+
animation: pulseDot 1.5s infinite alternate;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.dot-green { background: #00ffaa; box-shadow: 0 0 8px #00ffaa; }
|
|
495
|
+
.dot-cyan { background: #00d2ff; box-shadow: 0 0 8px #00d2ff; }
|
|
496
|
+
.dot-purple { background: #a855f7; box-shadow: 0 0 8px #a855f7; }
|
|
497
|
+
|
|
498
|
+
.telemetry-label {
|
|
499
|
+
color: #79a6d2;
|
|
500
|
+
font-weight: 600;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.telemetry-val {
|
|
504
|
+
color: #ffffff;
|
|
505
|
+
font-weight: 800;
|
|
506
|
+
letter-spacing: 0.05em;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
/* Hero Center */
|
|
510
|
+
.home-hero-center {
|
|
460
511
|
text-align: center;
|
|
461
|
-
padding: 2rem 1rem;
|
|
462
512
|
}
|
|
463
513
|
|
|
464
|
-
.
|
|
514
|
+
.home-hero-title {
|
|
465
515
|
font-family: var(--font-logo);
|
|
466
516
|
font-size: 5.5rem;
|
|
467
517
|
font-weight: 900;
|
|
468
|
-
color: #ffffff;
|
|
469
518
|
letter-spacing: 0.12em;
|
|
470
|
-
text-shadow: 0 0 45px var(--blue-glow);
|
|
471
|
-
margin-bottom: 0.5rem;
|
|
472
519
|
line-height: 1;
|
|
520
|
+
margin-bottom: 0.6rem;
|
|
521
|
+
background: linear-gradient(90deg, #ffffff 0%, #00d2ff 40%, #00ffaa 70%, #ffffff 100%);
|
|
522
|
+
background-size: 300% 300%;
|
|
523
|
+
-webkit-background-clip: text;
|
|
524
|
+
-webkit-text-fill-color: transparent;
|
|
525
|
+
animation: heroShimmer 6s ease-in-out infinite;
|
|
526
|
+
filter: drop-shadow(0 0 35px rgba(0, 210, 255, 0.6));
|
|
473
527
|
}
|
|
474
528
|
|
|
475
|
-
|
|
476
|
-
|
|
529
|
+
@keyframes heroShimmer {
|
|
530
|
+
0% { background-position: 0% 50%; }
|
|
531
|
+
50% { background-position: 100% 50%; }
|
|
532
|
+
100% { background-position: 0% 50%; }
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.home-hero-desc {
|
|
477
536
|
font-family: var(--font-heading);
|
|
478
|
-
font-size:
|
|
537
|
+
font-size: 0.95rem;
|
|
538
|
+
color: #9ec2e8;
|
|
539
|
+
max-width: 680px;
|
|
540
|
+
margin: 0 auto;
|
|
541
|
+
line-height: 1.6;
|
|
479
542
|
font-weight: 600;
|
|
480
|
-
letter-spacing: 0.
|
|
481
|
-
margin-bottom: 2.25rem;
|
|
543
|
+
letter-spacing: 0.02em;
|
|
482
544
|
}
|
|
483
545
|
|
|
484
|
-
|
|
485
|
-
|
|
546
|
+
/* High-Tech Glowing Search Pod */
|
|
547
|
+
.home-search-pod {
|
|
548
|
+
max-width: 760px;
|
|
486
549
|
width: 100%;
|
|
487
|
-
|
|
488
|
-
border: 1.5px solid var(--blue-border);
|
|
489
|
-
border-radius: 40px;
|
|
550
|
+
margin: 0 auto;
|
|
490
551
|
display: flex;
|
|
491
|
-
|
|
492
|
-
padding: 0.75rem 1.5rem;
|
|
552
|
+
flex-direction: column;
|
|
493
553
|
gap: 0.85rem;
|
|
494
|
-
|
|
495
|
-
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.search-pod-inner {
|
|
557
|
+
background: rgba(4, 12, 28, 0.85);
|
|
558
|
+
border: 1.5px solid rgba(0, 210, 255, 0.35);
|
|
559
|
+
border-radius: 50px;
|
|
560
|
+
padding: 0.5rem 0.65rem 0.5rem 1.4rem;
|
|
561
|
+
display: flex;
|
|
562
|
+
align-items: center;
|
|
563
|
+
gap: 0.75rem;
|
|
564
|
+
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 210, 255, 0.2);
|
|
496
565
|
transition: all 0.25s ease;
|
|
566
|
+
backdrop-filter: blur(20px);
|
|
497
567
|
}
|
|
498
568
|
|
|
499
|
-
.
|
|
500
|
-
border-color:
|
|
501
|
-
box-shadow: 0
|
|
569
|
+
.search-pod-inner:focus-within {
|
|
570
|
+
border-color: #00d2ff;
|
|
571
|
+
box-shadow: 0 16px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 210, 255, 0.5);
|
|
572
|
+
background: rgba(5, 16, 38, 0.95);
|
|
573
|
+
transform: translateY(-2px);
|
|
502
574
|
}
|
|
503
575
|
|
|
504
|
-
.
|
|
576
|
+
.search-pod-icon {
|
|
577
|
+
font-size: 1.15rem;
|
|
578
|
+
color: #00d2ff;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.home-search-field {
|
|
582
|
+
flex: 1;
|
|
505
583
|
background: transparent;
|
|
506
584
|
border: none;
|
|
507
585
|
outline: none;
|
|
586
|
+
color: #ffffff;
|
|
587
|
+
font-size: 1rem;
|
|
588
|
+
font-family: var(--font-main);
|
|
589
|
+
font-weight: 500;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.home-search-field::placeholder {
|
|
593
|
+
color: #5d84ab;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.search-pod-btn {
|
|
597
|
+
border-radius: 30px;
|
|
598
|
+
padding: 0.65rem 1.4rem;
|
|
599
|
+
font-size: 0.82rem;
|
|
600
|
+
font-weight: 800;
|
|
601
|
+
letter-spacing: 0.08em;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/* Quick Trend Chips */
|
|
605
|
+
.home-quick-tags {
|
|
606
|
+
display: flex;
|
|
607
|
+
align-items: center;
|
|
608
|
+
justify-content: center;
|
|
609
|
+
gap: 0.5rem;
|
|
610
|
+
flex-wrap: wrap;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.quick-tag-chip {
|
|
614
|
+
background: rgba(5, 14, 32, 0.7);
|
|
615
|
+
border: 1px solid rgba(0, 210, 255, 0.22);
|
|
616
|
+
color: #a4c4e8;
|
|
617
|
+
padding: 0.3rem 0.75rem;
|
|
618
|
+
border-radius: 20px;
|
|
619
|
+
font-size: 0.75rem;
|
|
620
|
+
font-weight: 700;
|
|
621
|
+
font-family: var(--font-heading);
|
|
622
|
+
cursor: pointer;
|
|
623
|
+
transition: all 0.2s ease;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.quick-tag-chip:hover {
|
|
627
|
+
background: rgba(0, 210, 255, 0.18);
|
|
628
|
+
border-color: #00d2ff;
|
|
629
|
+
color: #ffffff;
|
|
630
|
+
transform: translateY(-2px);
|
|
631
|
+
box-shadow: 0 0 12px rgba(0, 210, 255, 0.4);
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
/* Spotlight Quick Launch Section */
|
|
635
|
+
.home-spotlight-section {
|
|
636
|
+
display: flex;
|
|
637
|
+
flex-direction: column;
|
|
638
|
+
gap: 1rem;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.spotlight-section-title {
|
|
642
|
+
display: flex;
|
|
643
|
+
justify-content: space-between;
|
|
644
|
+
align-items: center;
|
|
645
|
+
font-family: var(--font-heading);
|
|
646
|
+
font-weight: 800;
|
|
647
|
+
font-size: 0.85rem;
|
|
648
|
+
color: #00d2ff;
|
|
649
|
+
letter-spacing: 0.08em;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.home-spotlight-grid {
|
|
653
|
+
display: grid;
|
|
654
|
+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
655
|
+
gap: 1.25rem;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.spotlight-card {
|
|
659
|
+
background: linear-gradient(150deg, rgba(8, 18, 38, 0.95) 0%, rgba(3, 8, 20, 0.98) 100%);
|
|
660
|
+
border: 1.5px solid rgba(0, 210, 255, 0.2);
|
|
661
|
+
border-radius: 14px;
|
|
662
|
+
overflow: hidden;
|
|
663
|
+
cursor: pointer;
|
|
664
|
+
position: relative;
|
|
665
|
+
transition: all 0.25s cubic-bezier(0.2, 0, 0.2, 1);
|
|
666
|
+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
|
|
667
|
+
backdrop-filter: blur(12px);
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.spotlight-card:hover {
|
|
671
|
+
transform: translateY(-6px);
|
|
672
|
+
border-color: #00d2ff;
|
|
673
|
+
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 210, 255, 0.5);
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.spotlight-card-badge {
|
|
677
|
+
position: absolute;
|
|
678
|
+
top: 8px;
|
|
679
|
+
left: 8px;
|
|
680
|
+
z-index: 5;
|
|
681
|
+
background: #ff0055;
|
|
508
682
|
color: #fff;
|
|
509
|
-
font-size:
|
|
683
|
+
font-size: 0.6rem;
|
|
684
|
+
font-weight: 900;
|
|
685
|
+
font-family: var(--font-heading);
|
|
686
|
+
padding: 0.2rem 0.5rem;
|
|
687
|
+
border-radius: 4px;
|
|
688
|
+
box-shadow: 0 0 10px rgba(255, 0, 85, 0.8);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.spotlight-thumb-wrap {
|
|
510
692
|
width: 100%;
|
|
511
|
-
|
|
693
|
+
aspect-ratio: 16 / 10;
|
|
694
|
+
position: relative;
|
|
695
|
+
overflow: hidden;
|
|
696
|
+
background: #02060f;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.spotlight-thumb {
|
|
700
|
+
width: 100%;
|
|
701
|
+
height: 100%;
|
|
702
|
+
object-fit: cover;
|
|
703
|
+
transition: transform 0.35s ease;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.spotlight-card:hover .spotlight-thumb {
|
|
707
|
+
transform: scale(1.08);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.spotlight-play-overlay {
|
|
711
|
+
position: absolute;
|
|
712
|
+
inset: 0;
|
|
713
|
+
background: rgba(0, 10, 24, 0.65);
|
|
714
|
+
display: flex;
|
|
715
|
+
align-items: center;
|
|
716
|
+
justify-content: center;
|
|
717
|
+
color: #00ffaa;
|
|
718
|
+
font-family: var(--font-heading);
|
|
719
|
+
font-weight: 900;
|
|
720
|
+
font-size: 0.88rem;
|
|
721
|
+
letter-spacing: 0.15em;
|
|
722
|
+
opacity: 0;
|
|
723
|
+
transition: opacity 0.2s ease;
|
|
724
|
+
backdrop-filter: blur(2px);
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.spotlight-card:hover .spotlight-play-overlay {
|
|
728
|
+
opacity: 1;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.spotlight-info {
|
|
732
|
+
padding: 0.85rem;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.spotlight-name {
|
|
736
|
+
font-size: 0.95rem;
|
|
737
|
+
font-weight: 800;
|
|
738
|
+
color: #ffffff;
|
|
739
|
+
margin-bottom: 0.25rem;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.spotlight-meta {
|
|
743
|
+
font-size: 0.72rem;
|
|
744
|
+
color: #7fa6cf;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
/* 4 Portals Grid */
|
|
748
|
+
.home-portals-grid {
|
|
749
|
+
display: grid;
|
|
750
|
+
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
751
|
+
gap: 1.25rem;
|
|
752
|
+
margin-top: 0.5rem;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.portal-card {
|
|
756
|
+
background: rgba(5, 12, 28, 0.75);
|
|
757
|
+
border: 1.5px solid rgba(0, 210, 255, 0.2);
|
|
758
|
+
border-radius: 16px;
|
|
759
|
+
padding: 1.35rem;
|
|
760
|
+
cursor: pointer;
|
|
761
|
+
transition: all 0.25s ease;
|
|
762
|
+
display: flex;
|
|
763
|
+
flex-direction: column;
|
|
764
|
+
gap: 0.85rem;
|
|
765
|
+
backdrop-filter: blur(14px);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.portal-card:hover {
|
|
769
|
+
background: rgba(7, 18, 42, 0.88);
|
|
770
|
+
border-color: #00d2ff;
|
|
771
|
+
transform: translateY(-5px);
|
|
772
|
+
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 210, 255, 0.35);
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.portal-icon-box {
|
|
776
|
+
width: 44px;
|
|
777
|
+
height: 44px;
|
|
778
|
+
border-radius: 12px;
|
|
779
|
+
display: flex;
|
|
780
|
+
align-items: center;
|
|
781
|
+
justify-content: center;
|
|
782
|
+
font-size: 1.3rem;
|
|
783
|
+
color: #fff;
|
|
784
|
+
box-shadow: 0 0 16px rgba(0, 210, 255, 0.4);
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.portal-title {
|
|
788
|
+
font-family: var(--font-heading);
|
|
789
|
+
font-size: 1rem;
|
|
790
|
+
font-weight: 800;
|
|
791
|
+
color: #ffffff;
|
|
792
|
+
margin-bottom: 0.35rem;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.portal-desc {
|
|
796
|
+
font-size: 0.8rem;
|
|
797
|
+
color: #8cb1d9;
|
|
798
|
+
line-height: 1.5;
|
|
799
|
+
margin-bottom: 0.75rem;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.portal-link {
|
|
803
|
+
font-family: var(--font-heading);
|
|
804
|
+
font-size: 0.76rem;
|
|
805
|
+
font-weight: 800;
|
|
806
|
+
color: #00d2ff;
|
|
807
|
+
letter-spacing: 0.05em;
|
|
808
|
+
margin-top: auto;
|
|
512
809
|
}
|
|
513
810
|
|
|
514
811
|
/* Controls Bar */
|
|
@@ -739,6 +1036,92 @@ body {
|
|
|
739
1036
|
box-shadow: 0 0 18px rgba(0, 210, 255, 0.6);
|
|
740
1037
|
}
|
|
741
1038
|
|
|
1039
|
+
/* Modern Chat Nav Dock */
|
|
1040
|
+
.chat-nav-dock {
|
|
1041
|
+
display: flex;
|
|
1042
|
+
border-bottom: 1.5px solid rgba(0, 210, 255, 0.2);
|
|
1043
|
+
background: rgba(2, 6, 16, 0.95);
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.chat-dock-btn {
|
|
1047
|
+
flex: 1;
|
|
1048
|
+
background: transparent;
|
|
1049
|
+
border: none;
|
|
1050
|
+
color: #8cb1d9;
|
|
1051
|
+
padding: 0.65rem 0.5rem;
|
|
1052
|
+
font-size: 0.78rem;
|
|
1053
|
+
font-weight: 800;
|
|
1054
|
+
font-family: var(--font-heading);
|
|
1055
|
+
cursor: pointer;
|
|
1056
|
+
transition: all 0.2s ease;
|
|
1057
|
+
letter-spacing: 0.05em;
|
|
1058
|
+
position: relative;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.chat-dock-btn:hover {
|
|
1062
|
+
color: #fff;
|
|
1063
|
+
background: rgba(0, 210, 255, 0.08);
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.chat-dock-btn.active {
|
|
1067
|
+
color: #00d2ff;
|
|
1068
|
+
background: rgba(0, 210, 255, 0.12);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.chat-dock-btn.active::after {
|
|
1072
|
+
content: '';
|
|
1073
|
+
position: absolute;
|
|
1074
|
+
bottom: 0;
|
|
1075
|
+
left: 15%;
|
|
1076
|
+
width: 70%;
|
|
1077
|
+
height: 2px;
|
|
1078
|
+
background: #00d2ff;
|
|
1079
|
+
box-shadow: 0 0 10px #00d2ff;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.chat-live-pulse {
|
|
1083
|
+
width: 7px;
|
|
1084
|
+
height: 7px;
|
|
1085
|
+
border-radius: 50%;
|
|
1086
|
+
background: #00ffaa;
|
|
1087
|
+
box-shadow: 0 0 8px #00ffaa;
|
|
1088
|
+
animation: pulseDot 1s infinite alternate;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.chat-online-counter {
|
|
1092
|
+
font-family: var(--font-mono);
|
|
1093
|
+
font-size: 0.7rem;
|
|
1094
|
+
color: #00ffaa;
|
|
1095
|
+
font-weight: 800;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
/* Quick Reactions Row */
|
|
1099
|
+
.chat-quick-reactions {
|
|
1100
|
+
display: flex;
|
|
1101
|
+
align-items: center;
|
|
1102
|
+
gap: 0.35rem;
|
|
1103
|
+
padding: 0.35rem 0.85rem;
|
|
1104
|
+
background: rgba(2, 6, 14, 0.92);
|
|
1105
|
+
border-top: 1px solid rgba(0, 210, 255, 0.12);
|
|
1106
|
+
overflow-x: auto;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.btn-chat-emoji {
|
|
1110
|
+
background: rgba(5, 14, 32, 0.7);
|
|
1111
|
+
border: 1px solid rgba(0, 210, 255, 0.2);
|
|
1112
|
+
border-radius: 6px;
|
|
1113
|
+
padding: 0.2rem 0.45rem;
|
|
1114
|
+
font-size: 0.85rem;
|
|
1115
|
+
cursor: pointer;
|
|
1116
|
+
transition: all 0.15s ease;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.btn-chat-emoji:hover {
|
|
1120
|
+
background: rgba(0, 210, 255, 0.25);
|
|
1121
|
+
border-color: #00d2ff;
|
|
1122
|
+
transform: scale(1.15);
|
|
1123
|
+
}
|
|
1124
|
+
|
|
742
1125
|
/* Side Chat Panel - Sleek Cyber Glass */
|
|
743
1126
|
.side-chat-panel {
|
|
744
1127
|
width: 370px;
|