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