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