botdocs 0.1.0 → 0.2.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,770 @@
1
+ /* Modern Theme - Contemporary, gradient accents, bold typography (VitePress/Docusaurus inspired) */
2
+
3
+ * {
4
+ margin: 0;
5
+ padding: 0;
6
+ box-sizing: border-box;
7
+ }
8
+
9
+ :root {
10
+ /* Modern, vibrant colors */
11
+ --bg-primary: #ffffff;
12
+ --bg-secondary: #f6f8fa;
13
+ --bg-tertiary: #edf0f3;
14
+ --text-primary: #1a1a1a;
15
+ --text-secondary: #5a6270;
16
+ --border-color: #e1e4e8;
17
+ --link-color: #646cff;
18
+ --link-hover: #535bf2;
19
+ --code-bg: #f6f8fa;
20
+ --accent-purple: #646cff;
21
+ --accent-green: #42b883;
22
+ --accent-cyan: #35b4e0;
23
+ --sidebar-width: 300px;
24
+ --content-max-width: 920px;
25
+ }
26
+
27
+ body {
28
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
29
+ 'Inter', 'Helvetica Neue', sans-serif;
30
+ line-height: 1.7;
31
+ color: var(--text-primary);
32
+ background: var(--bg-primary);
33
+ -webkit-font-smoothing: antialiased;
34
+ -moz-osx-font-smoothing: grayscale;
35
+ }
36
+
37
+ .layout {
38
+ display: flex;
39
+ flex-direction: column;
40
+ min-height: 100vh;
41
+ }
42
+
43
+ /* Top navbar instead of sidebar */
44
+ .sidebar {
45
+ position: sticky;
46
+ top: 0;
47
+ width: 100%;
48
+ height: auto;
49
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.05) 0%, rgba(53, 180, 224, 0.05) 100%);
50
+ backdrop-filter: blur(10px);
51
+ border-bottom: 1px solid var(--border-color);
52
+ padding: 0;
53
+ z-index: 1000;
54
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
55
+ }
56
+
57
+ .sidebar-header {
58
+ display: flex;
59
+ align-items: center;
60
+ justify-content: space-between;
61
+ padding: 1.25rem 3rem;
62
+ margin-bottom: 0;
63
+ gap: 2rem;
64
+ }
65
+
66
+ .site-title {
67
+ font-size: 1.5rem;
68
+ font-weight: 800;
69
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
70
+ -webkit-background-clip: text;
71
+ -webkit-text-fill-color: transparent;
72
+ background-clip: text;
73
+ margin-bottom: 0;
74
+ letter-spacing: -0.5px;
75
+ white-space: nowrap;
76
+ }
77
+
78
+ .site-description {
79
+ display: none;
80
+ }
81
+
82
+ .sidebar-nav {
83
+ margin-top: 0;
84
+ flex: 1;
85
+ }
86
+
87
+ .nav-list {
88
+ list-style: none;
89
+ display: flex;
90
+ gap: 0.5rem;
91
+ align-items: center;
92
+ margin: 0;
93
+ flex-wrap: wrap;
94
+ }
95
+
96
+ .nav-list li {
97
+ margin-bottom: 0;
98
+ }
99
+
100
+ .nav-list a {
101
+ color: var(--text-primary);
102
+ text-decoration: none;
103
+ display: block;
104
+ padding: 0.625rem 1.25rem;
105
+ border-radius: 8px;
106
+ transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
107
+ font-weight: 500;
108
+ font-size: 0.95rem;
109
+ white-space: nowrap;
110
+ }
111
+
112
+ .nav-list a:hover {
113
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.1), rgba(53, 180, 224, 0.1));
114
+ transform: translateY(-2px);
115
+ color: var(--accent-purple);
116
+ }
117
+
118
+ .nav-list a.active {
119
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
120
+ color: white;
121
+ font-weight: 600;
122
+ box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
123
+ }
124
+
125
+ /* Main Content - full width, no sidebar offset */
126
+ .main-content {
127
+ margin-left: 0;
128
+ flex: 1;
129
+ padding: 4rem 3rem;
130
+ width: 100%;
131
+ }
132
+
133
+ .content-wrapper {
134
+ max-width: 1200px;
135
+ margin: 0 auto;
136
+ }
137
+
138
+ /* Bold, modern typography */
139
+ h1, h2, h3, h4, h5, h6 {
140
+ margin-top: 2.5rem;
141
+ margin-bottom: 1.25rem;
142
+ font-weight: 700;
143
+ line-height: 1.3;
144
+ color: var(--text-primary);
145
+ letter-spacing: -0.5px;
146
+ }
147
+
148
+ h1 {
149
+ font-size: 3rem;
150
+ margin-top: 0;
151
+ margin-bottom: 1.5rem;
152
+ font-weight: 800;
153
+ background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
154
+ -webkit-background-clip: text;
155
+ -webkit-text-fill-color: transparent;
156
+ background-clip: text;
157
+ }
158
+
159
+ h2 {
160
+ font-size: 2.25rem;
161
+ padding-bottom: 1rem;
162
+ border-bottom: 2px solid transparent;
163
+ background: linear-gradient(to right, var(--accent-purple), transparent) left bottom no-repeat;
164
+ background-size: 100% 2px;
165
+ margin-top: 3.5rem;
166
+ }
167
+
168
+ h3 {
169
+ font-size: 1.75rem;
170
+ color: var(--accent-purple);
171
+ }
172
+
173
+ h4 {
174
+ font-size: 1.375rem;
175
+ }
176
+
177
+ p {
178
+ margin-bottom: 1.25rem;
179
+ font-size: 1.0625rem;
180
+ line-height: 1.75;
181
+ }
182
+
183
+ a {
184
+ color: var(--link-color);
185
+ text-decoration: none;
186
+ font-weight: 500;
187
+ transition: color 0.2s;
188
+ background: linear-gradient(to right, var(--link-color), var(--link-color)) left bottom no-repeat;
189
+ background-size: 0% 2px;
190
+ transition: background-size 0.3s;
191
+ }
192
+
193
+ a:hover {
194
+ color: var(--link-hover);
195
+ background-size: 100% 2px;
196
+ }
197
+
198
+ /* Code with modern styling */
199
+ code {
200
+ font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
201
+ font-size: 0.9rem;
202
+ background: var(--code-bg);
203
+ color: var(--accent-purple);
204
+ padding: 0.25rem 0.5rem;
205
+ border-radius: 6px;
206
+ border: 1px solid var(--border-color);
207
+ font-weight: 500;
208
+ }
209
+
210
+ pre {
211
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
212
+ color: #f0f3f5;
213
+ padding: 1.75rem;
214
+ border-radius: 12px;
215
+ overflow-x: auto;
216
+ margin: 2rem 0;
217
+ box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
218
+ border: 1px solid rgba(100, 108, 255, 0.2);
219
+ }
220
+
221
+ pre code {
222
+ background: none !important;
223
+ padding: 0;
224
+ border: none;
225
+ color: #f0f3f5 !important;
226
+ font-weight: 400;
227
+ }
228
+
229
+ /* Syntax highlighting overrides for readability */
230
+ pre code * {
231
+ color: #f0f3f5 !important;
232
+ }
233
+
234
+ /* Modern blockquotes with gradient accent */
235
+ blockquote {
236
+ border-left: 4px solid transparent;
237
+ background: linear-gradient(to right, rgba(100, 108, 255, 0.1), transparent);
238
+ padding: 1.25rem 1.75rem;
239
+ margin: 2rem 0;
240
+ color: var(--text-secondary);
241
+ border-radius: 8px;
242
+ position: relative;
243
+ }
244
+
245
+ blockquote::before {
246
+ content: '';
247
+ position: absolute;
248
+ left: 0;
249
+ top: 0;
250
+ bottom: 0;
251
+ width: 4px;
252
+ background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan));
253
+ border-radius: 4px 0 0 4px;
254
+ }
255
+
256
+ /* Modern gradient callouts */
257
+ .markdown-alert {
258
+ padding: 1.5rem 1.75rem;
259
+ margin: 2rem 0;
260
+ border-radius: 12px;
261
+ border-left: 4px solid;
262
+ position: relative;
263
+ backdrop-filter: blur(10px);
264
+ }
265
+
266
+ .markdown-alert-title {
267
+ font-weight: 700;
268
+ margin-bottom: 0.75rem;
269
+ display: flex;
270
+ align-items: center;
271
+ gap: 0.75rem;
272
+ font-size: 1.05rem;
273
+ }
274
+
275
+ .markdown-alert-title svg {
276
+ display: none;
277
+ }
278
+
279
+ .markdown-alert-title::before {
280
+ font-size: 1.5rem;
281
+ }
282
+
283
+ .markdown-alert > *:last-child {
284
+ margin-bottom: 0;
285
+ }
286
+
287
+ .markdown-alert-note {
288
+ border-left-color: #646cff;
289
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.08), rgba(100, 108, 255, 0.03));
290
+ }
291
+
292
+ .markdown-alert-note .markdown-alert-title {
293
+ color: #646cff;
294
+ }
295
+
296
+ .markdown-alert-note .markdown-alert-title::before {
297
+ content: '💎';
298
+ }
299
+
300
+ .markdown-alert-tip {
301
+ border-left-color: #42b883;
302
+ background: linear-gradient(135deg, rgba(66, 184, 131, 0.08), rgba(66, 184, 131, 0.03));
303
+ }
304
+
305
+ .markdown-alert-tip .markdown-alert-title {
306
+ color: #42b883;
307
+ }
308
+
309
+ .markdown-alert-tip .markdown-alert-title::before {
310
+ content: '🚀';
311
+ }
312
+
313
+ .markdown-alert-important {
314
+ border-left-color: #c678dd;
315
+ background: linear-gradient(135deg, rgba(198, 120, 221, 0.08), rgba(198, 120, 221, 0.03));
316
+ }
317
+
318
+ .markdown-alert-important .markdown-alert-title {
319
+ color: #c678dd;
320
+ }
321
+
322
+ .markdown-alert-important .markdown-alert-title::before {
323
+ content: '⚡';
324
+ }
325
+
326
+ .markdown-alert-warning {
327
+ border-left-color: #e5c07b;
328
+ background: linear-gradient(135deg, rgba(229, 192, 123, 0.08), rgba(229, 192, 123, 0.03));
329
+ }
330
+
331
+ .markdown-alert-warning .markdown-alert-title {
332
+ color: #d19a66;
333
+ }
334
+
335
+ .markdown-alert-warning .markdown-alert-title::before {
336
+ content: '⚠️';
337
+ }
338
+
339
+ .markdown-alert-caution {
340
+ border-left-color: #e06c75;
341
+ background: linear-gradient(135deg, rgba(224, 108, 117, 0.08), rgba(224, 108, 117, 0.03));
342
+ }
343
+
344
+ .markdown-alert-caution .markdown-alert-title {
345
+ color: #e06c75;
346
+ }
347
+
348
+ .markdown-alert-caution .markdown-alert-title::before {
349
+ content: '🔥';
350
+ }
351
+
352
+ /* Lists */
353
+ ul, ol {
354
+ margin-left: 1.75rem;
355
+ margin-bottom: 1.25rem;
356
+ }
357
+
358
+ li {
359
+ margin-bottom: 0.75rem;
360
+ }
361
+
362
+ li::marker {
363
+ color: var(--accent-purple);
364
+ font-weight: 700;
365
+ }
366
+
367
+ /* Task Lists */
368
+ .task-list-item {
369
+ list-style: none;
370
+ margin-left: -1.75rem;
371
+ }
372
+
373
+ .task-list-item-checkbox {
374
+ margin-right: 0.75rem;
375
+ margin-left: 0.25rem;
376
+ cursor: pointer;
377
+ width: 1.125rem;
378
+ height: 1.125rem;
379
+ }
380
+
381
+ .task-list-item-checkbox[checked] {
382
+ accent-color: var(--accent-green);
383
+ }
384
+
385
+ /* Modern tables */
386
+ table {
387
+ width: 100%;
388
+ border-collapse: collapse;
389
+ margin: 2rem 0;
390
+ border-radius: 12px;
391
+ overflow: hidden;
392
+ box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
393
+ }
394
+
395
+ th, td {
396
+ padding: 1rem 1.25rem;
397
+ text-align: left;
398
+ border: none;
399
+ border-bottom: 1px solid var(--border-color);
400
+ }
401
+
402
+ th {
403
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
404
+ color: white;
405
+ font-weight: 600;
406
+ text-transform: uppercase;
407
+ font-size: 0.875rem;
408
+ letter-spacing: 0.5px;
409
+ }
410
+
411
+ tr:hover {
412
+ background: var(--bg-secondary);
413
+ }
414
+
415
+ /* Images with modern styling */
416
+ img {
417
+ max-width: 100%;
418
+ height: auto;
419
+ border-radius: 12px;
420
+ margin: 2rem 0;
421
+ box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
422
+ }
423
+
424
+ /* Modern theme toggle - moved to be visible above navbar */
425
+ .theme-toggle {
426
+ position: fixed;
427
+ top: 1.25rem;
428
+ right: 3rem;
429
+ width: 2.5rem;
430
+ height: 2.5rem;
431
+ border-radius: 8px;
432
+ background: rgba(255, 255, 255, 0.9);
433
+ backdrop-filter: blur(10px);
434
+ border: 1px solid var(--border-color);
435
+ cursor: pointer;
436
+ display: flex;
437
+ align-items: center;
438
+ justify-content: center;
439
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
440
+ z-index: 1001;
441
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
442
+ }
443
+
444
+ .theme-toggle:hover {
445
+ transform: scale(1.1);
446
+ box-shadow: 0 4px 12px rgba(100, 108, 255, 0.2);
447
+ border-color: var(--accent-purple);
448
+ }
449
+
450
+ .theme-toggle:active {
451
+ transform: scale(1.05);
452
+ }
453
+
454
+ .theme-icon::before {
455
+ content: '☀️';
456
+ font-size: 1.75rem;
457
+ }
458
+
459
+ [data-theme='dark'] .theme-icon::before {
460
+ content: '🌙';
461
+ }
462
+
463
+ /* Modern home page */
464
+ .home-header {
465
+ text-align: center;
466
+ margin-bottom: 4rem;
467
+ padding: 2rem 0;
468
+ }
469
+
470
+ .lead {
471
+ font-size: 1.5rem;
472
+ color: var(--text-secondary);
473
+ margin-top: 1.5rem;
474
+ line-height: 1.6;
475
+ font-weight: 400;
476
+ }
477
+
478
+ .link-grid {
479
+ display: grid;
480
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
481
+ gap: 2rem;
482
+ margin-top: 3rem;
483
+ }
484
+
485
+ .link-card {
486
+ padding: 2rem;
487
+ background: var(--bg-secondary);
488
+ border-radius: 16px;
489
+ text-decoration: none;
490
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
491
+ border: 2px solid transparent;
492
+ position: relative;
493
+ overflow: hidden;
494
+ }
495
+
496
+ .link-card::before {
497
+ content: '';
498
+ position: absolute;
499
+ top: 0;
500
+ left: 0;
501
+ right: 0;
502
+ height: 4px;
503
+ background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
504
+ opacity: 0;
505
+ transition: opacity 0.3s;
506
+ }
507
+
508
+ .link-card:hover::before {
509
+ opacity: 1;
510
+ }
511
+
512
+ .link-card:hover {
513
+ transform: translateY(-8px);
514
+ box-shadow: 0 12px 40px rgba(100, 108, 255, 0.2);
515
+ border-color: var(--accent-purple);
516
+ }
517
+
518
+ .link-card h3 {
519
+ margin: 0 0 0.75rem 0;
520
+ color: var(--text-primary);
521
+ font-size: 1.5rem;
522
+ font-weight: 700;
523
+ }
524
+
525
+ .link-card p {
526
+ margin: 0;
527
+ color: var(--text-secondary);
528
+ font-size: 1rem;
529
+ line-height: 1.6;
530
+ }
531
+
532
+ /* Doc navigation */
533
+ .doc-navigation {
534
+ display: flex;
535
+ justify-content: space-between;
536
+ margin-top: 4rem;
537
+ padding-top: 2rem;
538
+ gap: 1.5rem;
539
+ }
540
+
541
+ .nav-prev,
542
+ .nav-next {
543
+ padding: 1rem 1.75rem;
544
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.1), rgba(53, 180, 224, 0.1));
545
+ border-radius: 12px;
546
+ text-decoration: none;
547
+ color: var(--text-primary);
548
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
549
+ font-weight: 600;
550
+ border: 2px solid transparent;
551
+ }
552
+
553
+ .nav-prev:hover,
554
+ .nav-next:hover {
555
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
556
+ color: white;
557
+ transform: translateY(-2px);
558
+ box-shadow: 0 8px 24px rgba(100, 108, 255, 0.3);
559
+ }
560
+
561
+ .nav-next {
562
+ margin-left: auto;
563
+ }
564
+
565
+ /* Hero section for home page */
566
+ .home-header h1 {
567
+ font-size: 3.5rem;
568
+ margin-bottom: 1rem;
569
+ }
570
+
571
+ /* Wide layout features */
572
+ .content-wrapper > *:not(.link-grid) {
573
+ max-width: var(--content-max-width);
574
+ margin-left: auto;
575
+ margin-right: auto;
576
+ }
577
+
578
+ .link-grid {
579
+ max-width: 1200px;
580
+ margin-left: auto;
581
+ margin-right: auto;
582
+ }
583
+
584
+ /* Chat Widget - Modern Gradient Style */
585
+ .chat-toggle {
586
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
587
+ border: none;
588
+ border-radius: 50%;
589
+ box-shadow: 0 4px 20px rgba(100, 108, 255, 0.4);
590
+ width: 4rem;
591
+ height: 4rem;
592
+ }
593
+
594
+ .chat-toggle:hover {
595
+ box-shadow: 0 6px 28px rgba(100, 108, 255, 0.5);
596
+ transform: scale(1.15) translateY(-2px);
597
+ }
598
+
599
+ .chat-toggle:active {
600
+ transform: scale(1.05);
601
+ }
602
+
603
+ .chat-container {
604
+ border: 2px solid transparent;
605
+ background: linear-gradient(white, white) padding-box,
606
+ linear-gradient(135deg, var(--accent-purple), var(--accent-cyan)) border-box;
607
+ border-radius: 16px;
608
+ box-shadow: 0 12px 40px rgba(100, 108, 255, 0.25);
609
+ overflow: hidden;
610
+ }
611
+
612
+ .chat-header {
613
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
614
+ border-radius: 14px 14px 0 0;
615
+ padding: 1.25rem 1.5rem;
616
+ }
617
+
618
+ .chat-header h3 {
619
+ font-weight: 700;
620
+ letter-spacing: -0.3px;
621
+ }
622
+
623
+ .chat-message.user .message-content {
624
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
625
+ color: white;
626
+ border-radius: 16px;
627
+ border-bottom-right-radius: 4px;
628
+ box-shadow: 0 2px 8px rgba(100, 108, 255, 0.2);
629
+ }
630
+
631
+ .chat-message.assistant .message-content {
632
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.05), rgba(53, 180, 224, 0.05));
633
+ border: 1px solid rgba(100, 108, 255, 0.1);
634
+ border-radius: 16px;
635
+ border-bottom-left-radius: 4px;
636
+ }
637
+
638
+ .chat-input {
639
+ border-radius: 12px;
640
+ border: 2px solid var(--border-color);
641
+ transition: all 0.2s;
642
+ }
643
+
644
+ .chat-input:focus {
645
+ border-color: var(--accent-purple);
646
+ box-shadow: 0 0 0 3px rgba(100, 108, 255, 0.1);
647
+ }
648
+
649
+ .chat-send {
650
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
651
+ border-radius: 12px;
652
+ font-weight: 600;
653
+ box-shadow: 0 2px 8px rgba(100, 108, 255, 0.3);
654
+ }
655
+
656
+ .chat-send:hover:not(:disabled) {
657
+ box-shadow: 0 4px 12px rgba(100, 108, 255, 0.4);
658
+ transform: translateY(-1px);
659
+ }
660
+
661
+ .citation-link {
662
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.08), rgba(53, 180, 224, 0.08));
663
+ border: 1px solid rgba(100, 108, 255, 0.2);
664
+ border-radius: 8px;
665
+ }
666
+
667
+ .citation-link:hover {
668
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.15), rgba(53, 180, 224, 0.15));
669
+ border-color: var(--accent-purple);
670
+ }
671
+
672
+ /* Dark mode chat styling */
673
+ [data-theme='dark'] .chat-container {
674
+ background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
675
+ linear-gradient(135deg, var(--accent-purple), var(--accent-cyan)) border-box;
676
+ border: 2px solid transparent;
677
+ }
678
+
679
+ [data-theme='dark'] .chat-messages {
680
+ background: #1a1a1a;
681
+ }
682
+
683
+ [data-theme='dark'] .chat-message.user .message-content {
684
+ background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
685
+ color: white;
686
+ }
687
+
688
+ [data-theme='dark'] .chat-message.assistant .message-content {
689
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.1), rgba(53, 180, 224, 0.1));
690
+ border-color: rgba(100, 108, 255, 0.2);
691
+ color: #e5e5e5;
692
+ }
693
+
694
+ [data-theme='dark'] .chat-input-container {
695
+ background: #0f0f0f;
696
+ border-top-color: #333;
697
+ }
698
+
699
+ [data-theme='dark'] .chat-input {
700
+ background: #1a1a1a;
701
+ border-color: #333;
702
+ color: #e5e5e5;
703
+ }
704
+
705
+ [data-theme='dark'] .chat-input:focus {
706
+ border-color: var(--accent-purple);
707
+ box-shadow: 0 0 0 3px rgba(100, 108, 255, 0.2);
708
+ }
709
+
710
+ [data-theme='dark'] .citation-link {
711
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.15), rgba(53, 180, 224, 0.15));
712
+ border-color: rgba(100, 108, 255, 0.3);
713
+ color: #a5b4fc;
714
+ }
715
+
716
+ [data-theme='dark'] .citation-link:hover {
717
+ background: linear-gradient(135deg, rgba(100, 108, 255, 0.25), rgba(53, 180, 224, 0.25));
718
+ border-color: var(--accent-cyan);
719
+ }
720
+
721
+ /* Responsive */
722
+ @media (max-width: 1024px) {
723
+ .sidebar-header {
724
+ padding: 1rem 2rem;
725
+ }
726
+
727
+ .content-wrapper {
728
+ max-width: 900px;
729
+ }
730
+ }
731
+
732
+ @media (max-width: 768px) {
733
+ .sidebar-header {
734
+ flex-direction: column;
735
+ align-items: flex-start;
736
+ padding: 1rem 1.5rem;
737
+ gap: 1rem;
738
+ }
739
+
740
+ .nav-list {
741
+ width: 100%;
742
+ overflow-x: auto;
743
+ padding-bottom: 0.5rem;
744
+ }
745
+
746
+ .main-content {
747
+ padding: 2rem 1.5rem;
748
+ }
749
+
750
+ h1 {
751
+ font-size: 2.25rem;
752
+ }
753
+
754
+ h2 {
755
+ font-size: 1.75rem;
756
+ }
757
+
758
+ .link-grid {
759
+ grid-template-columns: 1fr;
760
+ }
761
+
762
+ .home-header h1 {
763
+ font-size: 2.5rem;
764
+ }
765
+
766
+ .theme-toggle {
767
+ top: 1rem;
768
+ right: 1rem;
769
+ }
770
+ }