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