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