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