sensivity 2.5.26 → 2.5.28

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.
@@ -1,28 +1,35 @@
1
1
  :root {
2
- --bg: #050508;
3
- --bg2: #0a0a12;
4
- --bg3: #11111d;
5
- --bg4: #1a1a2e;
6
- --bg5: #22223a;
7
- --border: #1c1c30;
8
- --gold: #f0b90b;
9
- --gold2: #d4a00c;
10
- --gold-glow: #f0b90b44;
11
- --text: #e8eaed;
12
- --text2: #7a7d95;
13
- --text3: #4a4d65;
14
- --danger: #e74c3c;
15
- --green: #2ecc71;
16
- --radius: 10px;
17
- --topbar-h: 44px;
2
+ --bg: #081d2a;
3
+ --bg2: #111116;
4
+ --bg3: #15151b;
5
+ --bg4: #1b1b25;
6
+ --bg5: #242434;
7
+ --sidebar: #202432;
8
+ --sidebar2: #1b2030;
9
+ --border: #262633;
10
+ --border2: #30243a;
11
+ --accent: #c10cff;
12
+ --accent2: #8a35e8;
13
+ --accent-dim: rgba(193, 12, 255, .22);
14
+ --gold: var(--accent);
15
+ --gold-dim: rgba(193, 12, 255, .18);
16
+ --text: #f2f2f6;
17
+ --text2: #a7a2b7;
18
+ --text3: #686477;
19
+ --danger: #f15d62;
20
+ --green: #52e37c;
21
+ --panel-w: min(1120px, 92vw);
22
+ --panel-h: min(720px, 78dvh);
23
+ --radius: 6px;
18
24
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
19
25
  }
20
26
 
21
27
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
22
28
 
29
+ html, body { min-height: 100%; }
30
+
23
31
  body {
24
32
  font-family: var(--font);
25
- background: var(--bg);
26
33
  color: var(--text);
27
34
  height: 100dvh;
28
35
  overflow: hidden;
@@ -31,345 +38,871 @@ body {
31
38
  -webkit-tap-highlight-color: transparent;
32
39
  display: flex;
33
40
  flex-direction: column;
34
- }
35
-
36
- ::-webkit-scrollbar { width: 3px; }
41
+ align-items: center;
42
+ justify-content: center;
43
+ padding: 18px;
44
+ background:
45
+ linear-gradient(118deg, transparent 0 18%, rgba(12, 115, 157, .62) 18% 31%, transparent 31% 100%),
46
+ linear-gradient(152deg, transparent 0 58%, rgba(5, 61, 86, .88) 58% 72%, transparent 72% 100%),
47
+ linear-gradient(23deg, rgba(16, 134, 178, .78) 0 38%, transparent 38% 100%),
48
+ #063345;
49
+ }
50
+
51
+ body::before,
52
+ body::after {
53
+ content: '';
54
+ position: fixed;
55
+ inset: 0;
56
+ pointer-events: none;
57
+ z-index: -1;
58
+ }
59
+ body::before {
60
+ background:
61
+ linear-gradient(108deg, rgba(2, 33, 48, .9) 0 17%, transparent 17% 100%),
62
+ linear-gradient(112deg, transparent 0 72%, rgba(16, 100, 133, .7) 72% 100%),
63
+ linear-gradient(18deg, rgba(13, 88, 119, .64) 0 22%, transparent 22% 100%);
64
+ }
65
+ body::after {
66
+ background:
67
+ linear-gradient(72deg, transparent 0 64%, rgba(4, 34, 48, .9) 64% 82%, transparent 82%),
68
+ linear-gradient(14deg, transparent 0 58%, rgba(0, 20, 31, .78) 58% 100%);
69
+ opacity: .92;
70
+ }
71
+
72
+ ::-webkit-scrollbar { width: 4px; height: 4px; }
37
73
  ::-webkit-scrollbar-track { background: transparent; }
38
- ::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 2px; }
74
+ ::-webkit-scrollbar-thumb { background: #343146; border-radius: 2px; }
39
75
 
40
- /* ===== APP ===== */
41
- #app { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
76
+ #app {
77
+ width: var(--panel-w);
78
+ height: var(--panel-h);
79
+ min-height: 520px;
80
+ display: flex;
81
+ overflow: hidden;
82
+ background: rgba(16, 16, 21, .96);
83
+ border: 1px solid rgba(73, 58, 88, .55);
84
+ border-radius: var(--radius);
85
+ box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
86
+ }
42
87
 
43
- /* ===== DESKTOP SIDEBAR ===== */
44
88
  #sidebar {
45
- width: 56px; background: var(--bg2); border-right: 1px solid var(--border);
46
- display: flex; flex-direction: column; align-items: center;
47
- padding: 12px 0; flex-shrink: 0; z-index: 10; gap: 2px;
89
+ width: 210px;
90
+ flex: 0 0 210px;
91
+ background: linear-gradient(180deg, var(--sidebar), var(--sidebar2));
92
+ border-right: 1px solid #2b2a39;
93
+ display: flex;
94
+ flex-direction: column;
95
+ overflow: hidden;
48
96
  }
49
97
 
50
- #sidebar .tab-btn {
51
- width: 38px; height: 38px; border: none; background: transparent;
52
- color: var(--text3); border-radius: 10px; cursor: pointer;
53
- display: flex; align-items: center; justify-content: center;
54
- transition: all 0.2s; position: relative;
98
+ .brand {
99
+ height: 70px;
100
+ display: flex;
101
+ align-items: center;
102
+ padding: 0 28px;
103
+ color: #f9f9ff;
104
+ font-size: 25px;
105
+ font-weight: 900;
106
+ letter-spacing: .5px;
107
+ }
108
+
109
+ .nav-scroll {
110
+ flex: 1;
111
+ overflow-y: auto;
112
+ padding: 8px 10px 18px;
113
+ }
114
+
115
+ .nav-group { margin-bottom: 18px; }
116
+ .nav-heading {
117
+ padding: 0 4px 8px;
118
+ color: #55596d;
119
+ font-size: 12px;
120
+ line-height: 1;
121
+ font-weight: 900;
122
+ letter-spacing: .2px;
123
+ }
124
+
125
+ .tab-btn {
126
+ width: 100%;
127
+ height: 40px;
128
+ border: 0;
129
+ border-radius: 4px;
130
+ background: transparent;
131
+ color: #6f7287;
132
+ cursor: pointer;
133
+ display: flex;
134
+ align-items: center;
135
+ gap: 14px;
136
+ padding: 0 12px;
137
+ position: relative;
138
+ font-family: var(--font);
139
+ font-size: 13px;
140
+ font-weight: 800;
141
+ transition: background .15s ease, color .15s ease;
142
+ }
143
+
144
+ .tab-btn svg {
145
+ width: 18px;
146
+ height: 18px;
147
+ stroke: currentColor;
148
+ fill: none;
149
+ stroke-width: 1.9;
150
+ stroke-linecap: round;
151
+ stroke-linejoin: round;
152
+ }
153
+
154
+ .tab-btn:hover { color: #c9c6d7; background: rgba(255,255,255,.025); }
155
+ .tab-btn.active {
156
+ color: #fff;
157
+ background: rgba(255,255,255,.045);
158
+ }
159
+ .tab-btn.active::after {
160
+ content: '';
161
+ position: absolute;
162
+ top: 8px;
163
+ bottom: 8px;
164
+ right: 0;
165
+ width: 4px;
166
+ border-radius: 3px 0 0 3px;
167
+ background: var(--accent);
168
+ box-shadow: 0 0 16px rgba(193, 12, 255, .75);
169
+ }
170
+
171
+ #content {
172
+ min-width: 0;
173
+ flex: 1;
174
+ display: flex;
175
+ flex-direction: column;
176
+ overflow: hidden;
177
+ background: rgba(18, 18, 23, .94);
55
178
  }
56
179
 
57
- #sidebar .tab-btn svg {
58
- width: 18px; height: 18px; stroke: currentColor;
59
- fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
180
+ #topbar {
181
+ height: 70px;
182
+ flex: 0 0 70px;
183
+ display: flex;
184
+ align-items: center;
185
+ gap: 18px;
186
+ padding: 0 22px;
187
+ border-bottom: 1px solid #25242e;
188
+ background: #141419;
60
189
  }
61
190
 
62
- #sidebar .tab-btn:hover { color: var(--text); background: var(--bg3); }
63
- #sidebar .tab-btn.active {
64
- color: var(--gold); background: linear-gradient(135deg, #f0b90b22, transparent);
65
- box-shadow: 0 0 14px var(--gold-glow);
66
- }
67
- #sidebar .tab-btn.active::before {
68
- content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
69
- width: 3px; background: var(--gold); border-radius: 0 3px 3px 0;
191
+ .top-title {
192
+ min-width: 164px;
193
+ display: flex;
194
+ align-items: center;
195
+ gap: 12px;
196
+ }
197
+ .tb-icon {
198
+ color: #6e7284;
199
+ display: inline-flex;
200
+ }
201
+ .tb-icon svg {
202
+ width: 18px;
203
+ height: 18px;
204
+ stroke: currentColor;
205
+ fill: none;
206
+ stroke-width: 1.9;
207
+ }
208
+ .top-primary {
209
+ display: block;
210
+ font-size: 19px;
211
+ font-weight: 800;
212
+ color: #5e6070;
213
+ }
214
+ .top-secondary {
215
+ display: block;
216
+ margin-top: 1px;
217
+ color: #b9b5c6;
218
+ font-size: 11px;
219
+ font-weight: 800;
220
+ text-transform: uppercase;
221
+ letter-spacing: .5px;
222
+ }
223
+
224
+ .sub-tabs {
225
+ flex: 1;
226
+ min-width: 0;
227
+ display: flex;
228
+ align-items: center;
229
+ gap: 6px;
230
+ overflow-x: auto;
231
+ padding: 6px 0;
232
+ }
233
+ .sub-tab {
234
+ min-width: max-content;
235
+ border: 1px solid transparent;
236
+ border-radius: 4px;
237
+ background: transparent;
238
+ color: #6c6978;
239
+ padding: 7px 10px;
240
+ cursor: pointer;
241
+ font-family: var(--font);
242
+ font-size: 12px;
243
+ font-weight: 800;
244
+ }
245
+ .sub-tab.active {
246
+ color: #fff;
247
+ border-color: rgba(193, 12, 255, .3);
248
+ background: rgba(193, 12, 255, .08);
249
+ }
250
+ .profile-dot {
251
+ width: 36px;
252
+ height: 36px;
253
+ flex: 0 0 36px;
254
+ border-radius: 50%;
255
+ display: grid;
256
+ place-items: center;
257
+ color: #17171d;
258
+ background: radial-gradient(circle at 35% 25%, #fff, #e8e8ef 42%, #bfc0ca 100%);
259
+ font-weight: 900;
260
+ box-shadow: inset 0 0 0 1px rgba(0,0,0,.16);
70
261
  }
71
262
 
72
- /* ===== CONTENT ===== */
73
- #content { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
74
-
75
- /* ===== TOPBAR ===== */
76
- #topbar {
77
- height: var(--topbar-h); background: var(--bg2); border-bottom: 1px solid var(--border);
78
- display: flex; align-items: center; padding: 0 16px; flex-shrink: 0; gap: 6px; overflow: hidden;
79
- }
80
- #topbar .tb-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }
81
- #topbar .title { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
82
- #topbar .sep { color: var(--text3); margin: 0 2px; }
83
- #topbar .sub { color: var(--gold); font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
84
- #topbar select {
85
- margin-left: auto; background: var(--bg3); border: 1px solid var(--border);
86
- color: var(--text2); padding: 4px 8px; border-radius: 6px; font-size: 11px;
87
- font-family: var(--font); cursor: pointer; outline: none; max-width: 110px; flex-shrink: 0;
263
+ #pages {
264
+ flex: 1;
265
+ overflow-y: auto;
266
+ overflow-x: hidden;
267
+ padding: 20px;
268
+ display: grid;
269
+ grid-template-columns: repeat(2, minmax(250px, 1fr));
270
+ grid-auto-rows: max-content;
271
+ gap: 20px;
272
+ align-content: start;
88
273
  }
89
- #topbar select:focus { border-color: var(--gold); color: var(--text); }
90
274
 
91
- /* ===== PAGES ===== */
92
- #pages {
93
- flex: 1; overflow-y: auto; overflow-x: hidden; padding: 12px;
94
- display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
95
- gap: 10px; align-content: start;
275
+ #pages.has-preview {
276
+ grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.08fr);
96
277
  }
97
278
 
98
- /* ===== CARD ===== */
99
279
  .child {
100
- background: var(--bg2); border: 1px solid var(--border);
101
- border-radius: var(--radius); padding: 14px;
102
- transition: border-color 0.2s, box-shadow 0.2s;
103
- }
104
- .child:hover { border-color: var(--bg4); }
280
+ min-width: 0;
281
+ background: rgba(21, 21, 27, .72);
282
+ border: 1px solid rgba(55, 42, 66, .75);
283
+ border-top-color: rgba(193, 12, 255, .8);
284
+ border-radius: 8px;
285
+ padding: 18px 18px 16px;
286
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
287
+ }
288
+ .child:hover { border-color: rgba(91, 70, 106, .9); border-top-color: rgba(193, 12, 255, 1); }
105
289
  .child h3 {
106
- font-size: 9px; text-transform: uppercase; color: var(--gold);
107
- margin-bottom: 12px; letter-spacing: 2px; font-weight: 700;
108
- display: flex; align-items: center; gap: 8px;
290
+ font-size: 12px;
291
+ color: #6f6b79;
292
+ margin-bottom: 16px;
293
+ font-weight: 900;
294
+ letter-spacing: .1px;
295
+ }
296
+ .empty-state {
297
+ grid-column: 1 / -1;
298
+ min-height: 220px;
299
+ display: grid;
300
+ place-items: center;
301
+ color: var(--text3);
109
302
  }
110
- .child h3::after { content: ''; flex: 1; height: 1px; background: var(--border); }
111
303
 
112
- /* ===== CONTROL ===== */
113
304
  .ctrl {
114
- margin-bottom: 8px; display: flex; align-items: center;
115
- justify-content: space-between; gap: 10px; min-height: 34px;
305
+ min-height: 38px;
306
+ display: flex;
307
+ align-items: center;
308
+ justify-content: space-between;
309
+ gap: 16px;
310
+ margin-bottom: 10px;
116
311
  }
312
+ .ctrl:last-child { margin-bottom: 0; }
117
313
  .ctrl > label:not(.tgl) {
118
- font-size: 12px; color: var(--text2); flex: 1 1 auto;
119
- min-width: 0; line-height: 1.3; transition: color 0.15s;
120
- overflow: hidden; text-overflow: ellipsis;
314
+ min-width: 0;
315
+ color: #666371;
316
+ font-size: 13px;
317
+ line-height: 1.25;
318
+ font-weight: 800;
319
+ overflow: hidden;
320
+ text-overflow: ellipsis;
321
+ white-space: nowrap;
121
322
  }
122
- .ctrl:hover > label:not(.tgl) { color: var(--text); }
323
+ .ctrl:hover > label:not(.tgl) { color: #aaa6b8; }
123
324
 
124
- /* ===== PREMIUM TOGGLE ===== */
125
325
  .tgl {
126
- position: relative; width: 46px; height: 28px; flex: 0 0 46px;
127
- display: inline-flex; align-items: center; justify-content: center;
128
- }
129
- .tgl input { opacity: 0; width: 0; height: 0; }
326
+ width: 34px;
327
+ height: 20px;
328
+ flex: 0 0 34px;
329
+ position: relative;
330
+ display: inline-flex;
331
+ align-items: center;
332
+ }
333
+ .tgl input { opacity: 0; width: 0; height: 0; position: absolute; }
130
334
  .tgl .track {
131
- position: absolute; cursor: pointer; top: 2px; left: 2px; right: 2px; bottom: 2px;
132
- display: flex; align-items: center; padding: 0 3px;
133
- background: #151625; border-radius: 999px; transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
134
- border: 1px solid #262942; overflow: hidden;
135
- box-shadow: inset 0 1px 2px rgba(0,0,0,.45);
136
- }
137
- .tgl .track::before {
138
- content: ''; position: absolute; inset: 0;
139
- background: radial-gradient(circle at 80% 50%, #f0b90b55, transparent 55%);
140
- opacity: 0; transition: opacity 0.2s ease;
335
+ position: absolute;
336
+ inset: 0;
337
+ cursor: pointer;
338
+ border-radius: 999px;
339
+ background: #222433;
340
+ border: 1px solid #2c2d40;
341
+ transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
141
342
  }
142
343
  .tgl .knob {
143
- position: relative; height: 18px; width: 18px; flex: 0 0 18px;
144
- background: #767b94; border-radius: 50%; transition: transform 0.22s cubic-bezier(.4,0,.2,1), background 0.2s ease, box-shadow 0.2s ease;
145
- z-index: 1; box-shadow: 0 2px 6px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
344
+ position: absolute;
345
+ left: 3px;
346
+ top: 50%;
347
+ width: 12px;
348
+ height: 12px;
349
+ border-radius: 50%;
350
+ background: #595e74;
351
+ transform: translateY(-50%);
352
+ transition: transform .18s ease, background .18s ease;
146
353
  }
147
- .tgl:hover .track { border-color: #343852; }
148
354
  .tgl input:checked + .track {
149
- background: #19180f; border-color: #d4a00c;
150
- box-shadow: inset 0 1px 2px rgba(0,0,0,.4), 0 0 0 1px #f0b90b20, 0 4px 12px #f0b90b18;
355
+ background: #2b1342;
356
+ border-color: rgba(193, 12, 255, .58);
357
+ box-shadow: 0 0 12px rgba(193, 12, 255, .3);
151
358
  }
152
- .tgl input:checked + .track::before { opacity: 1; }
153
- .tgl input:checked + .track .knob,
154
- .tgl input:checked ~ .knob {
155
- transform: translateX(18px); background: var(--gold);
156
- box-shadow: 0 2px 8px #0009, 0 0 10px #f0b90b55, inset 0 1px 0 rgba(255,255,255,.35);
157
- }
158
- .tgl input:disabled + .track { opacity: 0.4; cursor: not-allowed; }
359
+ .tgl input:checked + .track .knob { transform: translate(14px, -50%); background: var(--accent); }
159
360
 
160
- /* ===== PREMIUM SLIDER ===== */
361
+ .range-ctrl { align-items: flex-start; flex-direction: column; gap: 8px; }
161
362
  .rng {
162
- display: flex; align-items: center; gap: 8px; flex-shrink: 0;
363
+ width: 100%;
364
+ display: grid;
365
+ grid-template-columns: 44px 1fr;
366
+ align-items: center;
367
+ gap: 12px;
368
+ }
369
+ .rng-val {
370
+ color: #6f6b79;
371
+ font-size: 12px;
372
+ font-weight: 900;
373
+ text-align: right;
374
+ font-variant-numeric: tabular-nums;
163
375
  }
164
376
  .rng input[type=range] {
165
- -webkit-appearance: none; width: 90px; height: 6px;
166
- background: var(--bg4); border-radius: 3px; outline: none;
377
+ -webkit-appearance: none;
378
+ width: 100%;
379
+ height: 6px;
380
+ background: #111118;
381
+ border-radius: 999px;
382
+ outline: none;
167
383
  }
168
384
  .rng input[type=range]::-webkit-slider-thumb {
169
- -webkit-appearance: none; width: 18px; height: 18px;
170
- background: var(--gold); border-radius: 50%; cursor: pointer;
171
- box-shadow: 0 0 10px var(--gold-glow); transition: transform 0.15s;
172
- }
173
- .rng input[type=range]::-webkit-slider-thumb:active { transform: scale(1.3); }
174
- .rng .rng-val {
175
- font-size: 11px; color: var(--gold); font-weight: 700;
176
- min-width: 28px; text-align: right; flex-shrink: 0;
177
- font-variant-numeric: tabular-nums;
178
- }
179
-
180
- /* ===== INPUTS ===== */
181
- .ctrl input[type=text], .ctrl input[type=number] {
182
- background: var(--bg3); border: 1px solid var(--border); color: var(--text);
183
- padding: 5px 8px; border-radius: 6px; font-size: 12px; font-family: var(--font);
184
- width: 64px; text-align: center; outline: none; transition: border-color 0.15s;
185
- }
186
- .ctrl input:focus { border-color: var(--gold); }
187
-
385
+ -webkit-appearance: none;
386
+ width: 16px;
387
+ height: 16px;
388
+ border-radius: 50%;
389
+ background: #6e5a86;
390
+ border: 0;
391
+ cursor: pointer;
392
+ box-shadow: 0 0 0 3px rgba(193, 12, 255, .1);
393
+ }
394
+ .rng input[type=range]:active::-webkit-slider-thumb { background: var(--accent); }
395
+
396
+ .ctrl input[type=text],
397
+ .ctrl input[type=number],
188
398
  .ctrl select {
189
- background: var(--bg3); border: 1px solid var(--border); color: var(--text2);
190
- padding: 5px 8px; border-radius: 6px; font-size: 11px; font-family: var(--font);
191
- cursor: pointer; outline: none; max-width: 120px;
399
+ min-width: 130px;
400
+ max-width: 170px;
401
+ height: 34px;
402
+ border: 1px solid #1c1c25;
403
+ border-radius: 4px;
404
+ background: #18181f;
405
+ color: #d8d5e3;
406
+ font: 800 12px var(--font);
407
+ outline: none;
408
+ padding: 0 10px;
409
+ }
410
+ .ctrl select { color: #787485; cursor: pointer; }
411
+ .ctrl input:focus,
412
+ .ctrl select:focus { border-color: rgba(193, 12, 255, .75); }
413
+
414
+ .color-actions {
415
+ display: flex;
416
+ align-items: center;
417
+ gap: 10px;
192
418
  }
193
- .ctrl select:focus { border-color: var(--gold); color: var(--text); }
194
-
195
- /* ===== COLOR PICKER ===== */
196
419
  .clr-btn {
197
- width: 28px; height: 28px; border-radius: 7px; border: 2px solid var(--border);
198
- cursor: pointer; flex-shrink: 0; transition: border-color 0.15s; position: relative;
199
- overflow: hidden; display: inline-block;
200
- }
201
- .clr-btn:hover { border-color: var(--gold); }
202
- .clr-btn input[type=color] {
203
- opacity: 0; position: absolute; inset: -4px; cursor: pointer;
204
- }
205
- .clr-btn .swatch {
206
- width: 100%; height: 100%; border-radius: 4px;
420
+ width: 24px;
421
+ height: 24px;
422
+ flex: 0 0 24px;
423
+ border: 0;
424
+ border-radius: 4px;
425
+ cursor: pointer;
426
+ position: relative;
427
+ overflow: hidden;
428
+ display: inline-block;
429
+ box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 14px rgba(193, 12, 255, .15);
207
430
  }
431
+ .clr-btn input[type=color] { opacity: 0; position: absolute; inset: -4px; cursor: pointer; }
432
+ .clr-btn .swatch { width: 100%; height: 100%; display: block; }
208
433
 
209
- /* ===== KEYBIND BUTTON ===== */
210
434
  .key-btn {
211
- background: var(--bg3); border: 1px solid var(--border); color: var(--text2);
212
- padding: 5px 12px; border-radius: 6px; font-size: 11px; font-family: var(--font);
213
- cursor: pointer; min-width: 48px; text-align: center; transition: all 0.15s; flex-shrink: 0;
214
- font-weight: 600;
435
+ min-width: 62px;
436
+ height: 32px;
437
+ border: 1px solid #1c1c25;
438
+ border-radius: 4px;
439
+ background: #18181f;
440
+ color: #d8d5e3;
441
+ cursor: pointer;
442
+ font: 900 12px var(--font);
215
443
  }
216
- .key-btn:hover { color: var(--text); border-color: var(--bg5); }
217
444
  .key-btn.listening {
218
- color: var(--gold); border-color: var(--gold);
219
- box-shadow: 0 0 12px var(--gold-glow);
220
- animation: key-pulse 0.8s infinite;
445
+ color: #fff;
446
+ border-color: var(--accent);
447
+ box-shadow: 0 0 16px rgba(193, 12, 255, .35);
221
448
  }
222
- @keyframes key-pulse { 0%,100%{ box-shadow: 0 0 4px var(--gold-glow); } 50%{ box-shadow: 0 0 18px var(--gold-glow); } }
223
449
 
224
- /* ===== STATUS BAR ===== */
225
450
  #statusbar {
226
- display: flex; align-items: center; gap: 8px;
227
- padding: 6px 14px; background: var(--bg2); border-top: 1px solid var(--border);
228
- font-size: 11px; color: var(--text2); flex-shrink: 0; z-index: 20;
451
+ width: var(--panel-w);
452
+ min-height: 42px;
453
+ display: flex;
454
+ align-items: center;
455
+ gap: 10px;
456
+ margin-top: 8px;
457
+ padding: 0 14px;
458
+ border: 1px solid rgba(73, 58, 88, .55);
459
+ border-radius: var(--radius);
460
+ background: rgba(17, 17, 22, .94);
461
+ color: #716f80;
462
+ font-size: 12px;
229
463
  }
230
464
  #statusbar .s-dot {
231
- width: 7px; height: 7px; border-radius: 50%; background: var(--text3); flex-shrink: 0;
232
- }
233
- #statusbar .s-dot.live {
234
- background: var(--green); box-shadow: 0 0 8px #2ecc7188;
235
- animation: dot-pulse 1.5s infinite;
236
- }
237
- @keyframes dot-pulse { 0%,100%{ opacity: 1; } 50%{ opacity: 0.3; } }
238
- #statusbar .s-text { flex: 1; font-size: 11px; }
465
+ width: 8px;
466
+ height: 8px;
467
+ border-radius: 50%;
468
+ background: #5b5a68;
469
+ flex: 0 0 8px;
470
+ }
471
+ #statusbar .s-dot.live { background: var(--green); box-shadow: 0 0 10px rgba(82, 227, 124, .6); }
472
+ #statusbar .s-text { flex: 1; font-weight: 800; }
239
473
  #statusbar .s-btn {
240
- padding: 5px 14px; border-radius: 6px; font-size: 11px; font-weight: 700;
241
- font-family: var(--font); cursor: pointer; transition: all 0.15s;
242
- background: linear-gradient(135deg, var(--gold), var(--gold2));
243
- color: #0a0a0a; border: none; letter-spacing: 0.3px;
244
- }
245
- #statusbar .s-btn:hover { transform: translateY(-1px); box-shadow: 0 3px 12px var(--gold-glow); }
246
- #statusbar .s-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
247
- #statusbar .s-btn.stop {
248
- background: linear-gradient(135deg, var(--danger), #c0392b); color: #fff;
474
+ height: 30px;
475
+ min-width: 78px;
476
+ border: 0;
477
+ border-radius: 4px;
478
+ background: var(--accent);
479
+ color: #fff;
480
+ cursor: pointer;
481
+ font: 900 12px var(--font);
482
+ box-shadow: 0 0 16px rgba(193, 12, 255, .24);
483
+ }
484
+ #statusbar .s-btn:hover { filter: brightness(1.1); }
485
+ #statusbar .s-btn:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; }
486
+ #statusbar .s-btn.stop { background: var(--danger); box-shadow: 0 0 16px rgba(241, 93, 98, .24); }
487
+ #statusbar .kill-btn {
488
+ background: #211827;
489
+ color: #aaa5b8;
490
+ box-shadow: none;
249
491
  }
250
492
 
251
- /* ===== LICENSE ===== */
252
493
  #license-overlay {
253
- position: fixed; inset: 0; background: var(--bg);
254
- display: flex; align-items: center; justify-content: center; z-index: 1000;
255
- }
256
- #license-overlay::before {
257
- content: ''; position: absolute; inset: 0;
258
- background: radial-gradient(ellipse at center, #f0b90b18 0%, transparent 70%);
259
- animation: bg-pulse 3s ease-in-out infinite;
494
+ position: fixed;
495
+ inset: 0;
496
+ display: flex;
497
+ align-items: center;
498
+ justify-content: center;
499
+ z-index: 1000;
500
+ background: rgba(7, 7, 11, .96);
260
501
  }
261
- @keyframes bg-pulse { 0%,100%{ opacity: 0.3; } 50%{ opacity: 0.7; } }
262
-
263
502
  #license-box {
264
- position: relative; background: var(--bg2); border: 1px solid var(--border);
265
- border-radius: 16px; padding: 34px 28px; width: 400px; max-width: 90vw;
266
- text-align: center; box-shadow: 0 0 60px rgba(0,0,0,.5);
267
- }
268
- #license-box .logo-icon { width: 48px; height: 48px; margin: 0 auto 14px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
269
- #license-box h1 { font-size: 20px; font-weight: 700; margin-bottom: 2px; }
270
- #license-box h1 span { color: var(--gold); }
271
- #license-box .subtitle { color: var(--text3); font-size: 12px; margin-bottom: 20px; }
503
+ width: min(410px, calc(100vw - 34px));
504
+ padding: 34px 28px;
505
+ text-align: center;
506
+ background: #141419;
507
+ border: 1px solid rgba(193, 12, 255, .28);
508
+ border-top-color: var(--accent);
509
+ border-radius: 8px;
510
+ box-shadow: 0 24px 70px rgba(0,0,0,.5);
511
+ }
512
+ #license-box .logo-icon { width: 48px; height: 48px; margin: 0 auto 14px; stroke: var(--accent); fill: none; stroke-width: 1.4; }
513
+ #license-box h1 { font-size: 23px; font-weight: 900; margin-bottom: 4px; }
514
+ #license-box h1 span { color: var(--accent); }
515
+ #license-box .subtitle { color: var(--text3); font-size: 12px; margin-bottom: 20px; font-weight: 800; }
272
516
  #license-box input[type=text] {
273
- width: 100%; background: var(--bg3); border: 1px solid var(--border);
274
- color: var(--text); padding: 10px 14px; border-radius: 8px; font-size: 14px;
275
- font-family: var(--font); outline: none; margin-bottom: 12px; text-align: center;
276
- transition: all 0.2s; letter-spacing: 1px;
277
- }
278
- #license-box input[type=text]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px #f0b90b22; }
517
+ width: 100%;
518
+ height: 42px;
519
+ background: #18181f;
520
+ border: 1px solid #262633;
521
+ color: #fff;
522
+ padding: 0 14px;
523
+ border-radius: 4px;
524
+ font: 800 13px var(--font);
525
+ outline: none;
526
+ margin-bottom: 12px;
527
+ text-align: center;
528
+ }
529
+ #license-box input[type=text]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(193, 12, 255, .15); }
279
530
  #license-box button {
280
- width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold2));
281
- color: #0a0a0a; border: none; padding: 10px; border-radius: 8px; font-size: 14px;
282
- font-weight: 700; font-family: var(--font); cursor: pointer; transition: all 0.2s;
283
- }
284
- #license-box button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--gold-glow); }
285
- #license-box button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
286
- #license-box .msg { margin-top: 10px; font-size: 12px; font-weight: 500; min-height: 16px; }
287
- #license-box .msg.ok { color: var(--green); } #license-box .msg.err { color: var(--danger); }
288
-
289
- /* ===== QR OVERLAY ===== */
290
- #qr-overlay{position:fixed;inset:0;background:rgba(5,5,8,0.93);display:none;align-items:center;justify-content:center;z-index:2000}
291
- #qr-overlay.show{display:flex}
292
- #qr-box{background:var(--bg2);border:1px solid var(--border);border-radius:14px;padding:24px;text-align:center;box-shadow:0 0 40px var(--gold-dim);max-width:90vw}
293
- #qr-box canvas{display:block;margin:0 auto;max-width:240px;max-height:240px}
294
-
295
- /* ===== DESKTOP LAYOUT ===== */
296
- @media(min-width:769px) {
297
- #app { flex-direction: row; }
298
- #sidebar { position: sticky; top: 0; height: 100vh; }
299
- }
300
-
301
- /* ===== MOBILE ===== */
302
- @media(max-width:768px) {
303
- body { background: var(--bg); }
304
-
305
- #app { flex-direction: column; }
306
-
307
- /* Bottom tab bar */
531
+ width: 100%;
532
+ height: 40px;
533
+ background: var(--accent);
534
+ color: #fff;
535
+ border: 0;
536
+ border-radius: 4px;
537
+ font: 900 13px var(--font);
538
+ cursor: pointer;
539
+ }
540
+ #license-box button:disabled { opacity: .45; cursor: not-allowed; }
541
+ #license-box .msg { margin-top: 10px; font-size: 12px; font-weight: 800; min-height: 16px; }
542
+ #license-box .msg.ok { color: var(--green); }
543
+ #license-box .msg.err { color: var(--danger); }
544
+
545
+ #qr-overlay {
546
+ position: fixed;
547
+ inset: 0;
548
+ display: none;
549
+ align-items: center;
550
+ justify-content: center;
551
+ z-index: 2000;
552
+ background: rgba(7, 7, 11, .93);
553
+ }
554
+ #qr-overlay.show { display: flex; }
555
+ #qr-box {
556
+ width: min(340px, calc(100vw - 30px));
557
+ background: #141419;
558
+ border: 1px solid rgba(193, 12, 255, .32);
559
+ border-radius: 8px;
560
+ padding: 22px;
561
+ text-align: center;
562
+ box-shadow: 0 24px 70px rgba(0,0,0,.5);
563
+ }
564
+ #qr-box img { width: min(240px, 74vw) !important; height: auto !important; border-radius: 4px !important; }
565
+
566
+ .esp-preview-card {
567
+ grid-column: 2;
568
+ grid-row: 1 / span 2;
569
+ position: sticky;
570
+ top: 0;
571
+ min-height: 430px;
572
+ }
573
+ .esp-stage {
574
+ height: 368px;
575
+ position: relative;
576
+ overflow: hidden;
577
+ border-radius: 6px;
578
+ background:
579
+ linear-gradient(180deg, rgba(38, 41, 58, .82) 0 54%, rgba(24, 33, 28, .92) 54%),
580
+ radial-gradient(circle at 72% 42%, rgba(193, 12, 255, .18), transparent 28%);
581
+ border: 1px solid #222230;
582
+ }
583
+ .esp-grid-bg {
584
+ position: absolute;
585
+ inset: 0;
586
+ background:
587
+ linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
588
+ linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
589
+ background-size: 30px 30px;
590
+ opacity: .35;
591
+ }
592
+ .esp-horizon {
593
+ position: absolute;
594
+ left: -20%;
595
+ right: -20%;
596
+ top: 54%;
597
+ height: 1px;
598
+ background: rgba(255,255,255,.11);
599
+ }
600
+ .esp-crosshair {
601
+ position: absolute;
602
+ left: 50%;
603
+ top: 48%;
604
+ width: 28px;
605
+ height: 28px;
606
+ transform: translate(-50%, -50%);
607
+ border: 1px solid rgba(255,255,255,.2);
608
+ border-radius: 50%;
609
+ }
610
+ .esp-crosshair::before,
611
+ .esp-crosshair::after {
612
+ content: '';
613
+ position: absolute;
614
+ background: rgba(255,255,255,.28);
615
+ }
616
+ .esp-crosshair::before { width: 1px; height: 38px; left: 50%; top: -5px; }
617
+ .esp-crosshair::after { height: 1px; width: 38px; top: 50%; left: -5px; }
618
+ .esp-target {
619
+ position: absolute;
620
+ left: 50%;
621
+ top: 52%;
622
+ width: 98px;
623
+ height: 188px;
624
+ transform: translate(-50%, -50%);
625
+ }
626
+ .esp-target.is-off { opacity: .32; filter: grayscale(.4); }
627
+ .esp-box {
628
+ position: absolute;
629
+ inset: 18px 16px 12px;
630
+ border: var(--esp-thick) dashed var(--esp-color);
631
+ filter: drop-shadow(0 0 7px var(--esp-color));
632
+ }
633
+ .esp-box.solid { border-style: solid; }
634
+ .esp-box.corner { border: 0; }
635
+ .esp-box.corner::before,
636
+ .esp-box.corner::after {
637
+ content: '';
638
+ position: absolute;
639
+ inset: 0;
640
+ background:
641
+ linear-gradient(var(--esp-color), var(--esp-color)) left top / 20px var(--esp-thick) no-repeat,
642
+ linear-gradient(var(--esp-color), var(--esp-color)) left top / var(--esp-thick) 20px no-repeat,
643
+ linear-gradient(var(--esp-color), var(--esp-color)) right top / 20px var(--esp-thick) no-repeat,
644
+ linear-gradient(var(--esp-color), var(--esp-color)) right top / var(--esp-thick) 20px no-repeat,
645
+ linear-gradient(var(--esp-color), var(--esp-color)) left bottom / 20px var(--esp-thick) no-repeat,
646
+ linear-gradient(var(--esp-color), var(--esp-color)) left bottom / var(--esp-thick) 20px no-repeat,
647
+ linear-gradient(var(--esp-color), var(--esp-color)) right bottom / 20px var(--esp-thick) no-repeat,
648
+ linear-gradient(var(--esp-color), var(--esp-color)) right bottom / var(--esp-thick) 20px no-repeat;
649
+ }
650
+ .esp-head {
651
+ position: absolute;
652
+ left: 50%;
653
+ top: 27px;
654
+ width: var(--head-size);
655
+ height: var(--head-size);
656
+ transform: translateX(-50%);
657
+ border: 2px solid var(--esp-color);
658
+ border-radius: 50%;
659
+ filter: drop-shadow(0 0 8px var(--esp-color));
660
+ }
661
+ .esp-skeleton {
662
+ position: absolute;
663
+ left: 50%;
664
+ top: 43px;
665
+ width: 54px;
666
+ height: 112px;
667
+ transform: translateX(-50%);
668
+ }
669
+ .esp-skeleton span {
670
+ position: absolute;
671
+ background: var(--esp-color);
672
+ box-shadow: 0 0 8px var(--esp-color);
673
+ }
674
+ .esp-skeleton.dashed span { background: repeating-linear-gradient(180deg, var(--esp-color) 0 7px, transparent 7px 11px); }
675
+ .esp-skeleton .spine { left: 50%; top: 0; width: var(--esp-thick); height: 72px; transform: translateX(-50%); }
676
+ .esp-skeleton .arms { left: 12px; top: 27px; width: 30px; height: var(--esp-thick); transform: rotate(10deg); }
677
+ .esp-skeleton .leg { bottom: 0; width: var(--esp-thick); height: 54px; transform-origin: top; }
678
+ .esp-skeleton .leg.left { left: 26px; transform: rotate(18deg); }
679
+ .esp-skeleton .leg.right { left: 28px; transform: rotate(-18deg); }
680
+ .esp-bar {
681
+ position: absolute;
682
+ top: 20px;
683
+ bottom: 14px;
684
+ width: 5px;
685
+ background: rgba(0,0,0,.55);
686
+ border-radius: 999px;
687
+ overflow: hidden;
688
+ box-shadow: 0 0 0 1px rgba(255,255,255,.08);
689
+ }
690
+ .esp-bar.health { left: 5px; }
691
+ .esp-bar.armor { right: 5px; }
692
+ .esp-bar span {
693
+ position: absolute;
694
+ left: 0;
695
+ right: 0;
696
+ bottom: 0;
697
+ height: 78%;
698
+ background: var(--esp-color);
699
+ }
700
+ .esp-bar.armor span { height: 54%; }
701
+ .esp-text {
702
+ position: absolute;
703
+ color: var(--esp-color);
704
+ font-size: 11px;
705
+ line-height: 1;
706
+ font-weight: 900;
707
+ white-space: nowrap;
708
+ text-shadow: 0 1px 4px #000, 0 0 8px var(--esp-color);
709
+ }
710
+ .esp-text.top { left: 50%; top: 0; transform: translate(-50%, -100%); }
711
+ .esp-text.bottom { left: 50%; bottom: -2px; transform: translate(-50%, 100%); }
712
+ .esp-text.left-upper { left: 3px; top: 22px; transform: translateX(-100%); }
713
+ .esp-text.right-upper { right: 3px; top: 22px; transform: translateX(100%); }
714
+ .esp-text.left-lower { left: 3px; bottom: 24px; transform: translateX(-100%); }
715
+ .esp-text.right-lower { right: 3px; bottom: 24px; transform: translateX(100%); }
716
+ .esp-line {
717
+ position: absolute;
718
+ left: 50%;
719
+ width: var(--esp-thick);
720
+ height: 38%;
721
+ background: var(--esp-color);
722
+ box-shadow: 0 0 8px var(--esp-color);
723
+ transform-origin: top;
724
+ }
725
+ .esp-line.place-0 { bottom: 0; top: auto; transform: translateX(-50%) rotate(0deg); }
726
+ .esp-line.place-1 { top: 50%; transform: translate(-50%, -4px) rotate(0deg); }
727
+ .esp-line.place-2 { top: 0; transform: translateX(-50%) rotate(0deg); }
728
+ .esp-tracer {
729
+ position: absolute;
730
+ left: 18%;
731
+ top: 82%;
732
+ width: 72%;
733
+ height: var(--esp-thick);
734
+ background: var(--esp-color);
735
+ transform: rotate(-19deg);
736
+ transform-origin: left center;
737
+ box-shadow: 0 0 8px var(--esp-color);
738
+ }
739
+ .esp-offscreen {
740
+ position: absolute;
741
+ right: 26px;
742
+ top: 34px;
743
+ width: 0;
744
+ height: 0;
745
+ border-top: 10px solid transparent;
746
+ border-bottom: 10px solid transparent;
747
+ border-left: 18px solid var(--esp-color);
748
+ filter: drop-shadow(0 0 8px var(--esp-color));
749
+ }
750
+ .esp-caption {
751
+ position: absolute;
752
+ left: 12px;
753
+ bottom: 10px;
754
+ color: #777486;
755
+ font-size: 11px;
756
+ font-weight: 900;
757
+ }
758
+
759
+ @media (max-width: 900px) {
760
+ body {
761
+ padding: 0;
762
+ justify-content: flex-start;
763
+ }
764
+ #app {
765
+ width: 100vw;
766
+ height: calc(100dvh - 48px);
767
+ min-height: 0;
768
+ border: 0;
769
+ border-radius: 0;
770
+ }
308
771
  #sidebar {
309
- width: 100%; height: 52px; flex-direction: row; justify-content: space-around;
310
- align-items: center; padding: 0 2px; border-right: none; border-top: 1px solid var(--border);
311
- order: 2; flex-shrink: 0; gap: 0; overflow-x: auto;
312
- background: var(--bg2);
772
+ width: 74px;
773
+ flex-basis: 74px;
313
774
  }
314
- #sidebar .tab-btn {
315
- width: 40px; height: 40px; min-width: 40px; border-radius: 8px; flex-shrink: 0;
775
+ .brand {
776
+ height: 58px;
777
+ padding: 0;
778
+ justify-content: center;
779
+ font-size: 0;
780
+ letter-spacing: 0;
316
781
  }
317
- #sidebar .tab-btn svg { width: 17px; height: 17px; }
318
- #sidebar .tab-btn.active::before {
319
- left: 4px; right: 4px; top: auto; bottom: -5px;
320
- width: auto; height: 3px; border-radius: 3px 3px 0 0;
782
+ .brand::after {
783
+ content: 'S';
784
+ display: grid;
785
+ place-items: center;
786
+ width: 34px;
787
+ height: 34px;
788
+ border-radius: 50%;
789
+ color: #16161d;
790
+ background: #f3f2f7;
791
+ font-size: 18px;
792
+ font-weight: 900;
321
793
  }
322
-
323
- #content { order: 1; flex: 1; overflow: hidden; }
324
-
325
- #topbar { height: 40px; padding: 0 10px; gap: 4px; }
326
- #topbar .title { font-size: 12px; }
327
- #topbar .sub { font-size: 11px; }
328
- #topbar select { max-width: 90px; font-size: 10px; padding: 3px 6px; }
329
-
330
- #pages {
331
- padding: 10px; grid-template-columns: 1fr; gap: 10px;
794
+ .nav-scroll { padding: 6px; }
795
+ .nav-heading {
796
+ display: none;
797
+ }
798
+ .tab-btn {
799
+ width: 58px;
800
+ height: 50px;
801
+ padding: 0;
802
+ justify-content: center;
803
+ gap: 0;
804
+ margin-bottom: 4px;
805
+ }
806
+ .tab-label { display: none; }
807
+ #topbar {
808
+ height: auto;
809
+ min-height: 64px;
810
+ padding: 10px 12px;
811
+ flex-wrap: wrap;
812
+ gap: 8px;
813
+ }
814
+ .top-title {
815
+ min-width: 0;
816
+ flex: 1 1 auto;
817
+ }
818
+ .top-primary { font-size: 16px; }
819
+ .profile-dot { width: 32px; height: 32px; flex-basis: 32px; }
820
+ .sub-tabs {
821
+ order: 3;
822
+ flex: 0 0 100%;
823
+ gap: 4px;
824
+ }
825
+ .sub-tab {
826
+ padding: 7px 9px;
827
+ font-size: 11px;
828
+ }
829
+ #pages,
830
+ #pages.has-preview {
831
+ grid-template-columns: 1fr;
832
+ gap: 12px;
833
+ padding: 12px;
834
+ }
835
+ .child {
836
+ padding: 15px 14px;
837
+ }
838
+ .ctrl {
839
+ min-height: 42px;
840
+ gap: 12px;
332
841
  }
333
-
334
- .child { padding: 13px 12px; border-radius: 8px; }
335
- .child h3 { font-size: 9px; margin-bottom: 12px; letter-spacing: 1.4px; }
336
-
337
- .ctrl { margin-bottom: 8px; min-height: 38px; gap: 10px; }
338
842
  .ctrl > label:not(.tgl) {
339
- font-size: 12px; white-space: normal; overflow: visible;
340
- text-overflow: clip; word-break: break-word;
843
+ white-space: normal;
844
+ overflow: visible;
845
+ text-overflow: clip;
846
+ word-break: break-word;
847
+ font-size: 12px;
341
848
  }
342
-
343
- .tgl { width: 50px; height: 34px; flex-basis: 50px; }
344
- .tgl .track { top: 4px; left: 3px; right: 3px; bottom: 4px; }
345
- .tgl .knob { height: 20px; width: 20px; flex-basis: 20px; }
346
- .tgl input:checked + .track .knob,
347
- .tgl input:checked ~ .knob { transform: translateX(18px); }
348
-
349
- .rng input[type=range] { width: 70px; height: 6px; }
350
- .rng input[type=range]::-webkit-slider-thumb { width: 22px; height: 22px; }
351
- .rng .rng-val { font-size: 12px; }
352
-
353
- .key-btn { padding: 6px 14px; min-width: 52px; font-size: 11px; }
354
-
355
- .clr-btn { width: 32px; height: 32px; }
356
-
357
- #statusbar { order: 3; padding: 5px 10px; font-size: 10px; border-top: none; border-bottom: 1px solid var(--border); }
358
- #statusbar .s-btn { padding: 6px 14px; font-size: 11px; }
359
-
360
- #license-box { padding: 28px 18px; border-radius: 14px; }
361
- #license-box h1 { font-size: 18px; }
362
- #license-box input[type=text] { padding: 12px 12px; font-size: 16px; }
363
- #license-box button { padding: 12px; font-size: 15px; }
364
-
365
- input, select, button { font-size: 16px !important; }
849
+ .ctrl input[type=text],
850
+ .ctrl input[type=number],
851
+ .ctrl select {
852
+ min-width: 112px;
853
+ max-width: 142px;
854
+ font-size: 12px;
855
+ }
856
+ .esp-preview-card {
857
+ grid-row: auto;
858
+ min-height: 390px;
859
+ }
860
+ .esp-stage { height: 330px; }
861
+ #statusbar {
862
+ position: fixed;
863
+ left: 0;
864
+ right: 0;
865
+ bottom: 0;
866
+ width: auto;
867
+ margin: 0;
868
+ min-height: 48px;
869
+ border-left: 0;
870
+ border-right: 0;
871
+ border-bottom: 0;
872
+ border-radius: 0;
873
+ gap: 7px;
874
+ overflow: hidden;
875
+ }
876
+ #statusbar .s-text { flex: 0 0 auto; min-width: 0; }
877
+ #statusbar .s-btn {
878
+ min-width: 52px;
879
+ flex: 0 0 52px;
880
+ height: 32px;
881
+ padding: 0 8px;
882
+ font-size: 10px;
883
+ }
884
+ #statusbar .kill-btn { flex-basis: 46px; min-width: 46px; }
366
885
  }
367
886
 
368
- @media(max-width:380px) {
369
- #sidebar .tab-btn { width: 34px; height: 36px; min-width: 34px; }
370
- #sidebar .tab-btn svg { width: 15px; height: 15px; }
371
- .rng input[type=range] { width: 56px; }
372
- .ctrl { gap: 8px; }
373
- .ctrl > label:not(.tgl) { font-size: 11px; }
374
- .tgl { width: 48px; flex-basis: 48px; }
887
+ @media (max-width: 600px) {
888
+ #sidebar {
889
+ width: 58px;
890
+ flex-basis: 58px;
891
+ }
892
+ .tab-btn {
893
+ width: 44px;
894
+ height: 44px;
895
+ }
896
+ .tab-btn svg { width: 17px; height: 17px; }
897
+ .brand { font-size: 0; }
898
+ #topbar { padding: 9px 10px; }
899
+ .sub-tab { font-size: 10px; padding: 6px 8px; }
900
+ .rng { grid-template-columns: 38px 1fr; gap: 8px; }
901
+ .color-row { align-items: flex-start; }
902
+ .color-actions { flex-shrink: 0; }
903
+ .esp-stage { height: 300px; }
904
+ .esp-preview-card {
905
+ grid-column: auto;
906
+ position: static;
907
+ }
375
908
  }