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