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