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