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