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