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,672 @@
1
+ :root {
2
+ --bg: #0d0716;
3
+ --surface: #1a0f2e;
4
+ --surface-hover: #23153d;
5
+ --accent: #d4af37;
6
+ --accent-glow: rgba(212, 175, 55, 0.4);
7
+ --accent2: #c026d3;
8
+ --accent2-glow: rgba(192, 38, 211, 0.4);
9
+ --text: #f5f0ff;
10
+ --muted: #9d94b8;
11
+ --font-display: 'Chakra Petch', sans-serif;
12
+ --font-body: 'Manrope', sans-serif;
13
+ --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
14
+ --radius-sm: 4px;
15
+ --radius-md: 8px;
16
+ --radius-lg: 16px;
17
+ }
18
+
19
+ * {
20
+ margin: 0;
21
+ padding: 0;
22
+ box-sizing: border-box;
23
+ }
24
+
25
+ body {
26
+ font-family: var(--font-body);
27
+ background-color: var(--bg);
28
+ color: var(--text);
29
+ line-height: 1.6;
30
+ -webkit-font-smoothing: antialiased;
31
+ overflow-x: hidden;
32
+ }
33
+
34
+ a {
35
+ color: var(--accent);
36
+ text-decoration: none;
37
+ transition: var(--transition);
38
+ }
39
+
40
+ a:hover {
41
+ color: var(--accent2);
42
+ text-shadow: 0 0 8px var(--accent2-glow);
43
+ }
44
+
45
+ .container {
46
+ width: 100%;
47
+ max-width: 1280px;
48
+ margin: 0 auto;
49
+ padding: 0 20px;
50
+ }
51
+
52
+ /* Typography */
53
+ h1, h2, h3, h4, .font-display {
54
+ font-family: var(--font-display);
55
+ font-weight: 700;
56
+ line-height: 1.2;
57
+ text-transform: uppercase;
58
+ letter-spacing: 0.5px;
59
+ }
60
+
61
+ /* --- Header Styles (Matching homepage family) --- */
62
+ header {
63
+ background-color: rgba(13, 7, 22, 0.9);
64
+ backdrop-filter: blur(10px);
65
+ border-bottom: 1px solid rgba(212, 175, 55, 0.2);
66
+ position: sticky;
67
+ top: 0;
68
+ z-index: 100;
69
+ padding: 15px 0;
70
+ }
71
+
72
+ .header-inner {
73
+ display: flex;
74
+ justify-content: space-between;
75
+ align-items: center;
76
+ }
77
+
78
+ .logo a {
79
+ font-family: var(--font-display);
80
+ font-size: 28px;
81
+ font-weight: 700;
82
+ color: var(--accent);
83
+ text-transform: uppercase;
84
+ letter-spacing: 2px;
85
+ text-shadow: 0 0 10px var(--accent-glow);
86
+ }
87
+
88
+ #main-nav {
89
+ display: flex;
90
+ gap: 24px;
91
+ }
92
+
93
+ #main-nav a {
94
+ color: var(--text);
95
+ font-weight: 500;
96
+ font-size: 15px;
97
+ }
98
+
99
+ #main-nav a:hover {
100
+ color: var(--accent);
101
+ }
102
+
103
+ .header-ctas {
104
+ display: flex;
105
+ gap: 12px;
106
+ }
107
+
108
+ .btn {
109
+ display: inline-flex;
110
+ align-items: center;
111
+ justify-content: center;
112
+ padding: 10px 20px;
113
+ border-radius: var(--radius-sm);
114
+ font-family: var(--font-display);
115
+ font-weight: 600;
116
+ text-transform: uppercase;
117
+ letter-spacing: 1px;
118
+ cursor: pointer;
119
+ transition: var(--transition);
120
+ min-height: 44px;
121
+ }
122
+
123
+ .btn-primary {
124
+ background: linear-gradient(45deg, var(--accent), #e8c96b);
125
+ color: #000;
126
+ border: none;
127
+ box-shadow: 0 0 15px var(--accent-glow);
128
+ }
129
+
130
+ .btn-primary:hover {
131
+ background: linear-gradient(45deg, #e8c96b, var(--accent));
132
+ transform: translateY(-2px);
133
+ box-shadow: 0 0 25px var(--accent-glow);
134
+ color: #000;
135
+ }
136
+
137
+ .btn-secondary {
138
+ background: transparent;
139
+ color: var(--accent2);
140
+ border: 1px solid var(--accent2);
141
+ box-shadow: inset 0 0 10px rgba(192, 38, 211, 0.2);
142
+ }
143
+
144
+ .btn-secondary:hover {
145
+ background: rgba(192, 38, 211, 0.1);
146
+ box-shadow: inset 0 0 15px rgba(192, 38, 211, 0.4), 0 0 15px var(--accent2-glow);
147
+ color: var(--accent2);
148
+ }
149
+
150
+ .menu-toggle {
151
+ display: none;
152
+ background: none;
153
+ border: none;
154
+ color: var(--accent);
155
+ font-size: 28px;
156
+ cursor: pointer;
157
+ min-width: 44px;
158
+ min-height: 44px;
159
+ }
160
+
161
+ /* --- Page Specific: Hero Banner --- */
162
+ .hero-banner {
163
+ position: relative;
164
+ padding: 80px 0 60px;
165
+ background: radial-gradient(circle at 50% 0%, rgba(192, 38, 211, 0.15) 0%, transparent 70%),
166
+ linear-gradient(to bottom, var(--surface), var(--bg));
167
+ border-bottom: 1px solid rgba(192, 38, 211, 0.3);
168
+ text-align: center;
169
+ overflow: hidden;
170
+ }
171
+
172
+ .hero-banner::before {
173
+ content: '';
174
+ position: absolute;
175
+ top: 0; left: 0; right: 0; bottom: 0;
176
+ background-image:
177
+ linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
178
+ linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
179
+ background-size: 30px 30px;
180
+ opacity: 0.5;
181
+ pointer-events: none;
182
+ }
183
+
184
+ .breadcrumb {
185
+ font-size: 13px;
186
+ color: var(--muted);
187
+ margin-bottom: 24px;
188
+ display: inline-block;
189
+ background: rgba(0,0,0,0.4);
190
+ padding: 6px 16px;
191
+ border-radius: 20px;
192
+ border: 1px solid rgba(157, 148, 184, 0.2);
193
+ position: relative;
194
+ z-index: 2;
195
+ }
196
+
197
+ .hero-banner h1 {
198
+ font-size: clamp(32px, 5vw, 56px);
199
+ background: linear-gradient(to right, var(--text), var(--accent), var(--text));
200
+ -webkit-background-clip: text;
201
+ background-clip: text;
202
+ color: transparent;
203
+ margin-bottom: 24px;
204
+ text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
205
+ position: relative;
206
+ z-index: 2;
207
+ }
208
+
209
+ .meta-chips {
210
+ display: flex;
211
+ justify-content: center;
212
+ gap: 12px;
213
+ position: relative;
214
+ z-index: 2;
215
+ flex-wrap: wrap;
216
+ }
217
+
218
+ .chip {
219
+ font-family: var(--font-display);
220
+ font-size: 12px;
221
+ font-weight: 600;
222
+ color: var(--accent2);
223
+ background: rgba(192, 38, 211, 0.1);
224
+ border: 1px solid rgba(192, 38, 211, 0.3);
225
+ padding: 6px 14px;
226
+ border-radius: var(--radius-sm);
227
+ text-transform: uppercase;
228
+ letter-spacing: 1px;
229
+ box-shadow: 0 0 10px rgba(192, 38, 211, 0.1);
230
+ }
231
+
232
+ /* --- Main Content Area --- */
233
+ .content-wrapper {
234
+ padding: 60px 0;
235
+ max-width: 900px;
236
+ margin: 0 auto;
237
+ }
238
+
239
+ .intro-block {
240
+ font-size: 18px;
241
+ color: var(--text);
242
+ background: linear-gradient(135deg, rgba(26, 15, 46, 0.8), rgba(13, 7, 22, 0.9));
243
+ padding: 30px;
244
+ border-left: 4px solid var(--accent);
245
+ border-radius: 0 var(--radius-md) var(--radius-md) 0;
246
+ margin-bottom: 60px;
247
+ box-shadow: 0 10px 30px rgba(0,0,0,0.5);
248
+ position: relative;
249
+ }
250
+
251
+ .intro-block::after {
252
+ content: '';
253
+ position: absolute;
254
+ top: 0; right: 0; bottom: 0; left: 0;
255
+ border: 1px solid rgba(212, 175, 55, 0.1);
256
+ border-left: none;
257
+ border-radius: 0 var(--radius-md) var(--radius-md) 0;
258
+ pointer-events: none;
259
+ }
260
+
261
+ /* Guide Modules (H2 Sections) */
262
+ .guide-module {
263
+ background: var(--surface);
264
+ border: 1px solid rgba(157, 148, 184, 0.1);
265
+ border-radius: var(--radius-lg);
266
+ padding: 40px;
267
+ margin-bottom: 40px;
268
+ position: relative;
269
+ transition: var(--transition);
270
+ overflow: hidden;
271
+ }
272
+
273
+ .guide-module:hover {
274
+ border-color: rgba(192, 38, 211, 0.4);
275
+ box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(192, 38, 211, 0.05);
276
+ transform: translateY(-2px);
277
+ }
278
+
279
+ /* Decorative Numbering */
280
+ body {
281
+ counter-reset: guide-counter;
282
+ }
283
+
284
+ .guide-module::before {
285
+ counter-increment: guide-counter;
286
+ content: "0" counter(guide-counter);
287
+ position: absolute;
288
+ top: -15px;
289
+ right: 20px;
290
+ font-family: var(--font-display);
291
+ font-size: 120px;
292
+ font-weight: 700;
293
+ color: rgba(255,255,255,0.02);
294
+ line-height: 1;
295
+ pointer-events: none;
296
+ transition: var(--transition);
297
+ }
298
+
299
+ .guide-module:hover::before {
300
+ color: rgba(192, 38, 211, 0.05);
301
+ transform: scale(1.1);
302
+ }
303
+
304
+ .guide-module h2 {
305
+ font-size: 24px;
306
+ color: var(--accent);
307
+ margin-bottom: 24px;
308
+ display: flex;
309
+ align-items: center;
310
+ gap: 15px;
311
+ position: relative;
312
+ z-index: 2;
313
+ }
314
+
315
+ .guide-module h2::before {
316
+ content: '';
317
+ display: block;
318
+ width: 30px;
319
+ height: 2px;
320
+ background: var(--accent2);
321
+ box-shadow: 0 0 8px var(--accent2-glow);
322
+ }
323
+
324
+ .guide-module p {
325
+ color: var(--muted);
326
+ margin-bottom: 20px;
327
+ position: relative;
328
+ z-index: 2;
329
+ }
330
+
331
+ .guide-module p:last-child {
332
+ margin-bottom: 0;
333
+ }
334
+
335
+ .guide-module a {
336
+ font-weight: 700;
337
+ border-bottom: 1px dashed var(--accent);
338
+ padding-bottom: 2px;
339
+ }
340
+
341
+ .guide-module a:hover {
342
+ border-bottom-style: solid;
343
+ border-color: var(--accent2);
344
+ }
345
+
346
+ /* Custom List Styling */
347
+ .custom-list {
348
+ list-style: none;
349
+ margin: 24px 0 0 0;
350
+ padding: 0;
351
+ position: relative;
352
+ z-index: 2;
353
+ }
354
+
355
+ .custom-list li {
356
+ position: relative;
357
+ padding-left: 35px;
358
+ margin-bottom: 16px;
359
+ color: var(--text);
360
+ }
361
+
362
+ .custom-list li::before {
363
+ content: '▹';
364
+ position: absolute;
365
+ left: 0;
366
+ top: -2px;
367
+ font-family: var(--font-display);
368
+ font-size: 20px;
369
+ color: var(--accent2);
370
+ text-shadow: 0 0 10px var(--accent2-glow);
371
+ }
372
+
373
+ /* --- FAQ Section --- */
374
+ .faq-section {
375
+ margin-top: 80px;
376
+ }
377
+
378
+ .section-title {
379
+ text-align: center;
380
+ font-size: 32px;
381
+ margin-bottom: 40px;
382
+ color: var(--text);
383
+ }
384
+
385
+ .section-title span {
386
+ color: var(--accent);
387
+ }
388
+
389
+ .faq-item {
390
+ background: var(--surface);
391
+ border: 1px solid rgba(157, 148, 184, 0.1);
392
+ border-radius: var(--radius-md);
393
+ margin-bottom: 16px;
394
+ overflow: hidden;
395
+ transition: var(--transition);
396
+ }
397
+
398
+ .faq-item:hover {
399
+ border-color: rgba(212, 175, 55, 0.3);
400
+ }
401
+
402
+ .faq-item summary {
403
+ padding: 20px 24px;
404
+ font-family: var(--font-display);
405
+ font-weight: 600;
406
+ font-size: 18px;
407
+ color: var(--text);
408
+ cursor: pointer;
409
+ list-style: none;
410
+ display: flex;
411
+ justify-content: space-between;
412
+ align-items: center;
413
+ position: relative;
414
+ }
415
+
416
+ .faq-item summary::-webkit-details-marker {
417
+ display: none;
418
+ }
419
+
420
+ .faq-item summary::after {
421
+ content: '+';
422
+ font-size: 24px;
423
+ color: var(--accent);
424
+ transition: transform 0.3s ease;
425
+ }
426
+
427
+ .faq-item[open] summary::after {
428
+ transform: rotate(45deg);
429
+ color: var(--accent2);
430
+ }
431
+
432
+ .faq-item p {
433
+ padding: 0 24px 24px;
434
+ color: var(--muted);
435
+ border-top: 1px solid rgba(255,255,255,0.05);
436
+ margin-top: 10px;
437
+ padding-top: 20px;
438
+ }
439
+
440
+ /* --- Related Links Box --- */
441
+ .related-nav {
442
+ margin: 60px 0;
443
+ padding: 40px;
444
+ background: linear-gradient(to right, rgba(26, 15, 46, 0.5), rgba(192, 38, 211, 0.05), rgba(26, 15, 46, 0.5));
445
+ border-radius: var(--radius-lg);
446
+ border: 1px solid rgba(192, 38, 211, 0.2);
447
+ text-align: center;
448
+ }
449
+
450
+ .related-nav h3 {
451
+ font-size: 20px;
452
+ color: var(--text);
453
+ margin-bottom: 24px;
454
+ letter-spacing: 2px;
455
+ }
456
+
457
+ .related-grid {
458
+ display: flex;
459
+ flex-wrap: wrap;
460
+ justify-content: center;
461
+ gap: 16px;
462
+ }
463
+
464
+ .related-grid a {
465
+ display: inline-block;
466
+ padding: 12px 24px;
467
+ background: rgba(13, 7, 22, 0.8);
468
+ border: 1px solid rgba(212, 175, 55, 0.3);
469
+ border-radius: var(--radius-sm);
470
+ font-family: var(--font-display);
471
+ font-weight: 600;
472
+ text-transform: uppercase;
473
+ font-size: 14px;
474
+ letter-spacing: 1px;
475
+ color: var(--accent);
476
+ }
477
+
478
+ .related-grid a:hover {
479
+ background: rgba(212, 175, 55, 0.1);
480
+ border-color: var(--accent);
481
+ box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
482
+ transform: translateY(-2px);
483
+ color: var(--text);
484
+ }
485
+
486
+ /* --- Grand CTA --- */
487
+ .grand-cta {
488
+ text-align: center;
489
+ padding: 60px 40px;
490
+ background: radial-gradient(circle at center, rgba(192, 38, 211, 0.2) 0%, rgba(26, 15, 46, 0) 70%);
491
+ border-top: 1px solid rgba(192, 38, 211, 0.2);
492
+ border-bottom: 1px solid rgba(192, 38, 211, 0.2);
493
+ margin: 80px 0;
494
+ position: relative;
495
+ }
496
+
497
+ .grand-cta h3 {
498
+ font-size: 36px;
499
+ margin-bottom: 16px;
500
+ color: var(--text);
501
+ text-shadow: 0 0 20px rgba(255,255,255,0.2);
502
+ }
503
+
504
+ .grand-cta p {
505
+ color: var(--muted);
506
+ margin-bottom: 32px;
507
+ font-size: 18px;
508
+ }
509
+
510
+ .cta-buttons {
511
+ display: flex;
512
+ justify-content: center;
513
+ gap: 20px;
514
+ }
515
+
516
+ .cta-buttons .btn {
517
+ padding: 15px 40px;
518
+ font-size: 16px;
519
+ }
520
+
521
+ /* --- Footer Styles (Matching homepage family) --- */
522
+ footer {
523
+ background-color: #08040d;
524
+ padding: 60px 0 30px;
525
+ border-top: 1px solid rgba(212, 175, 55, 0.2);
526
+ text-align: center;
527
+ }
528
+
529
+ .footer-brand {
530
+ font-family: var(--font-display);
531
+ font-size: 32px;
532
+ font-weight: 700;
533
+ color: var(--accent);
534
+ text-transform: uppercase;
535
+ letter-spacing: 3px;
536
+ margin-bottom: 16px;
537
+ text-shadow: 0 0 15px var(--accent-glow);
538
+ }
539
+
540
+ .footer-tagline {
541
+ color: var(--muted);
542
+ margin-bottom: 30px;
543
+ font-size: 15px;
544
+ }
545
+
546
+ .footer-links {
547
+ display: flex;
548
+ flex-wrap: wrap;
549
+ justify-content: center;
550
+ gap: 20px;
551
+ margin-bottom: 40px;
552
+ }
553
+
554
+ .footer-links a {
555
+ color: var(--text);
556
+ font-size: 14px;
557
+ }
558
+
559
+ .footer-links a:hover {
560
+ color: var(--accent2);
561
+ }
562
+
563
+ .copyright {
564
+ color: rgba(157, 148, 184, 0.5);
565
+ font-size: 13px;
566
+ border-top: 1px solid rgba(255,255,255,0.05);
567
+ padding-top: 20px;
568
+ }
569
+
570
+ /* --- Responsive Design --- */
571
+ @media (max-width: 1024px) {
572
+ #main-nav {
573
+ display: none;
574
+ position: absolute;
575
+ top: 100%;
576
+ left: 0;
577
+ width: 100%;
578
+ background: rgba(13, 7, 22, 0.95);
579
+ backdrop-filter: blur(10px);
580
+ flex-direction: column;
581
+ padding: 20px;
582
+ border-bottom: 1px solid rgba(212, 175, 55, 0.2);
583
+ }
584
+
585
+ #main-nav.active {
586
+ display: flex;
587
+ }
588
+
589
+ .header-ctas {
590
+ display: none;
591
+ }
592
+
593
+ .header-ctas.active {
594
+ display: flex;
595
+ position: absolute;
596
+ top: calc(100% + 220px); /* Adjust based on menu height */
597
+ left: 0;
598
+ width: 100%;
599
+ background: rgba(13, 7, 22, 0.95);
600
+ padding: 0 20px 20px;
601
+ justify-content: center;
602
+ border-bottom: 1px solid rgba(212, 175, 55, 0.2);
603
+ }
604
+
605
+ .menu-toggle {
606
+ display: block;
607
+ }
608
+ }
609
+
610
+ @media (max-width: 768px) {
611
+ .hero-banner {
612
+ padding: 60px 0 40px;
613
+ }
614
+ .content-wrapper {
615
+ padding: 40px 0;
616
+ }
617
+ .guide-module {
618
+ padding: 30px 20px;
619
+ }
620
+ .guide-module h2 {
621
+ font-size: 20px;
622
+ }
623
+ .guide-module::before {
624
+ font-size: 80px;
625
+ top: -5px;
626
+ right: 10px;
627
+ }
628
+ .related-nav {
629
+ padding: 30px 20px;
630
+ }
631
+ .cta-buttons {
632
+ flex-direction: column;
633
+ }
634
+ .grand-cta h3 {
635
+ font-size: 28px;
636
+ }
637
+ }
638
+
639
+ @media (max-width: 390px) {
640
+ .hero-banner h1 {
641
+ font-size: 28px;
642
+ }
643
+ .intro-block {
644
+ padding: 20px;
645
+ font-size: 16px;
646
+ }
647
+ .meta-chips {
648
+ flex-direction: column;
649
+ align-items: center;
650
+ }
651
+ .chip {
652
+ width: 100%;
653
+ max-width: 200px;
654
+ text-align: center;
655
+ }
656
+ .faq-item summary {
657
+ font-size: 16px;
658
+ padding: 16px;
659
+ }
660
+ }
661
+
662
+
663
+ /* pipeline image & layout guards */
664
+ html, body { overflow-x: clip; }
665
+ img { max-width: 100%; height: auto; }
666
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
667
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
668
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
669
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
670
+ /* 合规声明块(zb-disclaimer,全站 footer) */
671
+ .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; }
672
+ .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; }