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