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