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