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