css-pkg-01 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/fixbet88.asia/page-404.css +285 -0
  2. package/fixbet88.asia/page-apk.css +517 -0
  3. package/fixbet88.asia/page-bank-jago.css +563 -0
  4. package/fixbet88.asia/page-bonus.css +571 -0
  5. package/fixbet88.asia/page-cari.css +452 -0
  6. package/fixbet88.asia/page-daftar.css +591 -0
  7. package/fixbet88.asia/page-deposit-5000.css +525 -0
  8. package/fixbet88.asia/page-deposit-dana.css +233 -0
  9. package/fixbet88.asia/page-deposit-pulsa.css +580 -0
  10. package/fixbet88.asia/page-deposit-qris.css +650 -0
  11. package/fixbet88.asia/page-faq.css +455 -0
  12. package/fixbet88.asia/page-informasi-resmi.css +553 -0
  13. package/fixbet88.asia/page-link-alternatif.css +565 -0
  14. package/fixbet88.asia/page-login.css +649 -0
  15. package/fixbet88.asia/page-rtp.css +583 -0
  16. package/fixbet88.asia/page-slot-bet-200.css +667 -0
  17. package/fixbet88.asia/page-slot-maxwin.css +573 -0
  18. package/fixbet88.asia/page-slot-terbaru.css +497 -0
  19. package/fixbet88.asia/page-tentang-kami.css +688 -0
  20. package/fixbet88.asia/style.css +651 -0
  21. package/package.json +6 -0
  22. package/qq303.asia/page-404.css +275 -0
  23. package/qq303.asia/page-bonus.css +614 -0
  24. package/qq303.asia/page-cara-main.css +672 -0
  25. package/qq303.asia/page-cari.css +444 -0
  26. package/qq303.asia/page-daftar.css +303 -0
  27. package/qq303.asia/page-demo.css +439 -0
  28. package/qq303.asia/page-deposit-qris.css +564 -0
  29. package/qq303.asia/page-faq.css +678 -0
  30. package/qq303.asia/page-game-lucky-neko.css +622 -0
  31. package/qq303.asia/page-game-mahjong-ways-2.css +464 -0
  32. package/qq303.asia/page-game-mahjong-ways.css +615 -0
  33. package/qq303.asia/page-game-treasures-of-aztec.css +563 -0
  34. package/qq303.asia/page-game-wild-bandito.css +626 -0
  35. package/qq303.asia/page-link-alternatif.css +712 -0
  36. package/qq303.asia/page-login.css +620 -0
  37. package/qq303.asia/page-rtp.css +621 -0
  38. package/qq303.asia/page-scatter-hitam.css +679 -0
  39. package/qq303.asia/page-slot-bet-kecil.css +687 -0
  40. package/qq303.asia/page-tentang-kami.css +648 -0
  41. package/qq303.asia/style.css +621 -0
@@ -0,0 +1,712 @@
1
+ :root {
2
+ /* Palette */
3
+ --bg: #0d0716;
4
+ --surface: #1a0f2e;
5
+ --surface-hover: #261745;
6
+ --accent: #d4af37; /* Gold */
7
+ --accent2: #c026d3; /* Magenta */
8
+ --jade: #059669; /* Dragon Jade accent */
9
+ --text: #f5f0ff;
10
+ --muted: #9d94b8;
11
+
12
+ /* Typography */
13
+ --font-display: 'Chakra Petch', sans-serif;
14
+ --font-body: 'Manrope', sans-serif;
15
+
16
+ /* Layout & Effects */
17
+ --container-w: 1200px;
18
+ --radius-sm: 6px;
19
+ --radius-md: 12px;
20
+ --radius-lg: 20px;
21
+ --glow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
22
+ --glow-magenta: 0 0 15px rgba(192, 38, 211, 0.3);
23
+ --glow-jade: 0 0 30px rgba(5, 150, 105, 0.15);
24
+ --border-glass: 1px solid rgba(245, 240, 255, 0.08);
25
+ --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
26
+ }
27
+
28
+ /* Base Reset */
29
+ *, *::before, *::after {
30
+ box-sizing: border-box;
31
+ margin: 0;
32
+ padding: 0;
33
+ }
34
+
35
+ body {
36
+ background-color: var(--bg);
37
+ color: var(--text);
38
+ font-family: var(--font-body);
39
+ line-height: 1.6;
40
+ -webkit-font-smoothing: antialiased;
41
+ overflow-x: hidden;
42
+ background-image:
43
+ radial-gradient(circle at 15% 50%, rgba(192, 38, 211, 0.05) 0%, transparent 50%),
44
+ radial-gradient(circle at 85% 30%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
45
+ }
46
+
47
+ a {
48
+ color: var(--accent);
49
+ text-decoration: none;
50
+ transition: var(--transition);
51
+ }
52
+
53
+ a:hover {
54
+ color: var(--text);
55
+ text-shadow: var(--glow-gold);
56
+ }
57
+
58
+ .container {
59
+ width: 100%;
60
+ max-width: var(--container-w);
61
+ margin: 0 auto;
62
+ padding: 0 20px;
63
+ }
64
+
65
+ h1, h2, h3, .logo, .section-title {
66
+ font-family: var(--font-display);
67
+ line-height: 1.2;
68
+ }
69
+
70
+ /* Buttons (Global) */
71
+ .btn {
72
+ display: inline-flex;
73
+ align-items: center;
74
+ justify-content: center;
75
+ padding: 10px 24px;
76
+ border-radius: var(--radius-sm);
77
+ font-family: var(--font-display);
78
+ font-weight: 600;
79
+ text-transform: uppercase;
80
+ letter-spacing: 0.5px;
81
+ cursor: pointer;
82
+ transition: var(--transition);
83
+ text-decoration: none;
84
+ min-height: 44px;
85
+ }
86
+
87
+ .btn-primary {
88
+ background: linear-gradient(135deg, var(--accent), #b5952f);
89
+ color: var(--bg);
90
+ border: none;
91
+ box-shadow: var(--glow-gold);
92
+ }
93
+
94
+ .btn-primary:hover {
95
+ background: linear-gradient(135deg, #e6c24a, var(--accent));
96
+ transform: translateY(-2px);
97
+ color: var(--bg);
98
+ box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
99
+ }
100
+
101
+ .btn-secondary {
102
+ background: transparent;
103
+ color: var(--accent2);
104
+ border: 1px solid var(--accent2);
105
+ box-shadow: inset 0 0 10px rgba(192, 38, 211, 0.1);
106
+ }
107
+
108
+ .btn-secondary:hover {
109
+ background: rgba(192, 38, 211, 0.1);
110
+ color: #fff;
111
+ border-color: #fff;
112
+ box-shadow: var(--glow-magenta);
113
+ transform: translateY(-2px);
114
+ }
115
+
116
+ /* HEADER (Provided Structure Styling) */
117
+ header {
118
+ background: rgba(13, 7, 22, 0.85);
119
+ backdrop-filter: blur(12px);
120
+ -webkit-backdrop-filter: blur(12px);
121
+ border-bottom: var(--border-glass);
122
+ position: sticky;
123
+ top: 0;
124
+ z-index: 100;
125
+ }
126
+
127
+ .header-inner {
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: space-between;
131
+ height: 70px;
132
+ }
133
+
134
+ .logo a {
135
+ font-size: 28px;
136
+ font-weight: 700;
137
+ color: var(--text);
138
+ text-transform: uppercase;
139
+ letter-spacing: 2px;
140
+ text-shadow: 0 0 10px rgba(255,255,255,0.2);
141
+ }
142
+
143
+ #main-nav {
144
+ display: flex;
145
+ gap: 24px;
146
+ }
147
+
148
+ #main-nav a {
149
+ color: var(--text);
150
+ font-family: var(--font-display);
151
+ font-weight: 500;
152
+ font-size: 15px;
153
+ text-transform: uppercase;
154
+ position: relative;
155
+ }
156
+
157
+ #main-nav a::after {
158
+ content: '';
159
+ position: absolute;
160
+ bottom: -4px;
161
+ left: 0;
162
+ width: 0;
163
+ height: 2px;
164
+ background: var(--accent);
165
+ transition: var(--transition);
166
+ }
167
+
168
+ #main-nav a:hover::after {
169
+ width: 100%;
170
+ }
171
+
172
+ .header-ctas {
173
+ display: flex;
174
+ gap: 12px;
175
+ }
176
+
177
+ .menu-toggle {
178
+ display: none;
179
+ background: none;
180
+ border: none;
181
+ color: var(--text);
182
+ font-size: 28px;
183
+ cursor: pointer;
184
+ padding: 8px;
185
+ }
186
+
187
+ /* HERO BANNER */
188
+ .hero-banner {
189
+ position: relative;
190
+ padding: 60px 0 80px;
191
+ text-align: center;
192
+ border-bottom: var(--border-glass);
193
+ background:
194
+ linear-gradient(to bottom, rgba(26, 15, 46, 0.4), transparent),
195
+ radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
196
+ overflow: hidden;
197
+ }
198
+
199
+ .hero-banner::before {
200
+ content: '';
201
+ position: absolute;
202
+ top: 0; left: 50%;
203
+ transform: translateX(-50%);
204
+ width: 100%; max-width: 800px; height: 1px;
205
+ background: linear-gradient(90deg, transparent, var(--accent), transparent);
206
+ opacity: 0.5;
207
+ }
208
+
209
+ .breadcrumb {
210
+ font-size: 13px;
211
+ color: var(--muted);
212
+ margin-bottom: 24px;
213
+ display: inline-flex;
214
+ align-items: center;
215
+ background: var(--surface);
216
+ padding: 6px 16px;
217
+ border-radius: 20px;
218
+ border: var(--border-glass);
219
+ }
220
+
221
+ .hero-banner h1 {
222
+ font-size: clamp(32px, 5vw, 54px);
223
+ font-weight: 700;
224
+ margin-bottom: 24px;
225
+ color: #fff;
226
+ text-transform: uppercase;
227
+ letter-spacing: 1px;
228
+ background: linear-gradient(to right, #fff, var(--accent), #fff);
229
+ -webkit-background-clip: text;
230
+ -webkit-text-fill-color: transparent;
231
+ text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
232
+ }
233
+
234
+ .meta-chips {
235
+ display: flex;
236
+ justify-content: center;
237
+ gap: 12px;
238
+ flex-wrap: wrap;
239
+ }
240
+
241
+ .chip {
242
+ font-size: 13px;
243
+ font-family: var(--font-display);
244
+ color: var(--accent2);
245
+ background: rgba(192, 38, 211, 0.1);
246
+ border: 1px solid rgba(192, 38, 211, 0.3);
247
+ padding: 6px 14px;
248
+ border-radius: 4px;
249
+ text-transform: uppercase;
250
+ letter-spacing: 0.5px;
251
+ }
252
+
253
+ /* MAIN CONTENT AREA */
254
+ .content-area {
255
+ padding: 60px 0;
256
+ position: relative;
257
+ }
258
+
259
+ .content-wrapper {
260
+ max-width: 860px;
261
+ margin: 0 auto;
262
+ }
263
+
264
+ .intro-block {
265
+ background: var(--surface);
266
+ border-left: 4px solid var(--accent);
267
+ padding: 30px;
268
+ border-radius: 0 var(--radius-md) var(--radius-md) 0;
269
+ margin-bottom: 50px;
270
+ box-shadow: var(--glow-jade);
271
+ font-size: 17px;
272
+ color: #e2dbea;
273
+ line-height: 1.8;
274
+ }
275
+
276
+ .text-section {
277
+ margin-bottom: 50px;
278
+ }
279
+
280
+ .text-section h2 {
281
+ font-size: 28px;
282
+ color: var(--accent);
283
+ margin-bottom: 20px;
284
+ display: flex;
285
+ align-items: center;
286
+ gap: 12px;
287
+ }
288
+
289
+ .text-section h2::before {
290
+ content: '⬢';
291
+ font-size: 16px;
292
+ color: var(--jade);
293
+ text-shadow: 0 0 10px var(--jade);
294
+ }
295
+
296
+ .text-section p {
297
+ margin-bottom: 20px;
298
+ color: var(--muted);
299
+ font-size: 16px;
300
+ line-height: 1.7;
301
+ }
302
+
303
+ .text-section p:last-child {
304
+ margin-bottom: 0;
305
+ }
306
+
307
+ .text-section a {
308
+ font-weight: 600;
309
+ border-bottom: 1px dashed var(--accent);
310
+ }
311
+
312
+ .text-section a:hover {
313
+ border-bottom-style: solid;
314
+ }
315
+
316
+ /* Feature List Styling */
317
+ .feature-list {
318
+ list-style: none;
319
+ margin-top: 20px;
320
+ display: grid;
321
+ gap: 16px;
322
+ }
323
+
324
+ .feature-list li {
325
+ background: rgba(26, 15, 46, 0.5);
326
+ border: var(--border-glass);
327
+ padding: 16px 20px;
328
+ border-radius: var(--radius-sm);
329
+ display: flex;
330
+ align-items: flex-start;
331
+ gap: 16px;
332
+ color: var(--text);
333
+ transition: var(--transition);
334
+ }
335
+
336
+ .feature-list li:hover {
337
+ background: var(--surface);
338
+ border-color: rgba(212, 175, 55, 0.3);
339
+ transform: translateX(5px);
340
+ }
341
+
342
+ .feature-list li::before {
343
+ content: '✓';
344
+ font-family: var(--font-display);
345
+ font-weight: bold;
346
+ color: var(--accent2);
347
+ background: rgba(192, 38, 211, 0.15);
348
+ width: 24px;
349
+ height: 24px;
350
+ display: flex;
351
+ align-items: center;
352
+ justify-content: center;
353
+ border-radius: 50%;
354
+ flex-shrink: 0;
355
+ margin-top: 2px;
356
+ }
357
+
358
+ /* FAQ SECTION */
359
+ .faq-section {
360
+ margin: 60px 0;
361
+ }
362
+
363
+ .section-title {
364
+ text-align: center;
365
+ font-size: 32px;
366
+ margin-bottom: 40px;
367
+ color: #fff;
368
+ }
369
+
370
+ .faq-grid {
371
+ display: flex;
372
+ flex-direction: column;
373
+ gap: 16px;
374
+ }
375
+
376
+ details {
377
+ background: var(--surface);
378
+ border: var(--border-glass);
379
+ border-radius: var(--radius-sm);
380
+ overflow: hidden;
381
+ transition: var(--transition);
382
+ }
383
+
384
+ details[open] {
385
+ border-color: rgba(212, 175, 55, 0.3);
386
+ box-shadow: 0 5px 15px rgba(0,0,0,0.3);
387
+ }
388
+
389
+ summary {
390
+ padding: 20px 24px;
391
+ font-family: var(--font-display);
392
+ font-size: 18px;
393
+ font-weight: 600;
394
+ cursor: pointer;
395
+ list-style: none;
396
+ display: flex;
397
+ justify-content: space-between;
398
+ align-items: center;
399
+ color: var(--text);
400
+ }
401
+
402
+ summary::-webkit-details-marker {
403
+ display: none;
404
+ }
405
+
406
+ summary::after {
407
+ content: '+';
408
+ font-size: 24px;
409
+ color: var(--accent);
410
+ transition: transform 0.3s ease;
411
+ }
412
+
413
+ details[open] summary::after {
414
+ transform: rotate(45deg);
415
+ color: var(--accent2);
416
+ }
417
+
418
+ details p {
419
+ padding: 0 24px 24px;
420
+ color: var(--muted);
421
+ line-height: 1.7;
422
+ margin: 0;
423
+ border-top: 1px solid rgba(255,255,255,0.05);
424
+ padding-top: 20px;
425
+ }
426
+
427
+ /* RELATED LINKS (Navigasi Kreatif) */
428
+ .related-nav {
429
+ margin: 80px 0;
430
+ }
431
+
432
+ .related-grid {
433
+ display: grid;
434
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
435
+ gap: 20px;
436
+ }
437
+
438
+ .related-card {
439
+ background: linear-gradient(145deg, var(--surface), #150c26);
440
+ border: 1px solid rgba(212, 175, 55, 0.15);
441
+ padding: 24px;
442
+ border-radius: var(--radius-md);
443
+ text-align: center;
444
+ display: flex;
445
+ flex-direction: column;
446
+ align-items: center;
447
+ gap: 12px;
448
+ position: relative;
449
+ overflow: hidden;
450
+ z-index: 1;
451
+ }
452
+
453
+ .related-card::before {
454
+ content: '';
455
+ position: absolute;
456
+ top: 0; left: 0; width: 100%; height: 100%;
457
+ background: radial-gradient(circle at 50% 0%, rgba(192, 38, 211, 0.1), transparent 70%);
458
+ z-index: -1;
459
+ opacity: 0;
460
+ transition: var(--transition);
461
+ }
462
+
463
+ .related-card:hover {
464
+ border-color: var(--accent);
465
+ transform: translateY(-5px);
466
+ box-shadow: var(--glow-gold);
467
+ }
468
+
469
+ .related-card:hover::before {
470
+ opacity: 1;
471
+ }
472
+
473
+ .related-card .icon {
474
+ font-size: 32px;
475
+ color: var(--jade);
476
+ margin-bottom: 8px;
477
+ }
478
+
479
+ .related-card a {
480
+ font-family: var(--font-display);
481
+ font-size: 18px;
482
+ font-weight: 600;
483
+ color: var(--text);
484
+ text-transform: uppercase;
485
+ border: none;
486
+ }
487
+
488
+ .related-card a::before {
489
+ content: '';
490
+ position: absolute;
491
+ top: 0; left: 0; right: 0; bottom: 0;
492
+ }
493
+
494
+ .related-card:hover a {
495
+ color: var(--accent);
496
+ text-shadow: none;
497
+ }
498
+
499
+ /* FINAL CTA */
500
+ .final-cta {
501
+ background: linear-gradient(135deg, #2a1040 0%, #110920 100%);
502
+ border: 1px solid rgba(192, 38, 211, 0.3);
503
+ border-radius: var(--radius-lg);
504
+ padding: 60px 40px;
505
+ text-align: center;
506
+ margin-bottom: 80px;
507
+ position: relative;
508
+ overflow: hidden;
509
+ box-shadow: 0 20px 40px rgba(0,0,0,0.5);
510
+ }
511
+
512
+ .final-cta::after {
513
+ content: '';
514
+ position: absolute;
515
+ top: -50%; left: -50%;
516
+ width: 200%; height: 200%;
517
+ background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
518
+ animation: rotateGlow 20s linear infinite;
519
+ z-index: 0;
520
+ pointer-events: none;
521
+ }
522
+
523
+ @keyframes rotateGlow {
524
+ 0% { transform: rotate(0deg); }
525
+ 100% { transform: rotate(360deg); }
526
+ }
527
+
528
+ .cta-content {
529
+ position: relative;
530
+ z-index: 1;
531
+ }
532
+
533
+ .final-cta h2 {
534
+ font-size: 36px;
535
+ color: #fff;
536
+ margin-bottom: 16px;
537
+ }
538
+
539
+ .final-cta p {
540
+ font-size: 18px;
541
+ color: var(--muted);
542
+ margin-bottom: 32px;
543
+ max-width: 600px;
544
+ margin-left: auto;
545
+ margin-right: auto;
546
+ }
547
+
548
+ .cta-btn-group {
549
+ display: flex;
550
+ justify-content: center;
551
+ gap: 20px;
552
+ flex-wrap: wrap;
553
+ }
554
+
555
+ .cta-btn-group .btn {
556
+ font-size: 16px;
557
+ padding: 14px 32px;
558
+ }
559
+
560
+ /* FOOTER (Provided Structure Styling) */
561
+ footer {
562
+ background: #08040d;
563
+ border-top: 1px solid rgba(245, 240, 255, 0.05);
564
+ padding: 60px 0 30px;
565
+ text-align: center;
566
+ }
567
+
568
+ .footer-brand {
569
+ font-family: var(--font-display);
570
+ font-size: 32px;
571
+ font-weight: 700;
572
+ color: var(--text);
573
+ text-transform: uppercase;
574
+ letter-spacing: 2px;
575
+ margin-bottom: 16px;
576
+ }
577
+
578
+ .footer-tagline {
579
+ color: var(--muted);
580
+ margin-bottom: 32px;
581
+ font-size: 15px;
582
+ }
583
+
584
+ .footer-links {
585
+ display: flex;
586
+ flex-wrap: wrap;
587
+ justify-content: center;
588
+ gap: 16px 24px;
589
+ margin-bottom: 40px;
590
+ max-width: 800px;
591
+ margin-left: auto;
592
+ margin-right: auto;
593
+ }
594
+
595
+ .footer-links a {
596
+ color: var(--muted);
597
+ font-size: 14px;
598
+ }
599
+
600
+ .footer-links a:hover {
601
+ color: var(--accent);
602
+ }
603
+
604
+ .copyright {
605
+ color: #554e66;
606
+ font-size: 13px;
607
+ border-top: 1px solid rgba(255,255,255,0.05);
608
+ padding-top: 24px;
609
+ }
610
+
611
+ /* RESPONSIVE DESIGN */
612
+ @media (max-width: 1024px) {
613
+ .hero-banner h1 { font-size: 42px; }
614
+ }
615
+
616
+ @media (max-width: 768px) {
617
+ .header-ctas { display: none; }
618
+ .menu-toggle { display: block; }
619
+
620
+ #main-nav {
621
+ display: none;
622
+ position: absolute;
623
+ top: 70px;
624
+ left: 0;
625
+ width: 100%;
626
+ background: var(--surface);
627
+ flex-direction: column;
628
+ padding: 20px;
629
+ border-bottom: var(--border-glass);
630
+ gap: 16px;
631
+ text-align: center;
632
+ }
633
+
634
+ #main-nav.active {
635
+ display: flex;
636
+ }
637
+
638
+ .intro-block {
639
+ padding: 20px;
640
+ font-size: 15px;
641
+ }
642
+
643
+ .text-section h2 {
644
+ font-size: 24px;
645
+ }
646
+
647
+ .final-cta {
648
+ padding: 40px 20px;
649
+ }
650
+
651
+ .final-cta h2 {
652
+ font-size: 28px;
653
+ }
654
+ }
655
+
656
+ @media (max-width: 390px) {
657
+ .hero-banner { padding: 40px 0; }
658
+ .hero-banner h1 { font-size: 28px; }
659
+
660
+ .breadcrumb {
661
+ font-size: 11px;
662
+ padding: 4px 12px;
663
+ }
664
+
665
+ .meta-chips {
666
+ flex-direction: column;
667
+ align-items: center;
668
+ gap: 8px;
669
+ }
670
+
671
+ .content-area { padding: 40px 0; }
672
+
673
+ .text-section h2 {
674
+ font-size: 22px;
675
+ align-items: flex-start;
676
+ }
677
+
678
+ .text-section h2::before {
679
+ margin-top: 6px;
680
+ }
681
+
682
+ summary {
683
+ font-size: 16px;
684
+ padding: 16px;
685
+ }
686
+
687
+ .cta-btn-group {
688
+ flex-direction: column;
689
+ width: 100%;
690
+ }
691
+
692
+ .cta-btn-group .btn {
693
+ width: 100%;
694
+ }
695
+
696
+ .footer-links {
697
+ flex-direction: column;
698
+ gap: 12px;
699
+ }
700
+ }
701
+
702
+
703
+ /* pipeline image & layout guards */
704
+ html, body { overflow-x: clip; }
705
+ img { max-width: 100%; height: auto; }
706
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
707
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
708
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
709
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
710
+ /* 合规声明块(zb-disclaimer,全站 footer) */
711
+ .zb-disclaimer { margin-top: 18px; padding-top: 14px; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); font-size: .72rem; line-height: 1.65; opacity: .8; display: grid; gap: 6px; }
712
+ .zb-disclaimer .zb-18 { justify-self: start; display: inline-flex; align-items: center; padding: 2px 10px; border: 1.5px solid currentColor; border-radius: 8px; font-weight: 800; letter-spacing: 1px; }