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