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