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
package/kc9/style.css ADDED
@@ -0,0 +1,787 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600&family=Orbitron:wght@500;700;900&display=swap');
2
+
3
+ :root {
4
+ --bg: #150715;
5
+ --surface: #291033;
6
+ --surface-light: #3a1545;
7
+ --accent: #f5c542;
8
+ --accent-dark: #c29921;
9
+ --accent2: #e040fb;
10
+ --text: #fdf4ff;
11
+ --muted: #b595b8;
12
+ --gold-grad: linear-gradient(135deg, #f5c542 0%, #c29921 50%, #f5c542 100%);
13
+ --velvet-grad: radial-gradient(circle at top right, #3a1545, #150715 70%);
14
+ --radius-sm: 8px;
15
+ --radius-md: 16px;
16
+ --radius-lg: 24px;
17
+ --transition: all 0.3s ease;
18
+ }
19
+
20
+ * {
21
+ margin: 0;
22
+ padding: 0;
23
+ box-sizing: border-box;
24
+ }
25
+
26
+ body {
27
+ font-family: 'Exo 2', sans-serif;
28
+ background-color: var(--bg);
29
+ color: var(--text);
30
+ line-height: 1.6;
31
+ overflow-x: hidden;
32
+ -webkit-font-smoothing: antialiased;
33
+ }
34
+
35
+ h1, h2, h3, h4, h5, h6, .display-font {
36
+ font-family: 'Orbitron', sans-serif;
37
+ font-weight: 700;
38
+ line-height: 1.2;
39
+ }
40
+
41
+ a {
42
+ color: var(--accent);
43
+ text-decoration: none;
44
+ transition: var(--transition);
45
+ }
46
+
47
+ a:hover {
48
+ color: var(--text);
49
+ }
50
+
51
+ img {
52
+ max-width: 100%;
53
+ height: auto;
54
+ display: block;
55
+ }
56
+
57
+ .container {
58
+ width: 100%;
59
+ max-width: 1280px;
60
+ margin: 0 auto;
61
+ padding: 0 20px;
62
+ }
63
+
64
+ /* Typography */
65
+ h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; color: var(--text); }
66
+ h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; color: var(--accent); text-align: center; }
67
+ h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--accent2); }
68
+ p { margin-bottom: 1rem; color: var(--muted); }
69
+
70
+ .text-center { text-align: center; }
71
+
72
+ /* Motif & Decor */
73
+ .sultan-border {
74
+ position: relative;
75
+ }
76
+ .sultan-border::before {
77
+ content: '';
78
+ position: absolute;
79
+ top: 0; left: 0; right: 0; bottom: 0;
80
+ border: 2px solid transparent;
81
+ border-image: var(--gold-grad) 1;
82
+ pointer-events: none;
83
+ z-index: 1;
84
+ }
85
+
86
+ /* Buttons */
87
+ .btn {
88
+ display: inline-flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ padding: 14px 28px;
92
+ font-family: 'Orbitron', sans-serif;
93
+ font-size: 1rem;
94
+ font-weight: 700;
95
+ border-radius: var(--radius-sm);
96
+ cursor: pointer;
97
+ transition: var(--transition);
98
+ text-transform: uppercase;
99
+ letter-spacing: 1px;
100
+ min-height: 44px;
101
+ text-align: center;
102
+ }
103
+
104
+ .btn-primary {
105
+ background: var(--gold-grad);
106
+ color: var(--bg);
107
+ border: none;
108
+ box-shadow: 0 4px 15px rgba(245, 197, 66, 0.3);
109
+ }
110
+
111
+ .btn-primary:hover {
112
+ background: linear-gradient(135deg, #fff 0%, #f5c542 50%, #c29921 100%);
113
+ color: var(--bg);
114
+ transform: translateY(-2px);
115
+ box-shadow: 0 6px 20px rgba(245, 197, 66, 0.5);
116
+ }
117
+
118
+ .btn-secondary {
119
+ background: transparent;
120
+ color: var(--accent2);
121
+ border: 2px solid var(--accent2);
122
+ }
123
+
124
+ .btn-secondary:hover {
125
+ background: var(--accent2);
126
+ color: var(--text);
127
+ box-shadow: 0 4px 15px rgba(224, 64, 251, 0.3);
128
+ }
129
+
130
+ .badge {
131
+ display: inline-block;
132
+ padding: 6px 16px;
133
+ background: rgba(224, 64, 251, 0.15);
134
+ color: var(--accent2);
135
+ border: 1px solid var(--accent2);
136
+ border-radius: 50px;
137
+ font-size: 0.875rem;
138
+ font-weight: 600;
139
+ margin-bottom: 1rem;
140
+ font-family: 'Orbitron', sans-serif;
141
+ }
142
+
143
+ /* Header & Nav */
144
+ header {
145
+ background: rgba(21, 7, 21, 0.95);
146
+ backdrop-filter: blur(10px);
147
+ position: sticky;
148
+ top: 0;
149
+ z-index: 100;
150
+ border-bottom: 1px solid rgba(245, 197, 66, 0.2);
151
+ }
152
+
153
+ .nav-container {
154
+ display: flex;
155
+ justify-content: space-between;
156
+ align-items: center;
157
+ height: 80px;
158
+ }
159
+
160
+ .logo {
161
+ font-family: 'Orbitron', sans-serif;
162
+ font-size: 1.75rem;
163
+ font-weight: 900;
164
+ color: var(--accent);
165
+ text-transform: lowercase;
166
+ letter-spacing: 2px;
167
+ display: flex;
168
+ align-items: center;
169
+ gap: 10px;
170
+ }
171
+
172
+ .logo span { color: var(--text); }
173
+
174
+ .nav-links {
175
+ display: flex;
176
+ gap: 1.5rem;
177
+ list-style: none;
178
+ }
179
+
180
+ .nav-links a {
181
+ color: var(--text);
182
+ font-weight: 500;
183
+ padding: 8px 0;
184
+ position: relative;
185
+ }
186
+
187
+ .nav-links a::after {
188
+ content: '';
189
+ position: absolute;
190
+ bottom: 0;
191
+ left: 0;
192
+ width: 0;
193
+ height: 2px;
194
+ background: var(--accent);
195
+ transition: var(--transition);
196
+ }
197
+
198
+ .nav-links a:hover::after {
199
+ width: 100%;
200
+ }
201
+
202
+ .mobile-toggle {
203
+ display: none;
204
+ background: none;
205
+ border: none;
206
+ color: var(--accent);
207
+ font-size: 1.5rem;
208
+ cursor: pointer;
209
+ min-height: 44px;
210
+ min-width: 44px;
211
+ }
212
+
213
+ /* Sections General */
214
+ section {
215
+ padding: 5rem 0;
216
+ position: relative;
217
+ }
218
+
219
+ .bg-surface { background: var(--surface); }
220
+ .bg-velvet { background: var(--velvet-grad); }
221
+
222
+ .section-header {
223
+ max-width: 800px;
224
+ margin: 0 auto 3rem;
225
+ text-align: center;
226
+ }
227
+
228
+ /* #hero */
229
+ #hero {
230
+ padding: 6rem 0;
231
+ background: var(--velvet-grad);
232
+ border-bottom: 2px solid rgba(245, 197, 66, 0.3);
233
+ overflow: hidden;
234
+ }
235
+
236
+ .hero-grid {
237
+ display: grid;
238
+ grid-template-columns: 1fr 1fr;
239
+ gap: 4rem;
240
+ align-items: center;
241
+ }
242
+
243
+ .hero-content .sub {
244
+ font-size: 1.25rem;
245
+ color: var(--text);
246
+ font-weight: 500;
247
+ margin-bottom: 1.5rem;
248
+ }
249
+
250
+ .hero-content .intro {
251
+ font-size: 1rem;
252
+ margin-bottom: 2.5rem;
253
+ }
254
+
255
+ .cta-group {
256
+ display: flex;
257
+ gap: 1rem;
258
+ flex-wrap: wrap;
259
+ }
260
+
261
+ .hero-visual {
262
+ position: relative;
263
+ height: 500px;
264
+ display: flex;
265
+ justify-content: center;
266
+ align-items: center;
267
+ }
268
+
269
+ .hero-visual::before {
270
+ content: '';
271
+ position: absolute;
272
+ width: 80%;
273
+ height: 80%;
274
+ border: 2px dashed rgba(245, 197, 66, 0.4);
275
+ border-radius: 50%;
276
+ animation: spin 30s linear infinite;
277
+ }
278
+
279
+ @keyframes spin { 100% { transform: rotate(360deg); } }
280
+
281
+ .jewel-card {
282
+ position: absolute;
283
+ background: rgba(41, 16, 51, 0.8);
284
+ backdrop-filter: blur(10px);
285
+ border: 2px solid var(--accent);
286
+ border-radius: var(--radius-md);
287
+ padding: 20px;
288
+ width: 220px;
289
+ box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(224, 64, 251, 0.2);
290
+ text-align: center;
291
+ transition: transform 0.5s ease;
292
+ }
293
+
294
+ .jewel-card.c1 {
295
+ transform: rotate(-10deg) translateX(-60px) translateY(-40px);
296
+ z-index: 2;
297
+ }
298
+ .jewel-card.c2 {
299
+ transform: rotate(15deg) translateX(60px) translateY(40px);
300
+ z-index: 1;
301
+ border-color: var(--accent2);
302
+ }
303
+
304
+ .hero-visual:hover .jewel-card.c1 { transform: rotate(-5deg) translateX(-70px) translateY(-50px); }
305
+ .hero-visual:hover .jewel-card.c2 { transform: rotate(10deg) translateX(70px) translateY(50px); }
306
+
307
+ .jewel-card h3 { font-size: 1.1rem; color: var(--text); margin: 0; }
308
+ .jewel-card .mock-img {
309
+ height: 120px;
310
+ background: linear-gradient(45deg, #150715, #3a1545);
311
+ margin-bottom: 10px;
312
+ border-radius: var(--radius-sm);
313
+ border: 1px solid rgba(255,255,255,0.1);
314
+ }
315
+
316
+ /* #koleksi-original */
317
+ .grid-3 {
318
+ display: grid;
319
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
320
+ gap: 2rem;
321
+ }
322
+
323
+ .game-card {
324
+ background: var(--surface);
325
+ border-radius: var(--radius-md);
326
+ padding: 2rem;
327
+ border-top: 3px solid var(--accent);
328
+ transition: var(--transition);
329
+ position: relative;
330
+ overflow: hidden;
331
+ }
332
+
333
+ .game-card:hover {
334
+ transform: translateY(-5px);
335
+ box-shadow: 0 10px 25px rgba(224, 64, 251, 0.15);
336
+ }
337
+
338
+ .game-card::after {
339
+ content: '';
340
+ position: absolute;
341
+ bottom: -20px; right: -20px;
342
+ width: 100px; height: 100px;
343
+ background: radial-gradient(circle, rgba(224,64,251,0.2) 0%, transparent 70%);
344
+ border-radius: 50%;
345
+ }
346
+
347
+ /* #data-rtp */
348
+ #data-rtp {
349
+ background: var(--surface-light);
350
+ border-top: 1px solid rgba(245, 197, 66, 0.2);
351
+ border-bottom: 1px solid rgba(245, 197, 66, 0.2);
352
+ padding: 4rem 0;
353
+ }
354
+
355
+ #data-rtp .section-header { margin-bottom: 0; }
356
+ #data-rtp h2 { color: var(--text); }
357
+ #data-rtp p { color: var(--accent); font-size: 1.1rem; }
358
+
359
+ /* #papan-angka */
360
+ #papan-angka {
361
+ background: var(--bg);
362
+ padding: 3rem 0;
363
+ }
364
+
365
+ .angka-strip {
366
+ display: flex;
367
+ justify-content: space-around;
368
+ flex-wrap: wrap;
369
+ gap: 2rem;
370
+ border: 1px solid rgba(245, 197, 66, 0.3);
371
+ border-radius: var(--radius-lg);
372
+ padding: 2rem;
373
+ background: linear-gradient(90deg, rgba(41,16,51,0.5) 0%, rgba(21,7,21,0.8) 50%, rgba(41,16,51,0.5) 100%);
374
+ }
375
+
376
+ .angka-item {
377
+ text-align: center;
378
+ font-family: 'Orbitron', sans-serif;
379
+ color: var(--accent);
380
+ font-size: 1.2rem;
381
+ font-weight: 700;
382
+ flex: 1;
383
+ min-width: 200px;
384
+ display: flex;
385
+ flex-direction: column;
386
+ align-items: center;
387
+ gap: 10px;
388
+ }
389
+
390
+ .angka-item::before {
391
+ content: '✦';
392
+ color: var(--accent2);
393
+ font-size: 1.5rem;
394
+ }
395
+
396
+ /* #penyedia */
397
+ .provider-row {
398
+ display: flex;
399
+ flex-wrap: wrap;
400
+ justify-content: center;
401
+ gap: 2rem;
402
+ align-items: center;
403
+ }
404
+
405
+ .provider-logo {
406
+ font-family: 'Orbitron', sans-serif;
407
+ font-size: 1.25rem;
408
+ color: var(--muted);
409
+ padding: 1rem 2rem;
410
+ border: 1px solid rgba(181, 149, 184, 0.2);
411
+ border-radius: var(--radius-sm);
412
+ transition: var(--transition);
413
+ background: rgba(41, 16, 51, 0.3);
414
+ }
415
+
416
+ .provider-logo:hover {
417
+ color: var(--accent);
418
+ border-color: var(--accent);
419
+ background: rgba(41, 16, 51, 0.8);
420
+ }
421
+
422
+ /* #keistimewaan */
423
+ .grid-2 {
424
+ display: grid;
425
+ grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
426
+ gap: 2rem;
427
+ }
428
+
429
+ .feature-item {
430
+ display: flex;
431
+ gap: 1.5rem;
432
+ background: var(--surface);
433
+ padding: 2rem;
434
+ border-radius: var(--radius-md);
435
+ border-left: 4px solid var(--accent2);
436
+ }
437
+
438
+ .feature-icon {
439
+ width: 50px;
440
+ height: 50px;
441
+ background: rgba(224, 64, 251, 0.1);
442
+ border-radius: 50%;
443
+ display: flex;
444
+ align-items: center;
445
+ justify-content: center;
446
+ color: var(--accent2);
447
+ font-size: 1.5rem;
448
+ font-family: 'Orbitron', sans-serif;
449
+ flex-shrink: 0;
450
+ }
451
+
452
+ /* #tiga-langkah */
453
+ .steps-container {
454
+ display: flex;
455
+ flex-direction: column;
456
+ gap: 2rem;
457
+ max-width: 800px;
458
+ margin: 0 auto;
459
+ }
460
+
461
+ .step-card {
462
+ display: flex;
463
+ align-items: center;
464
+ gap: 2rem;
465
+ background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
466
+ padding: 2rem;
467
+ border-radius: var(--radius-lg);
468
+ border: 1px solid rgba(245, 197, 66, 0.1);
469
+ }
470
+
471
+ .step-num {
472
+ font-family: 'Orbitron', sans-serif;
473
+ font-size: 3rem;
474
+ font-weight: 900;
475
+ color: transparent;
476
+ -webkit-text-stroke: 2px var(--accent);
477
+ min-width: 60px;
478
+ text-align: center;
479
+ }
480
+
481
+ /* #suara-member */
482
+ .testimonial-grid {
483
+ display: grid;
484
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
485
+ gap: 2rem;
486
+ }
487
+
488
+ .testi-card {
489
+ background: var(--surface);
490
+ padding: 2.5rem 2rem;
491
+ border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
492
+ position: relative;
493
+ border: 1px solid rgba(255,255,255,0.05);
494
+ }
495
+
496
+ .testi-card::before {
497
+ content: '"';
498
+ position: absolute;
499
+ top: 10px;
500
+ left: 20px;
501
+ font-family: 'Orbitron', sans-serif;
502
+ font-size: 4rem;
503
+ color: rgba(245, 197, 66, 0.2);
504
+ line-height: 1;
505
+ }
506
+
507
+ .testi-author {
508
+ margin-top: 1.5rem;
509
+ border-top: 1px solid rgba(255,255,255,0.1);
510
+ padding-top: 1rem;
511
+ display: flex;
512
+ justify-content: space-between;
513
+ align-items: center;
514
+ }
515
+
516
+ .testi-author h4 { color: var(--accent); font-family: 'Exo 2', sans-serif; font-size: 1.1rem;}
517
+ .testi-author span { color: var(--muted); font-size: 0.9rem; }
518
+
519
+ /* #jalur-pemula */
520
+ .timeline {
521
+ position: relative;
522
+ max-width: 800px;
523
+ margin: 0 auto;
524
+ padding-left: 2rem;
525
+ }
526
+
527
+ .timeline::before {
528
+ content: '';
529
+ position: absolute;
530
+ left: 0;
531
+ top: 0;
532
+ bottom: 0;
533
+ width: 2px;
534
+ background: var(--accent2);
535
+ }
536
+
537
+ .timeline-item {
538
+ position: relative;
539
+ margin-bottom: 2.5rem;
540
+ padding-left: 2rem;
541
+ }
542
+
543
+ .timeline-item::before {
544
+ content: '';
545
+ position: absolute;
546
+ left: -29px;
547
+ top: 5px;
548
+ width: 16px;
549
+ height: 16px;
550
+ border-radius: 50%;
551
+ background: var(--bg);
552
+ border: 4px solid var(--accent);
553
+ }
554
+
555
+ /* #salah-kaprah */
556
+ .myth-grid {
557
+ display: grid;
558
+ grid-template-columns: 1fr;
559
+ gap: 1.5rem;
560
+ max-width: 900px;
561
+ margin: 0 auto;
562
+ }
563
+
564
+ .myth-card {
565
+ background: var(--surface);
566
+ border-radius: var(--radius-md);
567
+ padding: 2rem;
568
+ display: flex;
569
+ flex-direction: column;
570
+ gap: 1rem;
571
+ }
572
+
573
+ .myth-wrong {
574
+ color: var(--muted);
575
+ text-decoration: line-through;
576
+ text-decoration-color: rgba(255,0,0,0.5);
577
+ font-style: italic;
578
+ }
579
+
580
+ .myth-right {
581
+ color: var(--text);
582
+ font-weight: 500;
583
+ padding-left: 1rem;
584
+ border-left: 3px solid var(--accent);
585
+ }
586
+
587
+ /* #jangkauan */
588
+ .jangkauan-grid {
589
+ display: grid;
590
+ grid-template-columns: 1fr 1fr;
591
+ gap: 4rem;
592
+ align-items: center;
593
+ }
594
+
595
+ .map-wrapper {
596
+ width: 100%;
597
+ height: 300px;
598
+ border-radius: 50%;
599
+ overflow: hidden;
600
+ border: 4px solid var(--surface);
601
+ box-shadow: 0 0 0 2px var(--accent), 0 10px 30px rgba(0,0,0,0.5);
602
+ position: relative;
603
+ }
604
+
605
+ .map-wrapper iframe {
606
+ width: 100%;
607
+ height: 100%;
608
+ border: none;
609
+ object-fit: cover;
610
+ }
611
+
612
+ .jangkauan-copy .eyebrow {
613
+ display: inline-block;
614
+ padding: 4px 12px;
615
+ background: rgba(245, 197, 66, 0.1);
616
+ color: var(--accent);
617
+ border-radius: 50px;
618
+ font-size: 0.85rem;
619
+ text-transform: uppercase;
620
+ letter-spacing: 1px;
621
+ margin-bottom: 1rem;
622
+ }
623
+
624
+ .jangkauan-copy h2 { text-align: left; }
625
+
626
+ .tags {
627
+ display: flex;
628
+ flex-wrap: wrap;
629
+ gap: 0.75rem;
630
+ margin-top: 2rem;
631
+ }
632
+
633
+ .tag {
634
+ padding: 6px 16px;
635
+ background: var(--surface);
636
+ border: 1px solid rgba(181, 149, 184, 0.3);
637
+ border-radius: 50px;
638
+ font-size: 0.9rem;
639
+ color: var(--text);
640
+ }
641
+
642
+ /* #faq-paten */
643
+ .faq-container {
644
+ max-width: 800px;
645
+ margin: 0 auto;
646
+ }
647
+
648
+ details {
649
+ background: var(--surface);
650
+ margin-bottom: 1rem;
651
+ border-radius: var(--radius-sm);
652
+ border: 1px solid rgba(255,255,255,0.05);
653
+ overflow: hidden;
654
+ }
655
+
656
+ summary {
657
+ padding: 1.5rem;
658
+ font-family: 'Orbitron', sans-serif;
659
+ font-weight: 500;
660
+ color: var(--text);
661
+ cursor: pointer;
662
+ list-style: none;
663
+ display: flex;
664
+ justify-content: space-between;
665
+ align-items: center;
666
+ }
667
+
668
+ summary::-webkit-details-marker { display: none; }
669
+
670
+ summary::after {
671
+ content: '+';
672
+ color: var(--accent);
673
+ font-size: 1.5rem;
674
+ transition: var(--transition);
675
+ }
676
+
677
+ details[open] summary::after {
678
+ content: '-';
679
+ color: var(--accent2);
680
+ }
681
+
682
+ .faq-content {
683
+ padding: 0 1.5rem 1.5rem;
684
+ color: var(--muted);
685
+ }
686
+
687
+ /* Footer */
688
+ footer {
689
+ background: #0a030a;
690
+ padding: 4rem 0 2rem;
691
+ border-top: 1px solid rgba(224, 64, 251, 0.2);
692
+ text-align: center;
693
+ }
694
+
695
+ .footer-logo {
696
+ font-family: 'Orbitron', sans-serif;
697
+ font-size: 2rem;
698
+ color: var(--accent);
699
+ margin-bottom: 1rem;
700
+ }
701
+
702
+ .footer-tagline {
703
+ color: var(--muted);
704
+ max-width: 600px;
705
+ margin: 0 auto 2rem;
706
+ font-style: italic;
707
+ }
708
+
709
+ .footer-links {
710
+ display: flex;
711
+ flex-wrap: wrap;
712
+ justify-content: center;
713
+ gap: 1.5rem;
714
+ margin-bottom: 3rem;
715
+ list-style: none;
716
+ }
717
+
718
+ .footer-links a {
719
+ color: var(--text);
720
+ font-size: 0.9rem;
721
+ }
722
+
723
+ .footer-links a:hover { color: var(--accent); }
724
+
725
+ .copyright {
726
+ color: rgba(181, 149, 184, 0.5);
727
+ font-size: 0.85rem;
728
+ border-top: 1px solid rgba(255,255,255,0.05);
729
+ padding-top: 2rem;
730
+ }
731
+
732
+ /* Responsive */
733
+ @media (max-width: 1024px) {
734
+ .hero-grid, .jangkauan-grid { gap: 2rem; }
735
+ }
736
+
737
+ @media (max-width: 900px) {
738
+ .hero-grid, .jangkauan-grid {
739
+ grid-template-columns: 1fr;
740
+ }
741
+ .hero-visual { height: 400px; order: -1; }
742
+ .jangkauan-copy h2 { text-align: center; }
743
+ .jangkauan-copy .eyebrow { display: block; width: fit-content; margin: 0 auto 1rem; }
744
+ .jangkauan-copy p, .tags { text-align: center; justify-content: center; }
745
+ .map-wrapper { max-width: 300px; margin: 0 auto; }
746
+ }
747
+
748
+ @media (max-width: 768px) {
749
+ .nav-links {
750
+ display: none;
751
+ position: absolute;
752
+ top: 80px;
753
+ left: 0;
754
+ width: 100%;
755
+ background: var(--surface);
756
+ flex-direction: column;
757
+ padding: 2rem;
758
+ text-align: center;
759
+ border-bottom: 2px solid var(--accent);
760
+ }
761
+ .nav-links.active { display: flex; }
762
+ .mobile-toggle { display: block; }
763
+
764
+ h1 { font-size: 2rem; }
765
+ section { padding: 4rem 0; }
766
+
767
+ .step-card { flex-direction: column; text-align: center; gap: 1rem; }
768
+ .feature-item { flex-direction: column; text-align: center; align-items: center; border-left: none; border-top: 4px solid var(--accent2); }
769
+ }
770
+
771
+ @media (max-width: 390px) {
772
+ .cta-group { flex-direction: column; width: 100%; }
773
+ .btn { width: 100%; }
774
+ .angka-item { min-width: 100%; }
775
+ }
776
+
777
+
778
+ /* pipeline image & layout guards */
779
+ html, body { overflow-x: clip; }
780
+ img { max-width: 100%; height: auto; }
781
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
782
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
783
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
784
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
785
+ /* 合规声明块(zb-disclaimer,全站 footer) */
786
+ .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; }
787
+ .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; }