cdnhost 3.4.8 → 3.5.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/index_css.css ADDED
@@ -0,0 +1,184 @@
1
+ .code-scroll::-webkit-scrollbar { height: 8px; }
2
+ .code-scroll::-webkit-scrollbar-track { background: #1e1e1e; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
3
+ .code-scroll::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }
4
+ .code-scroll::-webkit-scrollbar-thumb:hover { background: #666; }
5
+ body { background-color: #050505; color: white; margin: 0; width: 100vw; height: 100vh; height: 100dvh; overflow: hidden; display: flex; flex-direction: column; transition: all 0.5s ease; padding-bottom: env(safe-area-inset-bottom, 20px); }
6
+ body.started #middle-zone { flex: 0 0 auto; justify-content: flex-end; padding-bottom: clamp(20px, 5dvh, 40px); }
7
+ #app-container { width: 100%; padding: 0 4px; margin-top: 8px; margin-bottom: 4px; }
8
+ .island-box { margin-bottom: 10px; }
9
+ #star-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
10
+ .no-scrollbar::-webkit-scrollbar { display: none; }
11
+ .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
12
+ #custom-scrollbar { position: absolute; right: 6px; top: 20px; bottom: 20px; width: 4px; z-index: 60; display: none; pointer-events: none; }
13
+ #scroll-thumb { position: absolute; width: 8px; height: 8px; right: -2px; background: white; border-radius: 50%; box-shadow: 0 0 10px 2px rgba(255,255,255,0.8); cursor: pointer; pointer-events: auto; transition: transform 0.1s; }
14
+ #scroll-thumb:hover, #scroll-thumb.dragging { transform: scale(1.5); }
15
+ #main-layout { display: flex; width: 100%; height: 100%; position: relative; transition: all 0.5s ease; }
16
+ #left-panel { flex: 1; display: flex; flex-direction: column; height: 100%; position: relative; transition: all 0.5s ease; justify-content: center; }
17
+ #right-panel { flex: 0; width: 0; opacity: 0; overflow: hidden; border-left: 1px solid rgba(255,255,255,0.1); background: #0a0a0a; transition: all 0.5s ease; display: flex; flex-direction: column; }
18
+ body.mode-code #left-panel { flex: 0 0 50%; }
19
+ body.mode-code #right-panel { flex: 1; opacity: 1; width: auto; padding: 20px; }
20
+ body:not(.started) #top-zone { flex: 0 0 0; opacity: 0; height: 0; padding: 0; overflow: hidden; }
21
+ body:not(.started) #middle-zone { flex: 1; justify-content: center; padding-bottom: 20px; }
22
+ body.started #top-zone { flex: 1; min-height: 0; opacity: 1; padding-bottom: 12px; }
23
+ body.started #middle-zone { flex: 0 0 auto; justify-content: flex-end; padding-bottom: 20px; }
24
+ #top-zone { width: 100%; max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; position: relative; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
25
+ #middle-zone { width: 90%; max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; z-index: 50; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
26
+ .island-box { width: 100%; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(40px); box-shadow: 0 0 25px rgba(255, 255, 255, 0.12); border-radius: 28px; position: relative; overflow: hidden; transition: transform 0.3s; border: 1px solid rgba(255, 255, 255, 0.1); }
27
+ #loader-overlay { position: absolute; inset: 0; border-radius: 28px; background: rgba(255, 255, 255, 0.9); display: flex; align-items: center; justify-content: center; z-index: 100; opacity: 0; pointer-events: none; transition: opacity 0.3s; box-shadow: 0 0 50px 10px rgba(255,255,255,0.6); }
28
+ #loader-overlay.active { opacity: 1; pointer-events: auto; animation: white-glow 1.5s infinite alternate; }
29
+ @keyframes white-glow { from { box-shadow: 0 0 20px rgba(255,255,255,0.5); } to { box-shadow: 0 0 60px rgba(255,255,255,0.9); } }
30
+ .app-grid { width: 100%; display: grid; grid-template-columns: repeat(auto-fill, minmax(44px, 1fr)); gap: 12px; justify-items: center; max-height: 100px; overflow: hidden; margin-top: 20px; transition: opacity 0.3s; }
31
+ .app-item { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 5px rgba(255, 255, 255, 0.12); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
32
+ .app-item:hover { background: rgba(255,255,255,0.2); }
33
+ .app-item img { width: 22px; height: 22px; border-radius: 50%; opacity: 0.85; }
34
+ .btn-icon { color: rgba(255,255,255,0.3); transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
35
+ .btn-submit { background: white; color: black; border-radius: 50%; transition: all 0.2s; }
36
+ .btn-submit:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(255,255,255,0.5); }
37
+ .btn-submit.stop-mode { background: #ff4444; color: white; }
38
+ .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
39
+ .modal-overlay.show { opacity: 1; pointer-events: auto; }
40
+ .modal-box { background: #151515; border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; padding: 24px; width: 90%; max-width: 320px; text-align: center; transform: scale(0.95); transition: transform 0.3s; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
41
+ .modal-overlay.show .modal-box { transform: scale(1); }
42
+ .toast { position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-10px); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); color: #333; padding: 10px 20px; border-radius: 99px; font-weight: 400; font-size: 0.8rem; letter-spacing: 0.03em; opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; z-index: 200; }
43
+ .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
44
+ #img-preview-container { margin-top: 15px; width: 100%; display: none; animation: fadeIn 0.3s ease; }
45
+ #img-preview-container.active { display: block; }
46
+ @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
47
+ .custom-scrollbar-code::-webkit-scrollbar { height: 6px; }
48
+ .custom-scrollbar-code::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
49
+ .custom-scrollbar-code::-webkit-scrollbar-track { background: transparent; }
50
+ #progress-bar { height: 100%; background: white; width: 0; transition: all 0.3s; box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.8); }
51
+ @media (max-width: 768px) {
52
+ body.mode-code #left-panel { flex: 1 0 100% !important; width: 100% !important; max-width: 100% !important; }
53
+ #right-panel { display: none !important; width: 0 !important; flex: 0 !important; }
54
+ #right-panel.mobile-active { display: flex !important; position: fixed !important; top: 0; left: 0; right: 0; bottom: 0; width: 100% !important; height: 100% !important; z-index: 9999 !important; background: #151515; opacity: 1 !important; padding: 0 !important; margin: 0 !important; }
55
+ }
56
+ .store-item, .fixed-app-item { position: relative; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 12px; width: 100%; aspect-ratio: 1/1; cursor: pointer; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.05); }
57
+ .fixed-app-item { width: 48px; height: 48px; flex-shrink: 0; }
58
+ .store-item:hover, .fixed-app-item:hover { background: rgba(255,255,255,0.15); transform: scale(1.05); border-color: rgba(255,255,255,0.2); }
59
+ .store-item img, .fixed-app-item img, .fixed-app-item i { width: 50%; height: 50%; object-fit: contain; transition: transform 0.2s; filter: brightness(0) invert(1); opacity: 0.8; }
60
+ .store-item:hover img, .fixed-app-item:hover img { opacity: 1; }
61
+ .store-item span { display: none; }
62
+ .fixed-delete-btn { position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; background: #ef4444; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.8); transition: all 0.2s; z-index: 10; border: 1px solid rgba(255,255,255,0.2); }
63
+ .fixed-delete-btn i { font-size: 12px; width: auto !important; height: auto !important; filter: none !important; }
64
+ .fixed-app-item:hover .fixed-delete-btn { opacity: 1; transform: scale(1); }
65
+ #store-panel { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.3s ease-in-out; margin: 0; padding: 0 16px; }
66
+ #store-panel.open { max-height: 800px; opacity: 1; margin-top: 8px; margin-bottom: 8px; padding-bottom: 8px; }
67
+ #store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)); gap: 10px; max-height: 350px; overflow-y: auto; padding: 4px; padding-right: 8px; }
68
+ #store-grid::-webkit-scrollbar { width: 6px; display: block; }
69
+ #store-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; }
70
+ #store-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 3px; }
71
+ #store-grid::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.5); }
72
+ .app-letter-icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: white; border-radius: 12px; text-transform: uppercase; position: absolute; top: 0; left: 0; z-index: 0; }
73
+ .store-item img, .fixed-app-item img { filter: none !important; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
74
+ .fixed-delete-btn i { filter: none; }
75
+ .store-filter-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 10px; color: #888; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); transition: all 0.2s; flex-shrink: 0; }
76
+ .store-filter-btn:hover { background: rgba(255,255,255,0.15); color: white; transform: scale(1.05); }
77
+ .store-filter-btn.active { background: white; color: black; border-color: white; }
78
+ body { width: 100%; overflow-x: hidden; }
79
+ @media (max-width: 768px) {
80
+ #middle-zone { width: 100%; max-width: 100vw; margin: 0 auto; padding-left: 12px; padding-right: 12px; }
81
+ .island-box, textarea, #store-category-filters { max-width: 100%; }
82
+ }
83
+ .btn-share-no-hover { transition: none !important; transform: none !important; }
84
+ .btn-share-no-hover:hover { transform: none !important; opacity: 1 !important; background-color: rgba(0, 0, 0, 0.5) !important; }
85
+ #img-preview-container { display: none; transition: opacity 0.3s ease; }
86
+ #img-preview-container.active { display: block !important; opacity: 1 !important; visibility: visible !important; }
87
+ #preview-img { pointer-events: auto; max-height: 80vh; }
88
+ #chat-box { display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
89
+ .mt-auto { margin-top: auto !important; }
90
+ #chat-box > div:first-child { margin-top: auto !important; }
91
+ :root { --bg-main: #080808; --bg-island: rgba(20, 20, 20, 0.8); --accent: #ffffff; --accent-text: #000000; --text-main: #e5e5e5; --text-dim: rgba(255, 255, 255, 0.35); --border: rgba(255, 255, 255, 0.08); }
92
+ body { background-color: var(--bg-main) !important; color: var(--text-main) !important; transition: background 0.4s ease; }
93
+ .island-box { background: var(--bg-island) !important; }
94
+ #prompt-input { color: var(--text-main) !important; caret-color: var(--accent) !important; }
95
+ #prompt-input::placeholder { color: var(--text-dim) !important; }
96
+ .btn-icon { color: var(--text-dim) !important; transition: all 0.3s ease; }
97
+ .btn-icon.active, .btn-icon:hover { color: var(--accent) !important; transform: scale(1.1); text-shadow: 0 0 3px var(--accent); }
98
+ .btn-submit { background: var(--accent) !important; color: var(--accent-text) !important; }
99
+ .btn-submit i { color: var(--accent-text) !important; }
100
+ #progress-bar { background: var(--accent) !important; box-shadow: 0 0 10px var(--accent) !important; }
101
+ #right-panel, #code-editor { background: var(--bg-main) !important; color: var(--text-main) !important; }
102
+ #code-tabs { background: var(--bg-island) !important; border-color: var(--border) !important; }
103
+ #chat-box div { border-color: var(--border) !important; }
104
+ #welcome-msg { background: var(--border) !important; color: var(--text-main) !important; border: none !important; border-radius: 16px !important; padding: 10px 16px !important; }
105
+ .app-item, .store-item, .fixed-app-item { background: var(--border) !important; border: 1.5px solid var(--border-strong) !important; transition: all 0.3s ease; }
106
+ #bg-visual-layer { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; transition: all 0.8s ease; display: none !important; }
107
+ body.theme-midnight #bg-visual-layer { background: linear-gradient(180deg, #0f172a 0%, #020617 100%); }
108
+ body.theme-midnight::after { content: ''; position: fixed; inset: 0; z-index: -1; background: radial-gradient(circle at 50% -20%, rgba(0, 168, 255, 0.15), transparent); }
109
+ body.theme-forest #bg-visual-layer { background: #0a0c0a; }
110
+ body.theme-forest::after { content: ''; position: fixed; inset: 0; z-index: -1; background: radial-gradient(circle at 80% 20%, rgba(20, 83, 45, 0.2), transparent); }
111
+ body.theme-sky .sky { background-color: rgb(255 255 255 / 0.8) !important; color: #555 !important; }
112
+ #star-canvas, #emoji-background-layer, .floating-emoji { display: none !important; }
113
+ body.theme-light, body.theme-sky { background-color: #ffffff !important; background-image: radial-gradient(circle at 50% 40%, rgba(255, 200, 210, 0.25) 0%, rgba(200, 230, 255, 0.25) 30%, rgba(255, 255, 255, 0) 70%) !important; color: #1a1a1a !important; }
114
+ body, body.theme-dark, body.theme-midnight { background-color: #0a0a0a !important; background-image: radial-gradient(circle at 50% 40%, rgba(50, 60, 100, 0.4) 0%, rgba(30, 30, 40, 0.4) 40%, rgba(10, 10, 10, 0) 80%) !important; background-attachment: fixed !important; color: #e5e5e5 !important; }
115
+ .island-box { box-shadow: none !important; backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px) !important; border-radius: 24px !important; }
116
+ body.theme-light .island-box, body.theme-sky .island-box { background: rgba(255, 255, 255, 0.4) !important; }
117
+ body.theme-light #prompt-input { color: #000 !important; }
118
+ body.theme-light #prompt-input::placeholder { color: rgba(0,0,0,0.4) !important; }
119
+ body.theme-dark .island-box, body.theme-midnight .island-box { background: rgba(30, 30, 30, 0.4) !important; }
120
+ body.theme-dark #prompt-input { color: #fff !important; }
121
+ body.theme-dark #prompt-input::placeholder { color: rgba(255,255,255,0.3) !important; }
122
+ .app-item, .store-item, .fixed-app-item { width: 48px !important; height: 48px !important; border-radius: 14px !important; transition: all 0.2s ease-out !important; display: flex; align-items: center; justify-content: center; box-shadow: none !important; }
123
+ body.theme-light .app-item, body.theme-light .store-item { background: rgba(255, 255, 255, 0.5) !important; }
124
+ body.theme-light .app-item:hover { background: rgba(255, 255, 255, 0.8) !important; transform: scale(1.05); }
125
+ body.theme-light .app-item img { filter: none !important; opacity: 0.8; }
126
+ body.theme-dark .app-item, body.theme-dark .store-item { background: rgba(255, 255, 255, 0.05) !important; }
127
+ body.theme-dark .app-item:hover { background: rgba(255, 255, 255, 0.15) !important; border-color: rgba(255, 255, 255, 0.2) !important; transform: scale(1.05); }
128
+ body.theme-dark .app-item img, body.theme-dark .store-item img { filter: brightness(0) invert(1) !important; opacity: 0.7 !important; }
129
+ body.theme-dark .app-item:hover img { opacity: 1 !important; }
130
+ .btn-submit { box-shadow: none !important; width: 40px !important; height: 40px !important; }
131
+ body.theme-light .btn-submit { background: #000 !important; color: #fff !important; }
132
+ body.theme-dark .btn-submit { background: #fff !important; color: #000 !important; }
133
+ body.theme-dark .btn-submit i { color: #000 !important; }
134
+ body.theme-light .btn-icon { color: #999 !important; }
135
+ body.theme-light .btn-icon:hover { color: #000 !important; background: transparent !important; }
136
+ body.theme-dark .btn-icon { color: #666 !important; }
137
+ body.theme-dark .btn-icon:hover, body.theme-dark .btn-icon.active { color: #fff !important; background: transparent !important; }
138
+ body.theme-light #welcome-msg { background: rgba(0,0,0,0.04) !important; color: #444 !important; }
139
+ body.theme-dark #welcome-msg { background: rgba(255,255,255,0.06) !important; color: #ccc !important; }
140
+ #app-grid { max-height: 120px !important; overflow-y: auto !important; overflow-x: hidden !important; padding-right: 4px !important; padding-bottom: 5px !important; align-content: start !important; }
141
+ #app-grid::-webkit-scrollbar { width: 4px; }
142
+ #app-grid::-webkit-scrollbar-track { background: transparent; }
143
+ #app-grid::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.2); border-radius: 10px; }
144
+ body.theme-dark #app-grid::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); }
145
+ #app-container { width: 100% !important; overflow: hidden !important; position: relative; mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); padding: 10px 0 !important; }
146
+ #app-grid { display: flex !important; flex-wrap: nowrap !important; gap: 16px !important; width: max-content !important; max-height: none !important; overflow: visible !important; padding: 0 20px !important; animation: scroll-loop 30s linear infinite; }
147
+ .app-item, .store-item, .fixed-app-item { flex: 0 0 auto !important; }
148
+ @keyframes scroll-loop { 0% { transform: translateX(0); } 100% { transform: translateX(-33.33%); } }
149
+ #app-container:hover #app-grid { animation-play-state: paused; }
150
+ body.theme-dark .app-item img, body.theme-dark .store-item img, body.theme-midnight .app-item img { filter: none !important; opacity: 1 !important; mix-blend-mode: normal !important; }
151
+ #store-grid { justify-content: center !important; text-align: center; }
152
+ #center-app-name { text-align: center; font-size: 13px; font-weight: 600; margin-top: 5px; height: 20px; transition: color 0.3s; }
153
+ body.theme-light #center-app-name { color: #555; }
154
+ body.theme-dark #center-app-name { color: #aaa; }
155
+ body.theme-light, body.theme-sky { background-image: radial-gradient(circle at 50% 40%, rgba(255, 170, 190, 0.45) 0%, rgba(170, 210, 255, 0.45) 30%, rgba(255, 255, 255, 0) 70%) !important; }
156
+ body, body.theme-dark, body.theme-midnight { background-image: radial-gradient(circle at 50% 40%, rgba(70, 80, 160, 0.55) 0%, rgba(50, 50, 70, 0.6) 40%, rgba(10, 10, 10, 0) 80%) !important; }
157
+ .island-box, .app-item, .store-item, .fixed-app-item, #welcome-msg, .store-filter-btn, #prompt-input, .btn-submit { border: none !important; outline: none !important; box-shadow: none !important; }
158
+ body.theme-light .island-box { background: rgba(255, 255, 255, 0.55) !important; }
159
+ body.theme-light .app-item, body.theme-light .store-item { background: rgba(255, 255, 255, 0.6) !important; }
160
+ body.theme-dark .island-box { background: rgba(40, 40, 40, 0.5) !important; }
161
+ body.theme-dark .app-item, body.theme-dark .store-item { background: rgba(255, 255, 255, 0.08) !important; }
162
+ .app-item:hover, .store-item:hover { transform: scale(1.08) !important; }
163
+ body.theme-light, body.theme-sky { background-color: #ffffff !important; background-image: radial-gradient(at 0% 0%, rgba(255, 130, 130, 0.55) 0px, transparent 55%), radial-gradient(at 100% 0%, rgba(100, 180, 255, 0.55) 0px, transparent 55%), radial-gradient(at 100% 100%, rgba(255, 210, 120, 0.55) 0px, transparent 55%), radial-gradient(at 0% 100%, rgba(180, 140, 255, 0.55) 0px, transparent 55%) !important; background-attachment: fixed; background-size: 100% 100%; }
164
+ body, body.theme-dark, body.theme-midnight { background-color: #050505 !important; background-image: radial-gradient(at 10% 10%, rgba(110, 60, 180, 0.65) 0px, transparent 50%), radial-gradient(at 90% 10%, rgba(40, 100, 180, 0.65) 0px, transparent 50%), radial-gradient(at 90% 90%, rgba(30, 140, 110, 0.55) 0px, transparent 50%), radial-gradient(at 10% 90%, rgba(160, 40, 100, 0.55) 0px, transparent 50%) !important; background-attachment: fixed; background-size: 100% 100%; }
165
+ body { background-color: var(--bg-base, #ffffff) !important; background-image: radial-gradient(at 0% 0%, var(--bg-1) 0px, transparent 55%), radial-gradient(at 100% 0%, var(--bg-2) 0px, transparent 55%), radial-gradient(at 100% 100%, var(--bg-3) 0px, transparent 55%), radial-gradient(at 0% 100%, var(--bg-4) 0px, transparent 55%) !important; background-attachment: fixed !important; background-size: 100% 100% !important; transition: background 1s ease; }
166
+ .island-box, .app-item, .store-item { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
167
+ #store-grid { gap: 6px !important; padding: 0 4px !important; align-items: center !important; height: 56px !important; min-height: 56px !important; }
168
+ #app-grid, #app-grid.search-scroll { padding: 4px 0 !important; gap: 12px !important; align-items: center !important; height: 60px !important; min-height: 60px !important; }
169
+ .island-box, .app-item, .store-item, .fixed-app-item { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
170
+ body.theme-light .island-box { background: #ffffff !important; }
171
+ body.theme-light .app-item, body.theme-light .store-item { background: #ffffff !important; }
172
+ body.theme-dark .island-box, body.theme-midnight .island-box { background: #181818 !important; }
173
+ body.theme-dark .app-item, body.theme-dark .store-item, body.theme-midnight .app-item, body.theme-midnight .store-item { background: #111111 !important; }
174
+ body.theme-light .app-item:hover, body.theme-light .store-item:hover { background: #f0f0f0 !important; }
175
+ body.theme-dark .app-item:hover, body.theme-dark .store-item:hover { background: #2a2a2a !important; }
176
+ #app-grid.search-scroll { display: flex !important; flex-wrap: nowrap !important; justify-content: flex-start !important; align-items: center !important; width: max-content !important; height: auto !important; animation: search-scroll-loop 60s linear infinite !important; }
177
+ @keyframes search-scroll-loop { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }
178
+ #app-container.searching { mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
179
+ #app-grid { animation: none !important; cursor: grab; touch-action: pan-y; }
180
+ #app-grid:active { cursor: grabbing; }
181
+ #app-grid img, #app-grid div, #app-grid a { user-select: none; -webkit-user-drag: none; }
182
+ #center-app-name { text-align: center; font-size: 13px; font-weight: 600; margin-top: 5px; height: 20px; animation: none !important; transition: color 0.3s ease, text-shadow 0.3s ease; }
183
+ body.theme-dark #center-app-name, body.theme-midnight #center-app-name { color: #fff !important; text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.2) !important; }
184
+ body.theme-light #center-app-name, body.theme-sky #center-app-name { color: #000 !important; text-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.2) !important; }