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