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