css-pkg-01 1.3.0 → 1.4.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.
package/k57/style.css ADDED
@@ -0,0 +1,992 @@
1
+ :root {
2
+ --bg: #041214;
3
+ --surface: #0a2226;
4
+ --surface-light: #103339;
5
+ --accent: #ffd166;
6
+ --accent-hover: #e6bc5c;
7
+ --accent2: #14b8a6;
8
+ --accent2-hover: #0f9183;
9
+ --text: #effcff;
10
+ --muted: #8fb0b3;
11
+ --font-display: 'Russo One', sans-serif;
12
+ --font-body: 'Open Sans', sans-serif;
13
+ --radius-sm: 8px;
14
+ --radius-md: 16px;
15
+ --radius-lg: 24px;
16
+ --transition: 0.3s ease;
17
+ --komodo-glow: 0 0 20px rgba(20, 184, 166, 0.2);
18
+ }
19
+
20
+ * {
21
+ box-sizing: border-box;
22
+ margin: 0;
23
+ padding: 0;
24
+ }
25
+
26
+ body {
27
+ background-color: var(--bg);
28
+ color: var(--text);
29
+ font-family: var(--font-body);
30
+ line-height: 1.6;
31
+ overflow-x: hidden;
32
+ background-image:
33
+ radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.1) 0%, transparent 60%),
34
+ repeating-linear-gradient(45deg, rgba(20, 184, 166, 0.02) 0px, rgba(20, 184, 166, 0.02) 2px, transparent 2px, transparent 20px),
35
+ repeating-linear-gradient(-45deg, rgba(20, 184, 166, 0.02) 0px, rgba(20, 184, 166, 0.02) 2px, transparent 2px, transparent 20px);
36
+ background-attachment: fixed;
37
+ }
38
+
39
+ h1, h2, h3, h4, h5, h6 {
40
+ font-family: var(--font-display);
41
+ line-height: 1.2;
42
+ margin-bottom: 1rem;
43
+ font-weight: 400;
44
+ letter-spacing: 1px;
45
+ }
46
+
47
+ a {
48
+ color: var(--accent2);
49
+ text-decoration: none;
50
+ transition: var(--transition);
51
+ }
52
+
53
+ a:hover {
54
+ color: var(--accent);
55
+ }
56
+
57
+ img {
58
+ max-width: 100%;
59
+ height: auto;
60
+ display: block;
61
+ }
62
+
63
+ .container {
64
+ width: 100%;
65
+ max-width: 1280px;
66
+ margin: 0 auto;
67
+ padding: 0 20px;
68
+ }
69
+
70
+ .section-pad {
71
+ padding: 80px 0;
72
+ }
73
+
74
+ .bg-surface {
75
+ background-color: var(--surface);
76
+ border-top: 1px solid rgba(20, 184, 166, 0.1);
77
+ border-bottom: 1px solid rgba(20, 184, 166, 0.1);
78
+ }
79
+
80
+ .btn {
81
+ display: inline-flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ padding: 12px 24px;
85
+ border-radius: var(--radius-sm);
86
+ font-weight: 700;
87
+ font-family: var(--font-body);
88
+ text-transform: uppercase;
89
+ letter-spacing: 0.5px;
90
+ cursor: pointer;
91
+ transition: var(--transition);
92
+ border: none;
93
+ min-height: 44px;
94
+ text-align: center;
95
+ }
96
+
97
+ .btn-primary {
98
+ background-color: var(--accent);
99
+ color: #000;
100
+ box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
101
+ }
102
+
103
+ .btn-primary:hover {
104
+ background-color: var(--accent-hover);
105
+ transform: translateY(-2px);
106
+ box-shadow: 0 6px 20px rgba(255, 209, 102, 0.4);
107
+ color: #000;
108
+ }
109
+
110
+ .btn-secondary {
111
+ background-color: transparent;
112
+ color: var(--accent2);
113
+ border: 2px solid var(--accent2);
114
+ }
115
+
116
+ .btn-secondary:hover {
117
+ background-color: var(--accent2);
118
+ color: #000;
119
+ box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
120
+ }
121
+
122
+ /* Header & Nav */
123
+ header {
124
+ background-color: rgba(4, 18, 20, 0.95);
125
+ backdrop-filter: blur(10px);
126
+ position: sticky;
127
+ top: 0;
128
+ z-index: 1000;
129
+ border-bottom: 1px solid rgba(20, 184, 166, 0.2);
130
+ }
131
+
132
+ .header-inner {
133
+ display: flex;
134
+ justify-content: space-between;
135
+ align-items: center;
136
+ height: 70px;
137
+ }
138
+
139
+ .brand {
140
+ font-family: var(--font-display);
141
+ font-size: 1.5rem;
142
+ color: var(--text);
143
+ display: flex;
144
+ align-items: center;
145
+ gap: 10px;
146
+ }
147
+
148
+ .brand span {
149
+ color: var(--accent2);
150
+ }
151
+
152
+ .nav-links {
153
+ display: flex;
154
+ gap: 24px;
155
+ align-items: center;
156
+ }
157
+
158
+ .nav-links a {
159
+ color: var(--text);
160
+ font-weight: 600;
161
+ font-size: 0.9rem;
162
+ }
163
+
164
+ .nav-links a:hover {
165
+ color: var(--accent);
166
+ }
167
+
168
+ .header-actions {
169
+ display: flex;
170
+ gap: 12px;
171
+ }
172
+
173
+ .mobile-toggle {
174
+ display: none;
175
+ background: none;
176
+ border: none;
177
+ color: var(--text);
178
+ font-size: 1.5rem;
179
+ cursor: pointer;
180
+ min-width: 44px;
181
+ min-height: 44px;
182
+ }
183
+
184
+ /* Hero Section */
185
+ #hero {
186
+ padding: 60px 0 100px;
187
+ position: relative;
188
+ overflow: hidden;
189
+ }
190
+
191
+ .hero-grid {
192
+ display: grid;
193
+ grid-template-columns: 1fr 1fr;
194
+ gap: 40px;
195
+ align-items: center;
196
+ }
197
+
198
+ .hero-content {
199
+ position: relative;
200
+ z-index: 2;
201
+ }
202
+
203
+ .badge {
204
+ display: inline-block;
205
+ padding: 6px 16px;
206
+ background: rgba(20, 184, 166, 0.1);
207
+ border: 1px solid var(--accent2);
208
+ color: var(--accent2);
209
+ border-radius: 50px;
210
+ font-size: 0.85rem;
211
+ font-weight: 700;
212
+ margin-bottom: 24px;
213
+ text-transform: uppercase;
214
+ letter-spacing: 1px;
215
+ }
216
+
217
+ #hero h1 {
218
+ font-size: clamp(2.5rem, 5vw, 4rem);
219
+ margin-bottom: 16px;
220
+ text-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
221
+ }
222
+
223
+ .hero-sub {
224
+ font-size: 1.25rem;
225
+ font-weight: 600;
226
+ color: var(--accent);
227
+ margin-bottom: 24px;
228
+ }
229
+
230
+ .hero-intro {
231
+ color: var(--muted);
232
+ font-size: 1.1rem;
233
+ margin-bottom: 32px;
234
+ max-width: 90%;
235
+ }
236
+
237
+ .hero-cta {
238
+ display: flex;
239
+ gap: 16px;
240
+ flex-wrap: wrap;
241
+ }
242
+
243
+ .hero-visual {
244
+ position: relative;
245
+ height: 500px;
246
+ display: flex;
247
+ justify-content: center;
248
+ align-items: center;
249
+ }
250
+
251
+ .glow-arena {
252
+ position: absolute;
253
+ width: 400px;
254
+ height: 400px;
255
+ background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
256
+ border-radius: 50%;
257
+ z-index: 0;
258
+ }
259
+
260
+ .komodo-ring {
261
+ position: absolute;
262
+ width: 350px;
263
+ height: 350px;
264
+ border: 2px dashed rgba(20, 184, 166, 0.3);
265
+ border-radius: 50%;
266
+ animation: spin 30s linear infinite;
267
+ z-index: 1;
268
+ }
269
+
270
+ .komodo-ring::before {
271
+ content: '';
272
+ position: absolute;
273
+ top: -10px;
274
+ left: 50%;
275
+ width: 20px;
276
+ height: 20px;
277
+ background: var(--accent);
278
+ border-radius: 50%;
279
+ box-shadow: 0 0 15px var(--accent);
280
+ }
281
+
282
+ .floating-cards {
283
+ position: relative;
284
+ z-index: 2;
285
+ width: 100%;
286
+ height: 100%;
287
+ }
288
+
289
+ .mockup-card {
290
+ position: absolute;
291
+ width: 180px;
292
+ height: 260px;
293
+ background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
294
+ border: 1px solid rgba(20, 184, 166, 0.4);
295
+ border-radius: var(--radius-md);
296
+ box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(20, 184, 166, 0.1);
297
+ display: flex;
298
+ flex-direction: column;
299
+ justify-content: flex-end;
300
+ padding: 16px;
301
+ overflow: hidden;
302
+ }
303
+
304
+ .mockup-card::after {
305
+ content: '';
306
+ position: absolute;
307
+ top: 0; left: 0; right: 0; bottom: 0;
308
+ background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(20, 184, 166, 0.05) 10px, rgba(20, 184, 166, 0.05) 20px);
309
+ z-index: 1;
310
+ pointer-events: none;
311
+ }
312
+
313
+ .mockup-card-1 {
314
+ top: 50%;
315
+ left: 50%;
316
+ transform: translate(-50%, -50%) rotate(-5deg);
317
+ z-index: 3;
318
+ border-color: var(--accent);
319
+ }
320
+
321
+ .mockup-card-2 {
322
+ top: 40%;
323
+ left: 20%;
324
+ transform: rotate(-15deg);
325
+ z-index: 2;
326
+ opacity: 0.8;
327
+ }
328
+
329
+ .mockup-card-3 {
330
+ top: 60%;
331
+ right: 20%;
332
+ transform: rotate(15deg);
333
+ z-index: 2;
334
+ opacity: 0.8;
335
+ }
336
+
337
+ .mockup-title {
338
+ font-family: var(--font-display);
339
+ font-size: 1.1rem;
340
+ color: var(--text);
341
+ position: relative;
342
+ z-index: 2;
343
+ text-shadow: 0 2px 4px rgba(0,0,0,0.8);
344
+ }
345
+
346
+ .mockup-tag {
347
+ font-size: 0.7rem;
348
+ color: var(--accent);
349
+ position: relative;
350
+ z-index: 2;
351
+ }
352
+
353
+ @keyframes spin {
354
+ 100% { transform: rotate(360deg); }
355
+ }
356
+
357
+ /* Galeri Hero */
358
+ .section-title {
359
+ text-align: center;
360
+ font-size: 2.5rem;
361
+ margin-bottom: 48px;
362
+ color: var(--text);
363
+ }
364
+
365
+ .section-title span {
366
+ color: var(--accent2);
367
+ }
368
+
369
+ .galeri-grid {
370
+ display: grid;
371
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
372
+ gap: 24px;
373
+ }
374
+
375
+ .galeri-card {
376
+ background: var(--surface);
377
+ border: 1px solid rgba(20, 184, 166, 0.15);
378
+ border-radius: var(--radius-md);
379
+ padding: 32px 24px;
380
+ transition: var(--transition);
381
+ position: relative;
382
+ overflow: hidden;
383
+ }
384
+
385
+ .galeri-card::before {
386
+ content: '';
387
+ position: absolute;
388
+ top: 0; left: 0; right: 0; height: 4px;
389
+ background: linear-gradient(90deg, var(--accent2), var(--accent));
390
+ transform: scaleX(0);
391
+ transform-origin: left;
392
+ transition: var(--transition);
393
+ }
394
+
395
+ .galeri-card:hover {
396
+ transform: translateY(-5px);
397
+ box-shadow: var(--komodo-glow);
398
+ border-color: rgba(20, 184, 166, 0.4);
399
+ }
400
+
401
+ .galeri-card:hover::before {
402
+ transform: scaleX(1);
403
+ }
404
+
405
+ .galeri-card h3 {
406
+ font-size: 1.5rem;
407
+ color: var(--accent);
408
+ margin-bottom: 12px;
409
+ }
410
+
411
+ .galeri-card p {
412
+ color: var(--muted);
413
+ }
414
+
415
+ /* Monitor RTP */
416
+ #monitor-rtp {
417
+ padding: 60px 0;
418
+ text-align: center;
419
+ }
420
+
421
+ .rtp-box {
422
+ max-width: 800px;
423
+ margin: 0 auto;
424
+ background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
425
+ padding: 40px;
426
+ border-radius: var(--radius-lg);
427
+ border: 1px solid rgba(20, 184, 166, 0.3);
428
+ position: relative;
429
+ }
430
+
431
+ .rtp-box::after {
432
+ content: '';
433
+ position: absolute;
434
+ top: -1px; left: -1px; right: -1px; bottom: -1px;
435
+ border-radius: var(--radius-lg);
436
+ background: linear-gradient(45deg, transparent 40%, rgba(20, 184, 166, 0.5) 50%, transparent 60%);
437
+ z-index: -1;
438
+ animation: scan 4s linear infinite;
439
+ background-size: 200% 200%;
440
+ }
441
+
442
+ @keyframes scan {
443
+ 0% { background-position: 100% 0; }
444
+ 100% { background-position: -100% 0; }
445
+ }
446
+
447
+ #monitor-rtp h2 {
448
+ font-size: 2rem;
449
+ color: var(--accent2);
450
+ margin-bottom: 16px;
451
+ }
452
+
453
+ #monitor-rtp p {
454
+ font-size: 1.1rem;
455
+ color: var(--text);
456
+ }
457
+
458
+ /* Angka Kilat */
459
+ #angka-kilat {
460
+ background-color: var(--accent2);
461
+ padding: 40px 0;
462
+ color: #000;
463
+ }
464
+
465
+ .angka-grid {
466
+ display: grid;
467
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
468
+ gap: 24px;
469
+ text-align: center;
470
+ }
471
+
472
+ .angka-item {
473
+ font-family: var(--font-display);
474
+ font-size: 1.25rem;
475
+ display: flex;
476
+ align-items: center;
477
+ justify-content: center;
478
+ padding: 16px;
479
+ border-right: 2px solid rgba(0,0,0,0.1);
480
+ }
481
+
482
+ .angka-item:last-child {
483
+ border-right: none;
484
+ }
485
+
486
+ /* Penyedia */
487
+ .penyedia-list {
488
+ display: flex;
489
+ flex-wrap: wrap;
490
+ justify-content: center;
491
+ gap: 24px;
492
+ }
493
+
494
+ .penyedia-item {
495
+ background: var(--surface);
496
+ border: 1px solid rgba(143, 176, 179, 0.2);
497
+ padding: 16px 32px;
498
+ border-radius: 50px;
499
+ font-family: var(--font-display);
500
+ color: var(--muted);
501
+ transition: var(--transition);
502
+ font-size: 1.1rem;
503
+ }
504
+
505
+ .penyedia-item:hover {
506
+ color: var(--accent);
507
+ border-color: var(--accent);
508
+ box-shadow: 0 0 15px rgba(255, 209, 102, 0.2);
509
+ }
510
+
511
+ /* Nilai Plus */
512
+ .nilai-grid {
513
+ display: grid;
514
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
515
+ gap: 32px;
516
+ }
517
+
518
+ .nilai-card {
519
+ display: flex;
520
+ gap: 20px;
521
+ align-items: flex-start;
522
+ }
523
+
524
+ .nilai-icon {
525
+ width: 48px;
526
+ height: 48px;
527
+ background: rgba(20, 184, 166, 0.1);
528
+ border: 1px solid var(--accent2);
529
+ border-radius: var(--radius-sm);
530
+ display: flex;
531
+ align-items: center;
532
+ justify-content: center;
533
+ flex-shrink: 0;
534
+ position: relative;
535
+ }
536
+
537
+ .nilai-icon::after {
538
+ content: '';
539
+ width: 24px;
540
+ height: 24px;
541
+ background: var(--accent2);
542
+ clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
543
+ }
544
+
545
+ .nilai-content h3 {
546
+ font-size: 1.25rem;
547
+ margin-bottom: 8px;
548
+ }
549
+
550
+ .nilai-content p {
551
+ color: var(--muted);
552
+ font-size: 0.95rem;
553
+ }
554
+
555
+ /* Alur Masuk */
556
+ .alur-grid {
557
+ display: grid;
558
+ grid-template-columns: repeat(3, 1fr);
559
+ gap: 40px;
560
+ position: relative;
561
+ }
562
+
563
+ .alur-grid::before {
564
+ content: '';
565
+ position: absolute;
566
+ top: 30px;
567
+ left: 10%;
568
+ right: 10%;
569
+ height: 2px;
570
+ background: dashed 2px rgba(20, 184, 166, 0.3);
571
+ z-index: 0;
572
+ }
573
+
574
+ .alur-step {
575
+ text-align: center;
576
+ position: relative;
577
+ z-index: 1;
578
+ }
579
+
580
+ .alur-num {
581
+ width: 64px;
582
+ height: 64px;
583
+ background: var(--bg);
584
+ border: 2px solid var(--accent2);
585
+ border-radius: 50%;
586
+ display: flex;
587
+ align-items: center;
588
+ justify-content: center;
589
+ font-family: var(--font-display);
590
+ font-size: 1.5rem;
591
+ color: var(--accent);
592
+ margin: 0 auto 24px;
593
+ box-shadow: var(--komodo-glow);
594
+ }
595
+
596
+ .alur-step h3 {
597
+ font-size: 1.25rem;
598
+ margin-bottom: 12px;
599
+ }
600
+
601
+ .alur-step p {
602
+ color: var(--muted);
603
+ }
604
+
605
+ /* Suara Pemain */
606
+ .suara-grid {
607
+ display: grid;
608
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
609
+ gap: 24px;
610
+ }
611
+
612
+ .suara-card {
613
+ background: var(--surface);
614
+ padding: 32px;
615
+ border-radius: var(--radius-md);
616
+ border-left: 4px solid var(--accent2);
617
+ }
618
+
619
+ .suara-teks {
620
+ font-style: italic;
621
+ color: var(--text);
622
+ margin-bottom: 24px;
623
+ font-size: 1.05rem;
624
+ }
625
+
626
+ .suara-author {
627
+ display: flex;
628
+ align-items: center;
629
+ gap: 12px;
630
+ }
631
+
632
+ .suara-avatar {
633
+ width: 40px;
634
+ height: 40px;
635
+ background: rgba(255, 209, 102, 0.2);
636
+ border-radius: 50%;
637
+ display: flex;
638
+ align-items: center;
639
+ justify-content: center;
640
+ font-family: var(--font-display);
641
+ color: var(--accent);
642
+ }
643
+
644
+ .suara-info strong {
645
+ display: block;
646
+ color: var(--accent2);
647
+ }
648
+
649
+ .suara-info span {
650
+ font-size: 0.85rem;
651
+ color: var(--muted);
652
+ }
653
+
654
+ /* Data Ringkas */
655
+ #data-ringkas .intro {
656
+ text-align: center;
657
+ color: var(--muted);
658
+ margin-bottom: 40px;
659
+ font-size: 1.1rem;
660
+ }
661
+
662
+ .data-grid {
663
+ display: grid;
664
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
665
+ gap: 24px;
666
+ }
667
+
668
+ .data-card {
669
+ background: linear-gradient(180deg, var(--surface-light) 0%, var(--surface) 100%);
670
+ padding: 32px 24px;
671
+ text-align: center;
672
+ border-radius: var(--radius-md);
673
+ border: 1px solid rgba(20, 184, 166, 0.2);
674
+ }
675
+
676
+ .data-val {
677
+ font-family: var(--font-display);
678
+ font-size: 2.5rem;
679
+ color: var(--accent);
680
+ margin-bottom: 8px;
681
+ text-shadow: 0 0 15px rgba(255, 209, 102, 0.3);
682
+ }
683
+
684
+ .data-label {
685
+ color: var(--text);
686
+ font-weight: 600;
687
+ text-transform: uppercase;
688
+ letter-spacing: 1px;
689
+ font-size: 0.9rem;
690
+ }
691
+
692
+ /* Bengkel Ilmu */
693
+ #bengkel-ilmu .intro {
694
+ text-align: center;
695
+ color: var(--muted);
696
+ margin-bottom: 40px;
697
+ font-size: 1.1rem;
698
+ }
699
+
700
+ .ilmu-grid {
701
+ display: grid;
702
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
703
+ gap: 24px;
704
+ }
705
+
706
+ .ilmu-item {
707
+ background: var(--surface);
708
+ padding: 24px;
709
+ border-radius: var(--radius-sm);
710
+ border: 1px solid rgba(143, 176, 179, 0.1);
711
+ }
712
+
713
+ .ilmu-term {
714
+ font-family: var(--font-display);
715
+ color: var(--accent2);
716
+ font-size: 1.25rem;
717
+ margin-bottom: 8px;
718
+ display: block;
719
+ }
720
+
721
+ .ilmu-def {
722
+ color: var(--muted);
723
+ }
724
+
725
+ /* Liputan (Map Layout) */
726
+ .liputan-container {
727
+ display: flex;
728
+ flex-direction: column;
729
+ gap: 40px;
730
+ }
731
+
732
+ .map-wrapper {
733
+ width: 100%;
734
+ border-radius: var(--radius-lg);
735
+ overflow: hidden;
736
+ border: 2px solid rgba(20, 184, 166, 0.3);
737
+ box-shadow: var(--komodo-glow);
738
+ background: var(--surface);
739
+ height: 350px;
740
+ }
741
+
742
+ .map-wrapper iframe {
743
+ width: 100%;
744
+ height: 100%;
745
+ border: 0;
746
+ }
747
+
748
+ .liputan-content {
749
+ width: 100%;
750
+ }
751
+
752
+ .eyebrow {
753
+ display: inline-block;
754
+ padding: 4px 12px;
755
+ background: rgba(255, 209, 102, 0.1);
756
+ color: var(--accent);
757
+ border-radius: 50px;
758
+ font-size: 0.85rem;
759
+ font-weight: 700;
760
+ text-transform: uppercase;
761
+ margin-bottom: 16px;
762
+ }
763
+
764
+ .liputan-content p {
765
+ color: var(--muted);
766
+ margin-bottom: 16px;
767
+ }
768
+
769
+ .tag-cloud {
770
+ display: flex;
771
+ flex-wrap: wrap;
772
+ gap: 12px;
773
+ margin-top: 24px;
774
+ }
775
+
776
+ .tag-pill {
777
+ padding: 6px 16px;
778
+ background: var(--surface);
779
+ border: 1px solid rgba(20, 184, 166, 0.2);
780
+ border-radius: 50px;
781
+ font-size: 0.9rem;
782
+ color: var(--text);
783
+ }
784
+
785
+ @media (min-width: 1024px) {
786
+ .liputan-container {
787
+ flex-direction: row;
788
+ align-items: center;
789
+ }
790
+ .map-wrapper {
791
+ flex: 1;
792
+ height: 400px;
793
+ }
794
+ .liputan-content {
795
+ flex: 1;
796
+ padding-left: 40px;
797
+ }
798
+ }
799
+
800
+ /* Tanya Utama (FAQ) */
801
+ .faq-list {
802
+ max-width: 800px;
803
+ margin: 0 auto;
804
+ display: flex;
805
+ flex-direction: column;
806
+ gap: 16px;
807
+ }
808
+
809
+ details {
810
+ background: var(--surface);
811
+ border: 1px solid rgba(20, 184, 166, 0.2);
812
+ border-radius: var(--radius-sm);
813
+ overflow: hidden;
814
+ }
815
+
816
+ summary {
817
+ padding: 20px 24px;
818
+ font-family: var(--font-display);
819
+ font-size: 1.1rem;
820
+ color: var(--text);
821
+ cursor: pointer;
822
+ list-style: none;
823
+ display: flex;
824
+ justify-content: space-between;
825
+ align-items: center;
826
+ }
827
+
828
+ summary::-webkit-details-marker {
829
+ display: none;
830
+ }
831
+
832
+ summary::after {
833
+ content: '+';
834
+ color: var(--accent2);
835
+ font-size: 1.5rem;
836
+ transition: transform var(--transition);
837
+ }
838
+
839
+ details[open] summary::after {
840
+ transform: rotate(45deg);
841
+ color: var(--accent);
842
+ }
843
+
844
+ .faq-answer {
845
+ padding: 0 24px 20px;
846
+ color: var(--muted);
847
+ border-top: 1px solid rgba(20, 184, 166, 0.1);
848
+ margin-top: 10px;
849
+ padding-top: 16px;
850
+ }
851
+
852
+ /* Footer */
853
+ footer {
854
+ background-color: #020a0b;
855
+ padding: 60px 0 30px;
856
+ border-top: 1px solid rgba(20, 184, 166, 0.2);
857
+ }
858
+
859
+ .footer-grid {
860
+ display: grid;
861
+ grid-template-columns: 1fr;
862
+ gap: 40px;
863
+ margin-bottom: 40px;
864
+ }
865
+
866
+ .footer-brand h2 {
867
+ font-size: 1.5rem;
868
+ color: var(--text);
869
+ margin-bottom: 16px;
870
+ }
871
+
872
+ .footer-brand span {
873
+ color: var(--accent2);
874
+ }
875
+
876
+ .footer-tagline {
877
+ color: var(--muted);
878
+ max-width: 300px;
879
+ }
880
+
881
+ .footer-links-group {
882
+ display: flex;
883
+ flex-direction: column;
884
+ gap: 12px;
885
+ }
886
+
887
+ .footer-links-group h4 {
888
+ color: var(--accent);
889
+ margin-bottom: 8px;
890
+ font-size: 1.1rem;
891
+ }
892
+
893
+ .footer-links-group a {
894
+ color: var(--muted);
895
+ font-size: 0.95rem;
896
+ }
897
+
898
+ .footer-links-group a:hover {
899
+ color: var(--accent2);
900
+ }
901
+
902
+ .footer-bottom {
903
+ text-align: center;
904
+ padding-top: 24px;
905
+ border-top: 1px solid rgba(143, 176, 179, 0.1);
906
+ color: var(--muted);
907
+ font-size: 0.9rem;
908
+ }
909
+
910
+ /* Media Queries */
911
+ @media (max-width: 1023px) {
912
+ .angka-item {
913
+ border-right: none;
914
+ border-bottom: 2px solid rgba(0,0,0,0.1);
915
+ }
916
+ .angka-item:last-child {
917
+ border-bottom: none;
918
+ }
919
+ }
920
+
921
+ @media (max-width: 767px) {
922
+ .nav-links {
923
+ display: none;
924
+ position: absolute;
925
+ top: 70px;
926
+ left: 0;
927
+ right: 0;
928
+ background: var(--surface);
929
+ flex-direction: column;
930
+ padding: 20px;
931
+ border-bottom: 1px solid var(--accent2);
932
+ }
933
+
934
+ .nav-links.active {
935
+ display: flex;
936
+ }
937
+
938
+ .header-actions .btn {
939
+ display: none;
940
+ }
941
+
942
+ .mobile-toggle {
943
+ display: block;
944
+ }
945
+
946
+ .hero-grid {
947
+ grid-template-columns: 1fr;
948
+ text-align: center;
949
+ }
950
+
951
+ .hero-intro {
952
+ margin: 0 auto 32px;
953
+ }
954
+
955
+ .hero-cta {
956
+ justify-content: center;
957
+ }
958
+
959
+ .hero-visual {
960
+ height: 400px;
961
+ }
962
+
963
+ .alur-grid {
964
+ grid-template-columns: 1fr;
965
+ }
966
+
967
+ .alur-grid::before {
968
+ display: none;
969
+ }
970
+
971
+ .footer-grid {
972
+ grid-template-columns: 1fr;
973
+ }
974
+ }
975
+
976
+ @media (min-width: 768px) {
977
+ .footer-grid {
978
+ grid-template-columns: 2fr 1fr 1fr;
979
+ }
980
+ }
981
+
982
+
983
+ /* pipeline image & layout guards */
984
+ html, body { overflow-x: clip; }
985
+ img { max-width: 100%; height: auto; }
986
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
987
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
988
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
989
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
990
+ /* 合规声明块(zb-disclaimer,全站 footer) */
991
+ .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; }
992
+ .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; }