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