codex-claude-proxy 1.0.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.
@@ -0,0 +1,791 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
2
+
3
+ [x-cloak] { display: none !important; }
4
+
5
+ :root {
6
+ --color-space-950: #0a0a0f;
7
+ --color-space-900: #0f0f1a;
8
+ --color-space-850: #151522;
9
+ --color-space-800: #1a1a28;
10
+ --color-space-700: #252538;
11
+ --color-space-border: #2a2a3e;
12
+ --color-neon-purple: #a855f7;
13
+ --color-neon-cyan: #22d3ee;
14
+ --color-neon-green: #22c55e;
15
+ --color-neon-yellow: #eab308;
16
+ --color-text-dim: #9ca3af;
17
+ --color-surface-glow: rgba(34, 211, 238, 0.06);
18
+ }
19
+
20
+ * { margin: 0; padding: 0; box-sizing: border-box; }
21
+
22
+ body {
23
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
24
+ background:
25
+ radial-gradient(circle at 20% -10%, rgba(34, 211, 238, 0.08), transparent 35%),
26
+ radial-gradient(circle at 80% -20%, rgba(168, 85, 247, 0.1), transparent 40%),
27
+ var(--color-space-950);
28
+ color: #e5e7eb;
29
+ min-height: 100vh;
30
+ -webkit-font-smoothing: antialiased;
31
+ }
32
+
33
+ body::before {
34
+ content: "";
35
+ position: fixed;
36
+ inset: 0;
37
+ pointer-events: none;
38
+ background: linear-gradient(to bottom, rgba(255, 255, 255, 0.015), transparent 20%);
39
+ }
40
+
41
+ .font-mono { font-family: 'JetBrains Mono', monospace; }
42
+
43
+ .bg-space-950 { background-color: var(--color-space-950); }
44
+ .bg-space-900 { background-color: var(--color-space-900); }
45
+ .bg-space-850 { background-color: var(--color-space-850); }
46
+ .bg-space-800 { background-color: var(--color-space-800); }
47
+ .bg-space-700 { background-color: var(--color-space-700); }
48
+ .bg-space-border { background-color: var(--color-space-border); }
49
+
50
+ .border-space-border { border-color: var(--color-space-border); }
51
+
52
+ .text-neon-purple { color: var(--color-neon-purple); }
53
+ .text-neon-cyan { color: var(--color-neon-cyan); }
54
+ .text-neon-green { color: var(--color-neon-green); }
55
+ .text-neon-yellow { color: var(--color-neon-yellow); }
56
+
57
+ .bg-neon-purple { background-color: var(--color-neon-purple); }
58
+ .bg-neon-cyan { background-color: var(--color-neon-cyan); }
59
+ .bg-neon-green { background-color: var(--color-neon-green); }
60
+
61
+ .border-neon-purple { border-color: var(--color-neon-purple); }
62
+ .border-neon-cyan { border-color: var(--color-neon-cyan); }
63
+ .border-neon-green { border-color: var(--color-neon-green); }
64
+
65
+ .shadow-neon-purple { --tw-shadow-color: rgba(168, 85, 247, 0.4); box-shadow: 0 0 15px var(--tw-shadow-color); }
66
+
67
+ .nav-item {
68
+ background: transparent;
69
+ color: #9ca3af;
70
+ border-right: 2px solid transparent;
71
+ }
72
+
73
+ .nav-item.active {
74
+ background: rgba(168, 85, 247, 0.1);
75
+ color: white;
76
+ border-right: 2px solid var(--color-neon-purple);
77
+ }
78
+
79
+ .nav-item:hover {
80
+ background: rgba(255, 255, 255, 0.05);
81
+ color: white;
82
+ }
83
+
84
+ .view-container {
85
+ padding: 1.5rem;
86
+ max-width: 1400px;
87
+ margin: 0 auto;
88
+ }
89
+
90
+ @media (min-width: 1024px) {
91
+ .view-container { padding: 2rem; }
92
+ }
93
+
94
+ .view-card {
95
+ background: linear-gradient(180deg, rgba(18, 18, 30, 0.85), rgba(12, 12, 20, 0.78));
96
+ border: 1px solid rgba(42, 42, 62, 0.5);
97
+ border-radius: 0.75rem;
98
+ padding: 1.5rem;
99
+ backdrop-filter: blur(12px);
100
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 36px rgba(0, 0, 0, 0.36);
101
+ }
102
+
103
+ .stat {
104
+ position: relative;
105
+ }
106
+
107
+ .stat-value {
108
+ line-height: 1.2;
109
+ }
110
+
111
+ .stat-title {
112
+ letter-spacing: 0.05em;
113
+ }
114
+
115
+ .stat-desc {
116
+ letter-spacing: 0.02em;
117
+ }
118
+
119
+ .alert {
120
+ display: flex;
121
+ align-items: center;
122
+ gap: 0.75rem;
123
+ padding: 1rem;
124
+ border-radius: 0.5rem;
125
+ }
126
+
127
+ .alert-info { background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.2); }
128
+ .alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); }
129
+ .alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); }
130
+ .alert-warning { background: rgba(234, 179, 8, 0.1); border: 1px solid rgba(234, 179, 8, 0.2); }
131
+
132
+ .btn {
133
+ display: inline-flex;
134
+ align-items: center;
135
+ justify-content: center;
136
+ gap: 0.5rem;
137
+ font-weight: 500;
138
+ border-radius: 0.375rem;
139
+ transition: all 0.15s ease;
140
+ cursor: pointer;
141
+ border: 1px solid transparent;
142
+ background-color: transparent;
143
+ color: #9ca3af;
144
+ }
145
+
146
+ .btn-xs { padding: 0.375rem 0.75rem; font-size: 0.75rem; }
147
+ .btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
148
+ .btn-md { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
149
+
150
+ .btn-ghost {
151
+ background: transparent;
152
+ color: #9ca3af;
153
+ border-color: transparent;
154
+ }
155
+ .btn-ghost:hover { background: rgba(255, 255, 255, 0.05); color: white; }
156
+
157
+ .btn-outline {
158
+ background: transparent;
159
+ color: #9ca3af;
160
+ border-color: rgba(42, 42, 62, 0.8);
161
+ }
162
+ .btn-outline:hover { background: rgba(255, 255, 255, 0.05); color: white; border-color: rgba(42, 42, 62, 1); }
163
+
164
+ .btn-primary {
165
+ background: var(--color-neon-purple);
166
+ color: white;
167
+ border-color: var(--color-neon-purple);
168
+ }
169
+ .btn-primary:hover { background: #9333ea; border-color: #9333ea; }
170
+
171
+ .btn-success {
172
+ background: var(--color-neon-green);
173
+ color: white;
174
+ border-color: var(--color-neon-green);
175
+ }
176
+ .btn-success:hover { background: #16a34a; border-color: #16a34a; }
177
+
178
+ .btn-warning {
179
+ background: var(--color-neon-yellow);
180
+ color: black;
181
+ border-color: var(--color-neon-yellow);
182
+ }
183
+ .btn-warning:hover { background: #ca8a04; border-color: #ca8a04; }
184
+
185
+ .btn-danger {
186
+ background: #ef4444;
187
+ color: white;
188
+ border-color: #ef4444;
189
+ }
190
+ .btn-danger:hover { background: #dc2626; border-color: #dc2626; }
191
+
192
+ .btn-square { padding: 0.5rem; }
193
+
194
+ .btn:disabled {
195
+ opacity: 0.5;
196
+ cursor: not-allowed;
197
+ }
198
+
199
+ .btn.loading {
200
+ pointer-events: none;
201
+ opacity: 0.7;
202
+ }
203
+
204
+ .input {
205
+ width: 100%;
206
+ padding: 0.5rem 0.75rem;
207
+ background: var(--color-space-800);
208
+ border: 1px solid var(--color-space-border);
209
+ border-radius: 0.375rem;
210
+ color: white;
211
+ font-size: 0.875rem;
212
+ transition: border-color 0.15s ease;
213
+ }
214
+
215
+ .input:focus {
216
+ outline: none;
217
+ border-color: var(--color-neon-purple);
218
+ }
219
+
220
+ .input-search-sm {
221
+ padding: 0.375rem 0.75rem 0.375rem 2.25rem;
222
+ background: var(--color-space-800);
223
+ border: 1px solid var(--color-space-border);
224
+ border-radius: 0.375rem;
225
+ color: white;
226
+ font-size: 0.75rem;
227
+ }
228
+
229
+ .input-search-sm:focus {
230
+ outline: none;
231
+ border-color: var(--color-neon-purple);
232
+ }
233
+
234
+ .input-search-sm::placeholder {
235
+ color: #6b7280;
236
+ }
237
+
238
+ select {
239
+ background: var(--color-space-800);
240
+ border: 1px solid var(--color-space-border);
241
+ border-radius: 0.375rem;
242
+ color: white;
243
+ padding: 0.375rem 0.75rem;
244
+ font-size: 0.75rem;
245
+ }
246
+
247
+ select:focus {
248
+ outline: none;
249
+ border-color: var(--color-neon-purple);
250
+ }
251
+
252
+ dialog {
253
+ background: transparent;
254
+ color: #e5e7eb;
255
+ }
256
+
257
+ dialog::backdrop {
258
+ background: rgba(0, 0, 0, 0.7);
259
+ backdrop-filter: blur(4px);
260
+ }
261
+
262
+ .modal-box {
263
+ background: var(--color-space-900);
264
+ border: 1px solid var(--color-space-border);
265
+ border-radius: 0.75rem;
266
+ color: #e5e7eb;
267
+ }
268
+
269
+ .modal-backdrop {
270
+ background: transparent;
271
+ }
272
+
273
+ .custom-scrollbar::-webkit-scrollbar {
274
+ width: 6px;
275
+ height: 6px;
276
+ }
277
+
278
+ .custom-scrollbar::-webkit-scrollbar-track {
279
+ background: transparent;
280
+ }
281
+
282
+ .custom-scrollbar::-webkit-scrollbar-thumb {
283
+ background: rgba(42, 42, 62, 0.6);
284
+ border-radius: 3px;
285
+ }
286
+
287
+ .custom-scrollbar::-webkit-scrollbar-thumb:hover {
288
+ background: rgba(42, 42, 62, 0.9);
289
+ }
290
+
291
+ table { width: 100%; border-collapse: collapse; }
292
+
293
+ th { text-align: left; }
294
+
295
+ table tr {
296
+ background: transparent;
297
+ }
298
+
299
+ table tr:hover {
300
+ background: rgba(34, 211, 238, 0.04);
301
+ }
302
+
303
+ table td {
304
+ background: transparent;
305
+ }
306
+
307
+ table button {
308
+ background: transparent;
309
+ }
310
+
311
+ table .btn-outline {
312
+ background: transparent;
313
+ border-color: rgba(42, 42, 62, 0.8);
314
+ color: #9ca3af;
315
+ }
316
+
317
+ table .btn-outline:hover {
318
+ background: rgba(255, 255, 255, 0.05);
319
+ color: white;
320
+ }
321
+
322
+ .animate-spin {
323
+ animation: spin 1s linear infinite;
324
+ }
325
+
326
+ @keyframes spin {
327
+ from { transform: rotate(0deg); }
328
+ to { transform: rotate(360deg); }
329
+ }
330
+
331
+ .animate-pulse {
332
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
333
+ }
334
+
335
+ @keyframes pulse {
336
+ 0%, 100% { opacity: 1; }
337
+ 50% { opacity: 0.5; }
338
+ }
339
+
340
+ .animate-fade-in {
341
+ animation: fadeIn 0.3s ease;
342
+ }
343
+
344
+ @keyframes fadeIn {
345
+ from { opacity: 0; }
346
+ to { opacity: 1; }
347
+ }
348
+
349
+ .transition-all { transition: all 0.15s ease; }
350
+ .transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
351
+ .transition-transform { transition: transform 0.15s ease; }
352
+
353
+ .duration-300 { transition-duration: 300ms; }
354
+ .duration-200 { transition-duration: 200ms; }
355
+
356
+ .truncate {
357
+ overflow: hidden;
358
+ text-overflow: ellipsis;
359
+ white-space: nowrap;
360
+ }
361
+
362
+ .flex { display: flex; }
363
+ .inline-flex { display: inline-flex; }
364
+ .inline-block { display: inline-block; }
365
+ .block { display: block; }
366
+ .hidden { display: none; }
367
+ .flex-col { flex-direction: column; }
368
+ .flex-wrap { flex-wrap: wrap; }
369
+ .flex-1 { flex: 1 1 0%; }
370
+ .flex-shrink-0 { flex-shrink: 0; }
371
+ .items-center { align-items: center; }
372
+ .items-start { align-items: flex-start; }
373
+ .justify-center { justify-content: center; }
374
+ .justify-between { justify-content: space-between; }
375
+ .justify-end { justify-content: flex-end; }
376
+ .gap-1 { gap: 0.25rem; }
377
+ .gap-1\.5 { gap: 0.375rem; }
378
+ .gap-2 { gap: 0.5rem; }
379
+ .gap-3 { gap: 0.75rem; }
380
+ .gap-4 { gap: 1rem; }
381
+ .gap-6 { gap: 1.5rem; }
382
+
383
+ .relative { position: relative; }
384
+ .absolute { position: absolute; }
385
+ .fixed { position: fixed; }
386
+ .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
387
+
388
+ .top-3 { top: 0.75rem; }
389
+ .top-2 { top: 0.5rem; }
390
+ .top-4 { top: 1rem; }
391
+ .top-14 { top: 3.5rem; }
392
+ .right-3 { right: 0.75rem; }
393
+ .right-4 { right: 1rem; }
394
+ .right-0 { right: 0; }
395
+ .left-0 { left: 0; }
396
+ .left-3 { left: 0.75rem; }
397
+ .bottom-0 { bottom: 0; }
398
+
399
+ .z-40 { z-index: 40; }
400
+ .z-50 { z-index: 50; }
401
+ .z-\[100\] { z-index: 100; }
402
+
403
+ .w-1 { width: 0.25rem; }
404
+ .w-1\.5 { width: 0.375rem; }
405
+ .w-2 { width: 0.5rem; }
406
+ .w-3 { width: 0.75rem; }
407
+ .w-3\.5 { width: 0.875rem; }
408
+ .w-4 { width: 1rem; }
409
+ .w-5 { width: 1.25rem; }
410
+ .w-6 { width: 1.5rem; }
411
+ .w-8 { width: 2rem; }
412
+ .w-12 { width: 3rem; }
413
+ .w-14 { width: 3.5rem; }
414
+ .w-16 { width: 4rem; }
415
+ .w-20 { width: 5rem; }
416
+ .w-24 { width: 6rem; }
417
+ .w-32 { width: 8rem; }
418
+ .w-40 { width: 10rem; }
419
+ .w-48 { width: 12rem; }
420
+ .w-64 { width: 16rem; }
421
+ .w-full { width: 100%; }
422
+ .w-px { width: 1px; }
423
+
424
+ .h-1 { height: 0.25rem; }
425
+ .h-1\.5 { height: 0.375rem; }
426
+ .h-2 { height: 0.5rem; }
427
+ .h-2\.5 { height: 0.625rem; }
428
+ .h-3 { height: 0.75rem; }
429
+ .h-4 { height: 1rem; }
430
+ .h-5 { height: 1.25rem; }
431
+ .h-6 { height: 1.5rem; }
432
+ .h-8 { height: 2rem; }
433
+ .h-12 { height: 3rem; }
434
+ .h-11 { height: 2.75rem; }
435
+ .h-14 { height: 3.5rem; }
436
+ .h-full { height: 100%; }
437
+ .h-auto { height: auto; }
438
+ .h-\[calc\(100vh-56px\)\] { height: calc(100vh - 56px); }
439
+
440
+ .min-w-0 { min-width: 0; }
441
+ .min-w-\[860px\] { min-width: 860px; }
442
+ .min-w-\[200px\] { min-width: 200px; }
443
+ .min-h-screen { min-height: 100vh; }
444
+
445
+ .max-w-lg { max-width: 32rem; }
446
+ .max-w-md { max-width: 28rem; }
447
+ .max-w-sm { max-width: 24rem; }
448
+ .max-w-xl { max-width: 36rem; }
449
+ .max-w-2xl { max-width: 42rem; }
450
+ .max-w-\[320px\] { max-width: 320px; }
451
+ .max-w-\[60vh\] { max-height: 60vh; }
452
+
453
+ .p-1 { padding: 0.25rem; }
454
+ .p-2 { padding: 0.5rem; }
455
+ .p-3 { padding: 0.75rem; }
456
+ .p-4 { padding: 1rem; }
457
+ .p-6 { padding: 1.5rem; }
458
+ .pt-3 { padding-top: 0.75rem; }
459
+ .pt-6 { padding-top: 1.5rem; }
460
+ .pb-4 { padding-bottom: 1rem; }
461
+ .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
462
+ .px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
463
+ .px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
464
+ .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
465
+ .px-4 { padding-left: 1rem; padding-right: 1rem; }
466
+ .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
467
+ .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
468
+ .py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
469
+ .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
470
+ .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
471
+ .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
472
+ .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
473
+ .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
474
+ .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
475
+ .pl-6 { padding-left: 1.5rem; }
476
+ .pl-9 { padding-left: 2.25rem; }
477
+ .pr-6 { padding-right: 1.5rem; }
478
+
479
+ .mt-1 { margin-top: 0.25rem; }
480
+ .mt-2 { margin-top: 0.5rem; }
481
+ .mt-3 { margin-top: 0.75rem; }
482
+ .mt-4 { margin-top: 1rem; }
483
+ .mt-6 { margin-top: 1.5rem; }
484
+ .mt-8 { margin-top: 2rem; }
485
+ .mt-auto { margin-top: auto; }
486
+ .mb-1 { margin-bottom: 0.25rem; }
487
+ .mb-2 { margin-bottom: 0.5rem; }
488
+ .mb-4 { margin-bottom: 1rem; }
489
+ .mb-6 { margin-bottom: 1.5rem; }
490
+ .mb-8 { margin-bottom: 2rem; }
491
+ .ml-1 { margin-left: 0.25rem; }
492
+ .ml-auto { margin-left: auto; }
493
+ .mr-2 { margin-right: 0.5rem; }
494
+
495
+ .text-\[10px\] { font-size: 0.625rem; }
496
+ .text-xs { font-size: 0.75rem; }
497
+ .text-sm { font-size: 0.875rem; }
498
+ .text-lg { font-size: 1.125rem; }
499
+ .text-xl { font-size: 1.25rem; }
500
+ .text-2xl { font-size: 1.5rem; }
501
+ .text-center { text-align: center; }
502
+ .text-left { text-align: left; }
503
+ .text-right { text-align: right; }
504
+
505
+ .font-medium { font-weight: 500; }
506
+ .font-semibold { font-weight: 600; }
507
+ .font-bold { font-weight: 700; }
508
+
509
+ .uppercase { text-transform: uppercase; }
510
+ .capitalize { text-transform: capitalize; }
511
+
512
+ .tracking-tight { letter-spacing: -0.025em; }
513
+ .tracking-wider { letter-spacing: 0.05em; }
514
+ .tracking-widest { letter-spacing: 0.1em; }
515
+ .leading-relaxed { line-height: 1.625; }
516
+ .leading-tight { line-height: 1.25; }
517
+ .whitespace-nowrap { white-space: nowrap; }
518
+ .whitespace-pre-wrap { white-space: pre-wrap; }
519
+
520
+ .text-white { color: white; }
521
+ .text-gray-200 { color: #e5e7eb; }
522
+ .text-gray-300 { color: #d1d5db; }
523
+ .text-gray-400 { color: #9ca3af; }
524
+ .text-gray-500 { color: #6b7280; }
525
+ .text-gray-600 { color: #4b5563; }
526
+ .text-gray-700 { color: #374151; }
527
+ .text-gray-700\/40 { color: rgba(55, 65, 81, 0.4); }
528
+
529
+ .text-red-400 { color: #f87171; }
530
+ .text-red-300 { color: #fca5a5; }
531
+ .text-red-500 { color: #ef4444; }
532
+ .text-yellow-400 { color: #facc15; }
533
+ .text-yellow-500 { color: #eab308; }
534
+ .text-blue-400 { color: #60a5fa; }
535
+ .text-blue-500 { color: #3b82f6; }
536
+
537
+ .bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
538
+ .bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
539
+ .bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
540
+ .bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
541
+ .bg-space-900\/90 { background-color: rgba(15, 15, 26, 0.9); }
542
+ .bg-gray-500 { background-color: #6b7280; }
543
+ .bg-neon-green\/10 { background-color: rgba(34, 197, 94, 0.1); }
544
+ .bg-red-600 { background-color: #dc2626; }
545
+
546
+ .bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
547
+ .from-neon-purple { --tw-gradient-from: var(--color-neon-purple); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
548
+ .to-blue-600 { --tw-gradient-to: #2563eb; }
549
+
550
+ .border { border-width: 1px; }
551
+ .border-t { border-top-width: 1px; }
552
+ .border-b { border-bottom-width: 1px; }
553
+ .border-r { border-right-width: 1px; }
554
+ .border-2 { border-width: 2px; }
555
+ .border-0 { border-width: 0; }
556
+ .border-none { border: none; }
557
+ .border-space-border\/20 { border-color: rgba(42, 42, 62, 0.2); }
558
+ .border-space-border\/30 { border-color: rgba(42, 42, 62, 0.3); }
559
+ .border-space-border\/40 { border-color: rgba(42, 42, 62, 0.4); }
560
+ .border-space-border\/50 { border-color: rgba(42, 42, 62, 0.5); }
561
+ .border-space-border\/60 { border-color: rgba(42, 42, 62, 0.6); }
562
+ .border-space-border\/80 { border-color: rgba(42, 42, 62, 0.8); }
563
+ .border-red-500\/20 { border-color: rgba(239, 68, 68, 0.2); }
564
+ .border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
565
+ .border-red-500\/50 { border-color: rgba(239, 68, 68, 0.5); }
566
+ .border-yellow-500\/20 { border-color: rgba(234, 179, 8, 0.2); }
567
+ .border-yellow-500\/30 { border-color: rgba(234, 179, 8, 0.3); }
568
+ .border-yellow-500\/50 { border-color: rgba(234, 179, 8, 0.5); }
569
+ .border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
570
+ .border-neon-purple\/20 { border-color: rgba(168, 85, 247, 0.2); }
571
+ .border-neon-purple\/30 { border-color: rgba(168, 85, 247, 0.3); }
572
+ .border-neon-purple\/50 { border-color: rgba(168, 85, 247, 0.5); }
573
+ .border-neon-cyan\/20 { border-color: rgba(34, 211, 238, 0.2); }
574
+ .border-neon-green\/20 { border-color: rgba(34, 197, 94, 0.2); }
575
+
576
+ .rounded { border-radius: 0.25rem; }
577
+ .rounded-full { border-radius: 9999px; }
578
+ .rounded-lg { border-radius: 0.5rem; }
579
+ .rounded-xl { border-radius: 0.75rem; }
580
+
581
+ .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
582
+ .shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18); }
583
+ .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
584
+ .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
585
+ .shadow-none { box-shadow: none; }
586
+
587
+ .backdrop-blur-sm { backdrop-filter: blur(4px); }
588
+ .backdrop-blur-md { backdrop-filter: blur(12px); }
589
+
590
+ .overflow-hidden { overflow: hidden; }
591
+ .overflow-auto { overflow: auto; }
592
+ .overflow-x-auto { overflow-x: auto; }
593
+ .overflow-y-auto { overflow-y: auto; }
594
+
595
+ .transform {
596
+ transform:
597
+ translateX(var(--tw-translate-x, 0))
598
+ translateY(var(--tw-translate-y, 0))
599
+ rotate(var(--tw-rotate, 0))
600
+ skewX(var(--tw-skew-x, 0))
601
+ skewY(var(--tw-skew-y, 0))
602
+ scaleX(var(--tw-scale-x, 1))
603
+ scaleY(var(--tw-scale-y, 1));
604
+ }
605
+ .-translate-x-full { --tw-translate-x: -100%; }
606
+ .translate-x-0 { --tw-translate-x: 0; }
607
+ .translate-x-4 { --tw-translate-x: 1rem; }
608
+ .translate-x-8 { --tw-translate-x: 2rem; }
609
+ .scale-95 { --tw-scale-x: 0.95; --tw-scale-y: 0.95; }
610
+ .scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }
611
+ .rotate-180 { --tw-rotate: 180deg; }
612
+
613
+ .cursor-pointer { cursor: pointer; }
614
+ .cursor-help { cursor: help; }
615
+ .pointer-events-none { pointer-events: none; }
616
+ .pointer-events-auto { pointer-events: auto; }
617
+
618
+ .opacity-0 { opacity: 0; }
619
+ .opacity-50 { opacity: 0.5; }
620
+ .opacity-60 { opacity: 0.6; }
621
+ .opacity-75 { opacity: 0.75; }
622
+ .opacity-100 { opacity: 1; }
623
+
624
+ .group:hover .group-hover\:text-white { color: white; }
625
+ .group:hover .group-hover\:text-cyan-400 { color: #22d3ee; }
626
+ .group:hover .group-hover\:text-cyan-400\/70 { color: rgba(34, 211, 238, 0.7); }
627
+ .group:hover .group-hover\:text-green-400 { color: #4ade80; }
628
+ .group:hover .group-hover\:text-green-400\/70 { color: rgba(74, 222, 128, 0.7); }
629
+ .group:hover .group-hover\:text-red-400 { color: #f87171; }
630
+ .group:hover .group-hover\:text-yellow-400 { color: #facc15; }
631
+ .group:hover .group-hover\:text-yellow-400\/70 { color: rgba(250, 204, 21, 0.7); }
632
+ .group:hover .group-hover\:text-purple-400 { color: #c084fc; }
633
+ .group:hover .group-hover\:text-purple-400\/70 { color: rgba(192, 132, 252, 0.7); }
634
+ .group:hover .group-hover\:opacity-100 { opacity: 1; }
635
+
636
+ .hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
637
+ .hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
638
+ .hover\:bg-red-500\/10:hover { background-color: rgba(239, 68, 68, 0.1); }
639
+ .hover\:bg-red-500\/20:hover { background-color: rgba(239, 68, 68, 0.2); }
640
+ .hover\:bg-purple-600:hover { background-color: #9333ea; }
641
+ .hover\:text-white:hover { color: white; }
642
+ .hover\:text-red-400:hover { color: #f87171; }
643
+ .hover\:border-cyan-500\/30:hover { border-color: rgba(34, 211, 238, 0.3); }
644
+ .hover\:border-green-500\/30:hover { border-color: rgba(34, 197, 94, 0.3); }
645
+ .hover\:border-yellow-500\/30:hover { border-color: rgba(234, 179, 8, 0.3); }
646
+ .hover\:border-red-500\/30:hover { border-color: rgba(239, 68, 68, 0.3); }
647
+ .hover\:border-purple-500\/30:hover { border-color: rgba(168, 85, 247, 0.3); }
648
+ .hover\:bg-cyan-500\/5:hover { background-color: rgba(34, 211, 238, 0.05); }
649
+ .hover\:bg-green-500\/5:hover { background-color: rgba(34, 197, 94, 0.05); }
650
+ .hover\:bg-yellow-500\/5:hover { background-color: rgba(234, 179, 8, 0.05); }
651
+ .hover\:bg-red-500\/5:hover { background-color: rgba(239, 68, 68, 0.05); }
652
+ .hover\:bg-purple-500\/5:hover { background-color: rgba(168, 85, 247, 0.05); }
653
+
654
+ .grid { display: grid; }
655
+ .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
656
+
657
+ .space-y-1 > * + * { margin-top: 0.25rem; }
658
+ .space-y-2 > * + * { margin-top: 0.5rem; }
659
+ .space-y-3 > * + * { margin-top: 0.75rem; }
660
+ .space-y-4 > * + * { margin-top: 1rem; }
661
+ .space-y-6 > * + * { margin-top: 1.5rem; }
662
+
663
+ @media (min-width: 640px) {
664
+ .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
665
+ .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
666
+ .sm\:col-span-1 { grid-column: span 1 / span 1; }
667
+ .sm\:w-auto { width: auto; }
668
+ .sm\:text-center { text-align: center; }
669
+ .sm\:justify-center { justify-content: center; }
670
+ .sm\:gap-2 { gap: 0.5rem; }
671
+ .sm\:gap-3 { gap: 0.75rem; }
672
+ .sm\:flex-none { flex: none; }
673
+ .sm\:flex-nowrap { flex-wrap: nowrap; }
674
+ .sm\:ml-1 { margin-left: 0.25rem; }
675
+ }
676
+
677
+ @media (min-width: 1024px) {
678
+ .lg\:static { position: static; }
679
+ .lg\:flex-shrink-0 { flex-shrink: 0; }
680
+ .lg\:h-auto { height: auto; }
681
+ .lg\:shadow-none { box-shadow: none; }
682
+ .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
683
+ .lg\:col-span-1 { grid-column: span 1 / span 1; }
684
+ .lg\:gap-3 { gap: 0.75rem; }
685
+ .lg\:gap-4 { gap: 1rem; }
686
+ .lg\:p-4 { padding: 1rem; }
687
+ .lg\:px-4 { padding-left: 1rem; padding-right: 1rem; }
688
+ .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
689
+ .lg\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
690
+ .lg\:text-3xl { font-size: 1.875rem; }
691
+ .lg\:text-xs { font-size: 0.75rem; }
692
+ .lg\:block { display: block; }
693
+ .lg\:hidden { display: none; }
694
+ .lg\:flex-nowrap { flex-wrap: nowrap; }
695
+ .lg\:border { border-width: 1px; }
696
+ .lg\:rounded-md { border-radius: 0.375rem; }
697
+ .lg\:bg-transparent { background-color: transparent; }
698
+ .lg\:border-transparent { border-color: transparent; }
699
+ .lg\:w-64 { width: 16rem; }
700
+ .lg\:w-auto { width: auto; }
701
+ .lg\:justify-end { justify-content: flex-end; }
702
+ .lg\:bg-space-800 { background-color: var(--color-space-800); }
703
+ .lg\:border-neon-purple\/30 { border-color: rgba(168, 85, 247, 0.3); }
704
+ .lg\:border-space-border\/60 { border-color: rgba(42, 42, 62, 0.6); }
705
+ .lg\:border-space-border\/30 { border-color: rgba(42, 42, 62, 0.3); }
706
+ .lg\:whitespace-nowrap { white-space: nowrap; }
707
+ .lg\:flex-shrink-0 { flex-shrink: 0; }
708
+ .lg\:hover\:bg-space-800:hover { background-color: var(--color-space-800); }
709
+ .lg\:hover\:border-neon-purple\/30:hover { border-color: rgba(168, 85, 247, 0.3); }
710
+ .lg\:hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
711
+ .lg\:hover\:shadow-neon-purple\/10:hover { box-shadow: 0 0 15px rgba(168, 85, 247, 0.1); }
712
+ }
713
+
714
+ @media (min-width: 1280px) {
715
+ .xl\:p-4 { padding: 1rem; }
716
+ .xl\:h-16 { height: 4rem; }
717
+ .xl\:w-16 { width: 4rem; }
718
+ }
719
+
720
+ [x-transition] { transition: opacity 0.2s ease, transform 0.2s ease; }
721
+
722
+ .fade-enter-active { transition: opacity 0.3s ease; }
723
+ .fade-enter-from { opacity: 0; }
724
+
725
+ .bg-space-800\/50 { background-color: rgba(26, 26, 40, 0.5); }
726
+ .bg-space-800\/80 { background-color: rgba(26, 26, 40, 0.8); }
727
+ .bg-space-900\/40 { background-color: rgba(15, 15, 26, 0.4); }
728
+ .bg-space-900\/50 { background-color: rgba(15, 15, 26, 0.5); }
729
+ .bg-space-900\/60 { background-color: rgba(15, 15, 26, 0.6); }
730
+
731
+ .bg-space-900\/20 { background-color: rgba(15, 15, 26, 0.2); }
732
+ .bg-neon-purple\/10 { background-color: rgba(168, 85, 247, 0.1); }
733
+ .bg-neon-purple\/20 { background-color: rgba(168, 85, 247, 0.2); }
734
+
735
+ .bg-yellow-500\/10 { background-color: rgba(234, 179, 8, 0.1); }
736
+ .bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
737
+ .bg-gray-500\/10 { background-color: rgba(107, 114, 128, 0.1); }
738
+ .bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
739
+
740
+ .border-gray-500\/30 { border-color: rgba(107, 114, 128, 0.3); }
741
+
742
+ .text-cyan-400 { color: #22d3ee; }
743
+ .text-green-400 { color: #4ade80; }
744
+ .text-purple-400 { color: #c084fc; }
745
+ .text-cyan-400\/60 { color: rgba(34, 211, 238, 0.6); }
746
+ .text-green-400\/60 { color: rgba(74, 222, 128, 0.6); }
747
+ .text-yellow-400\/60 { color: rgba(250, 204, 21, 0.6); }
748
+ .text-purple-400\/60 { color: rgba(192, 132, 252, 0.6); }
749
+
750
+ .hover\:text-cyan-400:hover { color: #22d3ee; }
751
+ .hover\:text-green-400:hover { color: #4ade80; }
752
+ .hover\:text-purple-400:hover { color: #c084fc; }
753
+
754
+ .hover\:underline:hover { text-decoration: underline; }
755
+
756
+ .\!p-0 { padding: 0 !important; }
757
+
758
+ .shadow-neon-purple\/20 {
759
+ box-shadow: 0 0 18px rgba(168, 85, 247, 0.2);
760
+ }
761
+
762
+ .shadow-\[0_0_15px_rgba\(168\,85\,247\,0\.4\)\] {
763
+ box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
764
+ }
765
+
766
+ .shadow-\[0_0_8px_rgba\(34\,197\,94\,0\.6\)\] {
767
+ box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
768
+ }
769
+
770
+ .bg-gray-700 {
771
+ background-color: rgba(55, 65, 81, 0.9);
772
+ }
773
+
774
+ .h-0 {
775
+ height: 0;
776
+ }
777
+
778
+ .w-0 {
779
+ width: 0;
780
+ }
781
+
782
+ .animate-ping {
783
+ animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
784
+ }
785
+
786
+ @keyframes ping {
787
+ 75%, 100% {
788
+ transform: scale(2);
789
+ opacity: 0;
790
+ }
791
+ }