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