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