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