File size: 88,982 Bytes
80653d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
:root {
    --page-bg: #ecebe5;
    --page-bg-soft: #f6f5f1;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --surface-border: rgba(16, 19, 26, 0.07);
    --text: #10131a;
    --muted: #5f6776;
    --royal-blue: #3f63d8;
    --royal-blue-deep: #2f4fbe;
    --periwinkle: #7f8af8;
    --shadow: 0 14px 34px rgba(16, 19, 26, 0.045);
    --shadow-soft: 0 8px 22px rgba(16, 19, 26, 0.03);
}
.gradio-container {
    background: linear-gradient(180deg, var(--page-bg-soft) 0%, var(--page-bg) 100%) !important;
        color: var(--text);
        font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.video-container,
.chat-container,
.instructions-container {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.chat-container textarea {
    border: 1.5px solid rgba(65, 105, 225, 0.14) !important;
        border-radius: 16px !important;
        padding: 15px 16px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 6px 18px rgba(16, 19, 26, 0.03) !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
    min-height: 50px !important;
    resize: none !important;
}

.chat-container textarea:focus {
    border-color: var(--royal-blue) !important;
        box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.1) !important;
    outline: none !important;
    transform: translateY(-1px) !important;
}

.chat-container textarea::placeholder {
    color: #6b7280 !important;
        font-size: 15px !important;
    font-weight: 400 !important;
}

.chat-container .gr-text-input {
    border: none !important;
    background: transparent !important;
}

.latency-note {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #7b8290;
    font-size: 0.74rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
    white-space: normal;
}

.latency-note-inline {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}
.instructions-container {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.86);
}

.instructions-container a {
    color: var(--royal-blue);
    font-weight: 700;
    text-decoration: none;
}

.instructions-container a:hover {
    text-decoration: underline;
}

/* Ultra-sleek header styling with modern design */
.ultra-sleek-header {
    text-align: center;
    padding: 20px 20px 5px 20px;
    margin: 0;
    background: transparent;
    border: none;
    position: relative;
        overflow: hidden;
}

.ultra-sleek-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}


.badge-icon {
    font-size: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.hero-title {
    margin: 8px 0 6px;
    font-size: 4rem;
    line-height: 1;
        letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--text);
        text-shadow: 0 10px 28px rgba(114, 89, 255, 0.08);
    }
.title-primary {
    background: linear-gradient(45deg,
            #4169E1 0%,
                #8A2BE2 50%,
                #E91E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-accent {
    display: inline-block;
        color: #132542;
        margin-left: 10px;
    }
    
    @supports ((-webkit-background-clip: text) or (background-clip: text)) {
        .title-primary {
            background: linear-gradient(90deg, #4f6ef7 0%, #7a43ee 46%, #e21c74 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        color: transparent;
        }
        }
                                .title-primary::after {
                                    content: "";
                                    position: absolute;
                                    left: 0;
                                    right: 0;
                                    bottom: -12px;
                                    height: 6px;
                                    border-radius: 999px;
                                    background: linear-gradient(90deg, rgba(135, 139, 255, 0.9), rgba(221, 123, 255, 0.85));
                                    box-shadow: 0 8px 22px rgba(165, 105, 255, 0.18);
                                }

.hero-subtitle {
    margin: 14px auto 0;
        max-width: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
    gap: 10px;
        color: var(--muted);
        font-size: 1.12rem;
        font-weight: 500;
        line-height: 1.6;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
        background: #18b77f;
    position: relative;
    flex-shrink: 0;
}

.status-dot::before {
    content: "";
    position: absolute;
    inset: 0;
        border-radius: inherit;
        background: #18b77f;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%,
        100% {
            transform: scale(2);
            opacity: 0;
        }
    }
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
}

.hero-link-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-deep) 62%, var(--periwinkle) 100%);
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(65, 105, 225, 0.26);
    animation: buttonPulse 2.8s ease-in-out infinite;
}

.hero-link-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -45%;
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    animation: buttonSheen 3.2s ease-in-out infinite;
}

.hero-link-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 38px rgba(65, 105, 225, 0.3);
}

@keyframes buttonPulse {

    0%,
        100% {
            transform: translateY(0);
            box-shadow: 0 16px 34px rgba(65, 105, 225, 0.26);
        }
    
        50% {
            transform: translateY(-1px);
            box-shadow: 0 20px 40px rgba(65, 105, 225, 0.34);
        }
    }
    
    @keyframes buttonSheen {
    
        0%,
        55% {
            left: -45%;
        }
    
        82%,
        100% {
            left: 125%;
        }
    }
.feature-pills {
    display: flex;
        justify-content: center;
        gap: 10px;
            margin-top: 18px;
        flex-wrap: wrap;
    }
    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .pill {
    background: rgba(255, 255, 255, 0.66);
        border: 1px solid rgba(16, 19, 26, 0.06);
        border-radius: 999px;
        padding: 7px 14px;
        font-size: 0.82rem;
        font-weight: 700;
        color: #536071;
        box-shadow: none;
    }
    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-grid {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    display: grid;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    grid-template-columns: repeat(3, minmax(0, 1fr));
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    gap: 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    margin-top: 6px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border: 1px solid rgba(16, 19, 26, 0.09);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border-radius: 24px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    overflow: hidden;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        linear-gradient(90deg, rgba(16, 19, 26, 0.05) 1px, transparent 1px) 0 0 / 33.333% 100%,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        linear-gradient(180deg, rgba(16, 19, 26, 0.04) 1px, transparent 1px) 0 0 / 100% 50%,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        rgba(255, 255, 255, 0.94);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    box-shadow: 0 20px 44px rgba(16, 19, 26, 0.035);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-card {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background: transparent;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border: 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border-right: 1px solid rgba(16, 19, 26, 0.09);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    padding: 30px 36px 32px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    box-shadow: none;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border-radius: 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-card-wide {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    grid-column: span 3;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border-right: 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    border-bottom: 1px solid rgba(16, 19, 26, 0.09);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 250, 253, 0.96) 100%);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-label {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    margin-bottom: 12px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    color: #4268f5;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    font-size: 0.74rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    font-weight: 800;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    letter-spacing: 0.18em;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    text-transform: uppercase;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-card p,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-card li {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    color: #666d7b;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    font-size: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    line-height: 1.62;
        }
    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .info-card p {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    margin: 0;
        }
    
.info-card-wide p {
    width: 100%;
    max-width: none;
    font-size: 1.18rem;
    line-height: 1.72;
    color: #4f5666;
    text-wrap: pretty;
}
.info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.info-card li+li {
    margin-top: 10px;
}

.info-card li {
    position: relative;
    padding-left: 16px;
}

.info-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(66, 104, 245, 0.5);
}

.marker-link {
    position: relative;
    display: inline;
    margin: 0;
    padding: 0 0.02em 0.22em;
    color: #3a5cf3 !important;
    font-weight: 700;
    text-decoration: none !important;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20220%2026%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2013%20C%2018%203%2036%2023%2055%2013%20S%2092%2023%20110%2013%20S%20148%203%20165%2013%20S%20202%2023%20220%2013%22%20fill%3D%22none%22%20stroke%3D%22%232145de%22%20stroke-width%3D%224.2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M0%2016%20C%2020%208%2035%2024%2055%2016%20S%2090%208%20110%2016%20S%20145%2024%20165%2016%20S%20200%208%20220%2016%22%20fill%3D%22none%22%20stroke%3D%22%235070ff%22%20stroke-width%3D%222.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-opacity%3D%22.82%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 0 125%;
    background-size: 100% 0.52em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    transition: color 0.22s ease, background-size 0.22s ease, text-shadow 0.22s ease;
}

.marker-link:hover,
.marker-link:focus-visible {
    color: #133ad4 !important;
    background-size: 100% 0.7em;
    text-shadow: 0 0 16px rgba(80, 112, 255, 0.12);
}

.marker-link:hover::after,
.marker-link:focus-visible::after {
    opacity: 1;
    transform: translateY(-10%);
}

.marker-link:focus-visible {
    outline: none;
}

.info-card:nth-child(2),
.info-card:nth-child(3) {
    border-bottom: 0;
}
.info-card:nth-child(4) {
    border-right: 0;
}
.items-center {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.gradio-container footer,
.gradio-container .api-docs,
.gradio-container .built-with,
.gradio-container .settings,
.gradio-container .footer,
.gradio-container div[data-testid="footer"],
.gradio-container .gradio-footer {
    display: none !important;
}

.gradio-container a[href*="gradio"] {
    display: none !important;
}

.gradio-container .chatbot .message-wrap button[aria-label*="clear" i],
.gradio-container .chatbot .message-wrap button[title*="clear" i],
.chat-container button[aria-label*="clear" i],
.chatbot button[aria-label*="clear" i],
.message-wrap button[aria-label*="clear" i] {
    display: none !important;
}

button:has(svg[data-testid*="clear"]),
button:has(svg[data-testid*="delete"]),
button:has(svg[data-testid*="trash"]) {
    display: none !important;
}
@media (max-width: 768px) {
    .ultra-sleek-header {
        padding: 18px 14px 12px;
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .latency-note {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    white-space: normal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
    .hero-title {
        font-size: 3rem;
    

        .hero-subtitle {
            flex-direction: column;
            gap: 8px;
            padding: 0 12px;
            font-size: 1.02rem;
        }

        .video-container,
        .chat-container,
        .instructions-container {
            padding: 18px;
            border-radius: 20px;
        }

        .info-grid {
            grid-template-columns: 1fr;
            background: rgba(255, 255, 255, 0.95);
        }

        .info-card-wide {
            grid-column: span 1;
        }

        .info-card,
        .info-card-wide {
            border-right: 0;
            border-bottom: 1px solid rgba(16, 19, 26, 0.08);
            padding: 22px 20px 24px;
    

        .info-card:last-child {
                border-bottom: 0;
            }
        }

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.08;
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .title-accent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    margin: 4px 0 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
        }