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