@jjlmoya/utils-science 1.17.0 → 1.18.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.
@@ -439,815 +439,4 @@ const { ui } = Astro.props;
439
439
  }
440
440
  </script>
441
441
 
442
- <style>
443
- :root,
444
- .theme-light {
445
- --asteroid-primary: #f97316;
446
- --asteroid-secondary: #ef4444;
447
- --asteroid-accent: #64748b;
448
- --asteroid-success: #10b981;
449
- --asteroid-warning: #f59e0b;
450
- --asteroid-danger: #dc2626;
451
- --asteroid-bg-light: #f8fafc;
452
- --asteroid-bg-dark: #0f172a;
453
- --asteroid-bg-card: #fff;
454
- --asteroid-bg-modal: rgba(255, 255, 255, 0.9);
455
- --asteroid-border-light: #e2e8f0;
456
- --asteroid-border-dark: #1e293b;
457
- --asteroid-text-primary: #1e293b;
458
- --asteroid-text-secondary: #64748b;
459
- --asteroid-text-light: #f1f5f9;
460
- --asteroid-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.02);
461
- --asteroid-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
462
- --asteroid-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
463
- --asteroid-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
464
- --asteroid-radius-sm: 0.75rem;
465
- --asteroid-radius-md: 1.5rem;
466
- --asteroid-radius-lg: 2rem;
467
- --asteroid-radius-full: 9999px;
468
- --asteroid-transition: all 0.2s ease;
469
- --asteroid-transition-slow: all 0.3s ease;
470
- }
471
-
472
- :global(.theme-dark) {
473
- --asteroid-primary: #ff9f43;
474
- --asteroid-secondary: #ff6b5b;
475
- --asteroid-accent: #94a3b8;
476
- --asteroid-success: #2ecc71;
477
- --asteroid-warning: #ffa502;
478
- --asteroid-danger: #ff4757;
479
- --asteroid-bg-light: #0f172a;
480
- --asteroid-bg-card: #1a2332;
481
- --asteroid-bg-modal: rgba(26, 35, 50, 0.95);
482
- --asteroid-border-light: #2d3748;
483
- --asteroid-border-dark: #0f172a;
484
- --asteroid-text-primary: #f8f9fa;
485
- --asteroid-text-secondary: #cbd5e1;
486
- }
487
-
488
- .asteroid-app {
489
- position: relative;
490
- width: 100%;
491
- height: 85vh;
492
- min-height: 600px;
493
- border-radius: var(--asteroid-radius-md);
494
- overflow: hidden;
495
- background: var(--asteroid-bg-dark);
496
- box-shadow: var(--asteroid-shadow-xl);
497
- border: 1px solid var(--asteroid-border-dark);
498
- user-select: none;
499
- touch-action: none;
500
- }
501
-
502
- .asteroid-game-map {
503
- position: absolute;
504
- inset: 0;
505
- z-index: 0;
506
- background: var(--asteroid-bg-light);
507
- touch-action: none;
508
- }
509
-
510
- .asteroid-map-target-overlay {
511
- position: absolute;
512
- inset: 0;
513
- z-index: 10;
514
- pointer-events: none;
515
- opacity: 0;
516
- transition: opacity var(--asteroid-transition-slow);
517
- background: rgba(16, 185, 129, 0.05);
518
- display: flex;
519
- align-items: center;
520
- justify-content: center;
521
- }
522
-
523
- .asteroid-map-target-overlay.active {
524
- opacity: 1;
525
- }
526
-
527
- .asteroid-target-crosshair {
528
- position: absolute;
529
- width: 100%;
530
- height: 1px;
531
- background: rgba(16, 185, 129, 0.2);
532
- }
533
-
534
- .asteroid-target-crosshair.vertical {
535
- width: 1px;
536
- height: 100%;
537
- }
538
-
539
- .asteroid-target-box {
540
- position: absolute;
541
- border: 2px solid rgba(16, 185, 129, 0.3);
542
- border-radius: var(--asteroid-radius-md);
543
- width: 80%;
544
- height: 80%;
545
- }
546
-
547
- .asteroid-top-bar {
548
- position: absolute;
549
- top: 1rem;
550
- left: 0;
551
- right: 0;
552
- z-index: 30;
553
- display: flex;
554
- flex-direction: column;
555
- align-items: center;
556
- pointer-events: none;
557
- padding: 0 1rem;
558
- }
559
-
560
- .asteroid-gps-btn {
561
- pointer-events: auto;
562
- margin-bottom: 0.5rem;
563
- background: rgba(255, 255, 255, 0.9);
564
- backdrop-filter: blur(12px);
565
- color: var(--asteroid-text-primary);
566
- padding: 0.5rem 1rem;
567
- border-radius: var(--asteroid-radius-full);
568
- font-size: 0.75rem;
569
- font-weight: 700;
570
- border: 1px solid rgba(255, 255, 255, 0.4);
571
- box-shadow: var(--asteroid-shadow-md);
572
- display: flex;
573
- align-items: center;
574
- gap: 0.5rem;
575
- cursor: pointer;
576
- transition: var(--asteroid-transition);
577
- }
578
-
579
- :global(.theme-dark) .asteroid-gps-btn {
580
- background: rgba(30, 41, 59, 0.95);
581
- border: 1px solid rgba(100, 116, 139, 0.4);
582
- }
583
-
584
- .asteroid-gps-btn:hover {
585
- transform: scale(1.05);
586
- }
587
-
588
- .asteroid-gps-dot {
589
- width: 0.5rem;
590
- height: 0.5rem;
591
- border-radius: 50%;
592
- background: var(--asteroid-accent);
593
- transition: var(--asteroid-transition);
594
- }
595
-
596
- .asteroid-gps-dot.active {
597
- background: var(--asteroid-success);
598
- animation: pulse 2s infinite;
599
- }
600
-
601
- @keyframes pulse {
602
- 0%,
603
- 100% {
604
- opacity: 1;
605
- }
606
-
607
- 50% {
608
- opacity: 0.5;
609
- }
610
- }
611
-
612
- .asteroid-verdict-pill {
613
- max-width: 100%;
614
- transform: translateY(-20px);
615
- opacity: 0;
616
- transition: all var(--asteroid-transition-slow);
617
- pointer-events: none;
618
- }
619
-
620
- .asteroid-verdict-pill.active {
621
- transform: translateY(0);
622
- opacity: 1;
623
- pointer-events: auto;
624
- }
625
-
626
- .asteroid-verdict-container {
627
- background: var(--asteroid-bg-dark);
628
- color: var(--asteroid-text-primary);
629
- padding: 0.75rem 1.25rem;
630
- border-radius: var(--asteroid-radius-lg);
631
- box-shadow: var(--asteroid-shadow-xl);
632
- display: flex;
633
- align-items: center;
634
- gap: 0.75rem;
635
- backdrop-filter: blur(8px);
636
- border: 1px solid rgba(255, 255, 255, 0.1);
637
- }
638
-
639
- .asteroid-verdict-icon {
640
- width: 1.5rem;
641
- height: 1.5rem;
642
- flex-shrink: 0;
643
- display: flex;
644
- align-items: center;
645
- justify-content: center;
646
- }
647
-
648
- .asteroid-verdict-text {
649
- text-align: left;
650
- line-height: 1;
651
- }
652
-
653
- .asteroid-verdict-label {
654
- font-weight: 700;
655
- font-size: 0.5625rem;
656
- text-transform: uppercase;
657
- letter-spacing: 0.125em;
658
- opacity: 0.6;
659
- margin-bottom: 0.125rem;
660
- }
661
-
662
- .asteroid-verdict-value {
663
- font-weight: 900;
664
- font-size: 1.125rem;
665
- text-transform: uppercase;
666
- white-space: nowrap;
667
- font-style: italic;
668
- text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
669
- }
670
-
671
- .asteroid-verdict-safe .asteroid-verdict-value {
672
- color: #34d399;
673
- }
674
-
675
- .asteroid-verdict-shock .asteroid-verdict-value {
676
- color: #60a5fa;
677
- }
678
-
679
- .asteroid-verdict-burned .asteroid-verdict-value {
680
- color: #fb923c;
681
- }
682
-
683
- .asteroid-verdict-vaporized .asteroid-verdict-value {
684
- color: #f87171;
685
- }
686
-
687
- .asteroid-desktop-lab {
688
- display: none;
689
- }
690
-
691
- @media (min-width: 768px) {
692
- .asteroid-desktop-lab {
693
- display: flex;
694
- position: absolute;
695
- top: 1.5rem;
696
- left: 1.5rem;
697
- bottom: 1.5rem;
698
- width: 20rem;
699
- z-index: 30;
700
- flex-direction: column;
701
- pointer-events: none;
702
- }
703
- }
704
-
705
- .asteroid-lab-panel {
706
- background: var(--asteroid-bg-modal);
707
- backdrop-filter: blur(32px);
708
- border: 1px solid var(--asteroid-border-light);
709
- box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
710
- border-radius: var(--asteroid-radius-lg);
711
- padding: 1.25rem;
712
- display: flex;
713
- flex-direction: column;
714
- gap: 1rem;
715
- pointer-events: auto;
716
- height: 100%;
717
- overflow: hidden;
718
- color: var(--asteroid-text-primary);
719
- }
720
-
721
- .asteroid-lab-header {
722
- display: flex;
723
- align-items: center;
724
- justify-content: space-between;
725
- padding-bottom: 0.5rem;
726
- border-bottom: 1px solid var(--asteroid-border-light);
727
- flex-shrink: 0;
728
- }
729
-
730
- .asteroid-lab-title {
731
- display: flex;
732
- align-items: center;
733
- gap: 0.5rem;
734
- }
735
-
736
- .asteroid-lab-icon {
737
- width: 2rem;
738
- height: 2rem;
739
- border-radius: var(--asteroid-radius-sm);
740
- background: linear-gradient(135deg, var(--asteroid-primary) 0%, var(--asteroid-secondary) 100%);
741
- display: flex;
742
- align-items: center;
743
- justify-content: center;
744
- color: var(--asteroid-text-primary);
745
- box-shadow: 0 4px 8px rgba(var(--asteroid-primary-rgb), 0.3);
746
- }
747
-
748
- .asteroid-lab-name {
749
- font-weight: 900;
750
- color: var(--asteroid-text-primary);
751
- font-size: 1rem;
752
- line-height: 1;
753
- }
754
-
755
- .asteroid-lab-subtitle {
756
- font-size: 0.5625rem;
757
- font-weight: 700;
758
- color: var(--asteroid-text-secondary);
759
- text-transform: uppercase;
760
- letter-spacing: 0.125em;
761
- }
762
-
763
- .asteroid-lab-content {
764
- flex: 1;
765
- overflow-y: auto;
766
- padding-right: 0.25rem;
767
- display: flex;
768
- flex-direction: column;
769
- gap: 1.5rem;
770
- }
771
-
772
- .asteroid-lab-content::-webkit-scrollbar {
773
- width: 6px;
774
- }
775
-
776
- .asteroid-lab-content::-webkit-scrollbar-track {
777
- background: transparent;
778
- }
779
-
780
- .asteroid-lab-content::-webkit-scrollbar-thumb {
781
- background: rgba(100, 116, 139, 0.3);
782
- border-radius: 3px;
783
- }
784
-
785
- .asteroid-drag-source {
786
- position: relative;
787
- cursor: grab;
788
- transform-origin: center;
789
- transition: var(--asteroid-transition);
790
- }
791
-
792
- .asteroid-drag-source:active {
793
- cursor: grabbing;
794
- transform: scale(0.98);
795
- }
796
-
797
- .asteroid-drag-source:hover {
798
- transform: scale(1.02);
799
- }
800
-
801
- .asteroid-drag-bg {
802
- position: absolute;
803
- inset: 0;
804
- background: linear-gradient(135deg, #f3f4f6 0%, #fff 100%);
805
- border-radius: var(--asteroid-radius-lg);
806
- border: 1px solid var(--asteroid-border-light);
807
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
808
- }
809
-
810
- .asteroid-drag-tooltip {
811
- position: absolute;
812
- top: -2.5rem;
813
- left: 50%;
814
- transform: translateX(-50%);
815
- opacity: 0;
816
- display: flex;
817
- align-items: center;
818
- justify-content: center;
819
- z-index: 10;
820
- pointer-events: none;
821
- transition: opacity var(--asteroid-transition);
822
- }
823
-
824
- .asteroid-drag-source:hover .asteroid-drag-tooltip {
825
- opacity: 1;
826
- }
827
-
828
- .asteroid-drag-tooltip-text {
829
- background: rgba(0, 0, 0, 0.85);
830
- color: var(--asteroid-text-primary);
831
- font-size: 0.65rem;
832
- font-weight: 700;
833
- padding: 0.4rem 0.75rem;
834
- border-radius: var(--asteroid-radius-sm);
835
- border: 1px solid rgba(255, 255, 255, 0.1);
836
- backdrop-filter: blur(8px);
837
- box-shadow: var(--asteroid-shadow-lg);
838
- }
839
-
840
- .asteroid-drag-visual {
841
- position: relative;
842
- height: 12rem;
843
- display: flex;
844
- align-items: center;
845
- justify-content: center;
846
- overflow: visible;
847
- border-radius: var(--asteroid-radius-lg);
848
- }
849
442
 
850
- .asteroid-drag-grid {
851
- position: absolute;
852
- inset: 0;
853
- background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
854
- background-size: 20px 20px;
855
- opacity: 0.5;
856
- }
857
-
858
- .asteroid-visual {
859
- width: 5rem;
860
- height: 5rem;
861
- border-radius: 50%;
862
- box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.8);
863
- position: relative;
864
- transition: var(--asteroid-transition);
865
- z-index: 10;
866
- }
867
-
868
- .asteroid-visual.ice-type {
869
- box-shadow:
870
- 0 0 20px rgba(103, 232, 249, 0.6),
871
- 10px 10px 30px rgba(0, 0, 0, 0.2),
872
- -5px -5px 15px rgba(255, 255, 255, 0.8);
873
- }
874
-
875
- .asteroid-drag-icon-parent {
876
- position: absolute;
877
- bottom: 0.5rem;
878
- right: 0.5rem;
879
- width: 2rem;
880
- height: 2rem;
881
- background: rgba(0, 0, 0, 0.85);
882
- border: 1px solid rgba(255, 255, 255, 0.1);
883
- border-radius: var(--asteroid-radius-sm);
884
- display: flex;
885
- align-items: center;
886
- justify-content: center;
887
- color: var(--asteroid-text-primary);
888
- z-index: 20;
889
- opacity: 1;
890
- transition: var(--asteroid-transition);
891
- }
892
-
893
- .asteroid-drag-source:hover .asteroid-drag-icon-parent {
894
- background: rgba(0, 0, 0, 0.95);
895
- }
896
-
897
- .asteroid-surface {
898
- position: absolute;
899
- inset: 0;
900
- border-radius: 50%;
901
- background: var(--asteroid-accent);
902
- overflow: hidden;
903
- border: 2px solid rgba(255, 255, 255, 0.2);
904
- }
905
-
906
- .asteroid-surface-gradient {
907
- position: absolute;
908
- top: 0;
909
- right: 0;
910
- width: 100%;
911
- height: 100%;
912
- background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
913
- animation: asteroid-spin 8s linear infinite;
914
- }
915
-
916
- @keyframes asteroid-spin {
917
- from {
918
- transform: rotate(0deg);
919
- }
920
-
921
- to {
922
- transform: rotate(360deg);
923
- }
924
- }
925
-
926
- .asteroid-params-badge {
927
- position: absolute;
928
- top: 0.5rem;
929
- left: 0.5rem;
930
- background: rgba(0, 0, 0, 0.85);
931
- border: 1px solid rgba(255, 255, 255, 0.1);
932
- border-radius: var(--asteroid-radius-sm);
933
- padding: 0.5rem 0.75rem;
934
- display: flex;
935
- flex-direction: column;
936
- gap: 0.25rem;
937
- z-index: 20;
938
- font-size: 0.7rem;
939
- font-weight: 700;
940
- color: var(--asteroid-text-primary);
941
- white-space: nowrap;
942
- opacity: 1;
943
- transition: opacity var(--asteroid-transition-slow);
944
- }
945
-
946
- .asteroid-param-item {
947
- display: flex;
948
- align-items: center;
949
- gap: 0.25rem;
950
- }
951
-
952
- .asteroid-param-item:nth-child(1) {
953
- color: var(--asteroid-primary);
954
- }
955
-
956
- .asteroid-param-item:nth-child(2) {
957
- color: var(--asteroid-success);
958
- }
959
-
960
- .asteroid-param-item:nth-child(3) {
961
- color: var(--asteroid-accent);
962
- }
963
-
964
- .asteroid-presets {
965
- display: grid;
966
- grid-template-columns: repeat(2, 1fr);
967
- gap: 0.75rem;
968
- }
969
-
970
- .asteroid-preset-btn {
971
- position: relative;
972
- overflow: hidden;
973
- background: var(--asteroid-bg-card);
974
- border: 1px solid var(--asteroid-border-light);
975
- border-radius: var(--asteroid-radius-md);
976
- padding: 0.75rem;
977
- text-align: left;
978
- transition: var(--asteroid-transition-slow);
979
- cursor: pointer;
980
- flex-shrink: 0;
981
- }
982
-
983
- .asteroid-preset-btn:hover {
984
- box-shadow: var(--asteroid-shadow-lg);
985
- transform: translateY(-2px);
986
- border-color: var(--asteroid-primary);
987
- }
988
-
989
- .asteroid-preset-title {
990
- font-size: 0.6875rem;
991
- font-weight: 900;
992
- color: var(--asteroid-text-primary);
993
- margin-bottom: 0.125rem;
994
- position: relative;
995
- z-index: 10;
996
- transition: var(--asteroid-transition);
997
- }
998
-
999
- .asteroid-preset-btn:hover .asteroid-preset-title {
1000
- color: var(--asteroid-primary);
1001
- }
1002
-
1003
- .asteroid-preset-subtitle {
1004
- font-size: 0.5625rem;
1005
- font-weight: 500;
1006
- color: var(--asteroid-text-secondary);
1007
- position: relative;
1008
- z-index: 10;
1009
- }
1010
-
1011
- .asteroid-control-group {
1012
- background: var(--asteroid-bg-light);
1013
- border-radius: var(--asteroid-radius-md);
1014
- padding: 0.75rem;
1015
- border: 1px solid var(--asteroid-border-light);
1016
- }
1017
-
1018
- .asteroid-control-label {
1019
- display: flex;
1020
- justify-content: space-between;
1021
- align-items: flex-end;
1022
- margin-bottom: 0.5rem;
1023
- }
1024
-
1025
- .asteroid-control-text {
1026
- font-size: 0.625rem;
1027
- font-weight: 700;
1028
- color: var(--asteroid-text-secondary);
1029
- text-transform: uppercase;
1030
- letter-spacing: 0.05em;
1031
- }
1032
-
1033
- .asteroid-control-value {
1034
- font-size: 0.875rem;
1035
- font-weight: 900;
1036
- color: var(--asteroid-text-primary);
1037
- }
1038
-
1039
- .asteroid-slider {
1040
- width: 100%;
1041
- height: 0.375rem;
1042
- background: var(--asteroid-border-light);
1043
- border-radius: 0.5rem;
1044
- appearance: none;
1045
- cursor: pointer;
1046
- accent-color: var(--asteroid-primary);
1047
- }
1048
-
1049
- .asteroid-slider::-webkit-slider-thumb {
1050
- appearance: none;
1051
- width: 1.25rem;
1052
- height: 1.25rem;
1053
- background: var(--asteroid-primary);
1054
- border-radius: 50%;
1055
- cursor: pointer;
1056
- box-shadow: var(--asteroid-shadow-md);
1057
- transition: var(--asteroid-transition);
1058
- }
1059
-
1060
- .asteroid-slider::-webkit-slider-thumb:hover {
1061
- transform: scale(1.2);
1062
- box-shadow: var(--asteroid-shadow-lg);
1063
- }
1064
-
1065
- .asteroid-slider::-moz-range-thumb {
1066
- width: 1.25rem;
1067
- height: 1.25rem;
1068
- background: var(--asteroid-primary);
1069
- border: none;
1070
- border-radius: 50%;
1071
- cursor: pointer;
1072
- box-shadow: var(--asteroid-shadow-md);
1073
- transition: var(--asteroid-transition);
1074
- }
1075
-
1076
- .asteroid-slider::-moz-range-thumb:hover {
1077
- transform: scale(1.2);
1078
- box-shadow: var(--asteroid-shadow-lg);
1079
- }
1080
-
1081
- .asteroid-material-buttons {
1082
- display: grid;
1083
- grid-template-columns: repeat(3, 1fr);
1084
- gap: 0.5rem;
1085
- }
1086
-
1087
- .asteroid-material-btn {
1088
- padding: 0.5rem;
1089
- border-radius: var(--asteroid-radius-md);
1090
- border: 1px solid var(--asteroid-border-light);
1091
- background: var(--asteroid-bg-light);
1092
- cursor: pointer;
1093
- transition: var(--asteroid-transition);
1094
- display: flex;
1095
- flex-direction: column;
1096
- align-items: center;
1097
- gap: 0.25rem;
1098
- }
1099
-
1100
- .asteroid-material-btn:hover {
1101
- background: white;
1102
- }
1103
-
1104
- .asteroid-material-btn.active {
1105
- border-color: var(--asteroid-primary);
1106
- background: rgba(249, 115, 22, 0.1);
1107
- }
1108
-
1109
- .asteroid-material-dot {
1110
- width: 1rem;
1111
- height: 1rem;
1112
- border-radius: 50%;
1113
- box-shadow: var(--asteroid-shadow-sm);
1114
- transition: var(--asteroid-transition);
1115
- }
1116
-
1117
- .asteroid-material-btn:hover .asteroid-material-dot {
1118
- transform: scale(1.1);
1119
- }
1120
-
1121
- .asteroid-material-name {
1122
- font-size: 0.5625rem;
1123
- font-weight: 700;
1124
- color: var(--asteroid-text-secondary);
1125
- text-transform: uppercase;
1126
- }
1127
-
1128
- .asteroid-clear-btn {
1129
- padding: 0.25rem 0.35rem;
1130
- border-radius: 0.35rem;
1131
- background: var(--asteroid-bg-light);
1132
- color: var(--asteroid-text-secondary);
1133
- font-weight: 600;
1134
- font-size: 0.5rem;
1135
- text-transform: uppercase;
1136
- letter-spacing: 0.04em;
1137
- border: none;
1138
- cursor: pointer;
1139
- transition: var(--asteroid-transition);
1140
- display: flex;
1141
- align-items: center;
1142
- justify-content: center;
1143
- gap: 0.2rem;
1144
- height: auto;
1145
- min-height: 1.5rem;
1146
- flex-shrink: 0;
1147
- }
1148
-
1149
- .asteroid-clear-btn:hover {
1150
- background: rgba(220, 38, 38, 0.1);
1151
- color: var(--asteroid-danger);
1152
- }
1153
-
1154
- .asteroid-mobile-control {
1155
- display: flex;
1156
- align-items: center;
1157
- justify-content: center;
1158
- }
1159
-
1160
- @media (min-width: 768px) {
1161
- .asteroid-mobile-control {
1162
- display: none;
1163
- }
1164
- }
1165
-
1166
- .asteroid-mobile-bar {
1167
- position: absolute;
1168
- bottom: 1.5rem;
1169
- left: 1rem;
1170
- right: 1rem;
1171
- z-index: 40;
1172
- background: rgba(255, 255, 255, 0.9);
1173
- backdrop-filter: blur(12px);
1174
- border-radius: var(--asteroid-radius-lg);
1175
- box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
1176
- border: 1px solid rgba(255, 255, 255, 0.6);
1177
- padding: 0.5rem;
1178
- display: flex;
1179
- align-items: center;
1180
- justify-content: space-between;
1181
- pointer-events: auto;
1182
- }
1183
-
1184
- .asteroid-mobile-asteroid {
1185
- width: 4rem;
1186
- height: 4rem;
1187
- background: var(--asteroid-bg-light);
1188
- border-radius: 50%;
1189
- box-shadow: var(--asteroid-shadow-lg);
1190
- border: 1px solid white;
1191
- display: flex;
1192
- align-items: center;
1193
- justify-content: center;
1194
- cursor: grab;
1195
- position: relative;
1196
- overflow: hidden;
1197
- transition: var(--asteroid-transition);
1198
- }
1199
-
1200
- .asteroid-mobile-asteroid:active {
1201
- cursor: grabbing;
1202
- transform: scale(0.95);
1203
- }
1204
-
1205
- .asteroid-mobile-asteroid-label {
1206
- position: absolute;
1207
- top: -0.75rem;
1208
- background: var(--asteroid-bg-dark);
1209
- color: var(--asteroid-text-primary);
1210
- font-size: 0.5625rem;
1211
- font-weight: 900;
1212
- letter-spacing: 0.125em;
1213
- padding: 0 0.5rem;
1214
- border-radius: var(--asteroid-radius-full);
1215
- box-shadow: var(--asteroid-shadow-lg);
1216
- transform: scale(0.9);
1217
- }
1218
-
1219
- .asteroid-mobile-person {
1220
- width: 4rem;
1221
- height: 4rem;
1222
- background: rgba(59, 130, 246, 0.05);
1223
- border-radius: 50%;
1224
- box-shadow: var(--asteroid-shadow-lg);
1225
- border: 1px solid white;
1226
- display: flex;
1227
- align-items: center;
1228
- justify-content: center;
1229
- cursor: grab;
1230
- position: relative;
1231
- overflow: hidden;
1232
- transition: var(--asteroid-transition);
1233
- }
1234
-
1235
- .asteroid-mobile-person:active {
1236
- cursor: grabbing;
1237
- transform: scale(0.95);
1238
- }
1239
-
1240
- .asteroid-person-icon {
1241
- width: 2rem;
1242
- height: 2rem;
1243
- color: #3b82f6;
1244
- text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1245
- }
1246
-
1247
- .asteroid-divider {
1248
- height: 2rem;
1249
- width: 1px;
1250
- background: var(--asteroid-border-light);
1251
- margin: 0 0.5rem;
1252
- }
1253
- </style>