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