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,279 @@
1
+ :root {
2
+ --bg: #0b0a08;
3
+ --primary: #d98e32;
4
+ --accent: #6cb4ee;
5
+ --text: #ffffff;
6
+ --text-muted: #a0a0a0;
7
+ --font-heading: 'Anton', sans-serif;
8
+ --font-body: 'Barlow', sans-serif;
9
+ }
10
+
11
+ * {
12
+ margin: 0;
13
+ padding: 0;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ body {
18
+ background-color: var(--bg);
19
+ color: var(--text);
20
+ font-family: var(--font-body);
21
+ line-height: 1.6;
22
+ display: flex;
23
+ flex-direction: column;
24
+ min-height: 100vh;
25
+ -webkit-font-smoothing: antialiased;
26
+ }
27
+
28
+ .container {
29
+ width: 100%;
30
+ max-width: 1200px;
31
+ margin: 0 auto;
32
+ padding: 0 20px;
33
+ }
34
+
35
+ a {
36
+ text-decoration: none;
37
+ color: inherit;
38
+ transition: color 0.3s ease;
39
+ }
40
+
41
+ /* HEADER STYLES */
42
+ header {
43
+ background-color: rgba(11, 10, 8, 0.95);
44
+ border-bottom: 1px solid rgba(217, 142, 50, 0.2);
45
+ position: sticky;
46
+ top: 0;
47
+ z-index: 1000;
48
+ }
49
+
50
+ .nav-container {
51
+ display: flex;
52
+ justify-content: space-between;
53
+ align-items: center;
54
+ height: 60px;
55
+ }
56
+
57
+ .brand {
58
+ font-family: var(--font-heading);
59
+ font-size: 24px;
60
+ color: var(--primary);
61
+ text-transform: uppercase;
62
+ letter-spacing: 1px;
63
+ display: flex;
64
+ align-items: center;
65
+ }
66
+
67
+ .menu-toggle {
68
+ background: none;
69
+ border: none;
70
+ color: var(--text);
71
+ font-size: 24px;
72
+ cursor: pointer;
73
+ padding: 5px;
74
+ }
75
+
76
+ .nav-links {
77
+ display: none;
78
+ position: absolute;
79
+ top: 60px;
80
+ left: 0;
81
+ width: 100%;
82
+ background-color: #12100d;
83
+ flex-direction: column;
84
+ border-bottom: 1px solid rgba(217, 142, 50, 0.2);
85
+ }
86
+
87
+ .nav-links.active {
88
+ display: flex;
89
+ }
90
+
91
+ .nav-links a {
92
+ padding: 15px 20px;
93
+ font-family: var(--font-heading);
94
+ font-size: 16px;
95
+ text-transform: uppercase;
96
+ letter-spacing: 1px;
97
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
98
+ }
99
+
100
+ .nav-links a:last-child {
101
+ border-bottom: none;
102
+ }
103
+
104
+ .nav-links a:hover {
105
+ color: var(--primary);
106
+ background-color: rgba(217, 142, 50, 0.05);
107
+ }
108
+
109
+ /* 404 MAIN CONTENT STYLES */
110
+ main {
111
+ flex: 1;
112
+ display: flex;
113
+ align-items: center;
114
+ justify-content: center;
115
+ padding: 40px 20px;
116
+ text-align: center;
117
+ background: radial-gradient(circle at center, rgba(217, 142, 50, 0.05) 0%, transparent 70%);
118
+ }
119
+
120
+ .error-wrapper {
121
+ max-width: 600px;
122
+ animation: fadeIn 0.8s ease-out;
123
+ }
124
+
125
+ .error-code {
126
+ font-family: var(--font-heading);
127
+ font-size: 120px;
128
+ line-height: 1;
129
+ margin: 0;
130
+ color: var(--primary);
131
+ text-shadow: 0 0 30px rgba(217, 142, 50, 0.3);
132
+ letter-spacing: 5px;
133
+ }
134
+
135
+ .error-title {
136
+ font-family: var(--font-heading);
137
+ font-size: 26px;
138
+ text-transform: uppercase;
139
+ letter-spacing: 1.5px;
140
+ margin: 10px 0 15px;
141
+ color: var(--text);
142
+ }
143
+
144
+ .error-desc {
145
+ font-size: 16px;
146
+ color: var(--text-muted);
147
+ margin-bottom: 30px;
148
+ max-width: 400px;
149
+ margin-left: auto;
150
+ margin-right: auto;
151
+ }
152
+
153
+ .btn-home {
154
+ display: inline-block;
155
+ background-color: var(--primary);
156
+ color: #000;
157
+ font-family: var(--font-heading);
158
+ font-size: 18px;
159
+ text-transform: uppercase;
160
+ letter-spacing: 1px;
161
+ padding: 12px 30px;
162
+ border-radius: 4px;
163
+ transition: all 0.3s ease;
164
+ border: 1px solid var(--primary);
165
+ }
166
+
167
+ .btn-home:hover {
168
+ background-color: var(--accent);
169
+ border-color: var(--accent);
170
+ color: #fff;
171
+ box-shadow: 0 4px 15px rgba(108, 180, 238, 0.4);
172
+ transform: translateY(-2px);
173
+ }
174
+
175
+ /* FOOTER STYLES */
176
+ footer {
177
+ background-color: #070605;
178
+ padding: 40px 0 20px;
179
+ border-top: 1px solid rgba(217, 142, 50, 0.2);
180
+ text-align: center;
181
+ }
182
+
183
+ .footer-brand {
184
+ font-family: var(--font-heading);
185
+ font-size: 28px;
186
+ color: var(--primary);
187
+ text-transform: uppercase;
188
+ letter-spacing: 1px;
189
+ margin-bottom: 10px;
190
+ }
191
+
192
+ .footer-tagline {
193
+ color: var(--text-muted);
194
+ font-size: 14px;
195
+ margin-bottom: 25px;
196
+ padding: 0 10px;
197
+ }
198
+
199
+ .footer-links {
200
+ display: flex;
201
+ flex-wrap: wrap;
202
+ justify-content: center;
203
+ gap: 12px 20px;
204
+ margin-bottom: 25px;
205
+ }
206
+
207
+ .footer-links a {
208
+ font-family: var(--font-heading);
209
+ font-size: 14px;
210
+ color: var(--text);
211
+ text-transform: uppercase;
212
+ letter-spacing: 0.5px;
213
+ }
214
+
215
+ .footer-links a:hover {
216
+ color: var(--primary);
217
+ }
218
+
219
+ .copyright {
220
+ font-size: 12px;
221
+ color: rgba(255, 255, 255, 0.3);
222
+ }
223
+
224
+ @keyframes fadeIn {
225
+ from { opacity: 0; transform: translateY(20px); }
226
+ to { opacity: 1; transform: translateY(0); }
227
+ }
228
+
229
+ /* DESKTOP STYLES */
230
+ @media (min-width: 768px) {
231
+ .menu-toggle {
232
+ display: none;
233
+ }
234
+
235
+ .nav-links {
236
+ display: flex;
237
+ position: static;
238
+ flex-direction: row;
239
+ width: auto;
240
+ background: none;
241
+ border: none;
242
+ gap: 25px;
243
+ }
244
+
245
+ .nav-links a {
246
+ padding: 0;
247
+ border: none;
248
+ font-size: 15px;
249
+ }
250
+
251
+ .nav-links a:hover {
252
+ background-color: transparent;
253
+ }
254
+
255
+ .error-code {
256
+ font-size: 180px;
257
+ }
258
+
259
+ .error-title {
260
+ font-size: 36px;
261
+ }
262
+
263
+ .error-desc {
264
+ font-size: 18px;
265
+ max-width: 500px;
266
+ }
267
+ }
268
+
269
+
270
+ /* pipeline image & layout guards */
271
+ html, body { overflow-x: clip; }
272
+ img { max-width: 100%; height: auto; }
273
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
274
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
275
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
276
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
277
+ /* 合规声明块(zb-disclaimer,全站 footer) */
278
+ .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; }
279
+ .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; }
@@ -0,0 +1,368 @@
1
+ :root {
2
+ /* Palette */
3
+ --bg: #0b0a08;
4
+ --surface: #1c1913;
5
+ --accent: #d98e32;
6
+ --accent2: #6cb4ee;
7
+ --text: #faf7f0;
8
+ --muted: #a89f91;
9
+
10
+ /* Fonts */
11
+ --font-display: 'Anton', sans-serif;
12
+ --font-body: 'Barlow', sans-serif;
13
+
14
+ /* Layout */
15
+ --container-w: 1200px;
16
+ --gap-sm: 1rem;
17
+ --gap-md: 2rem;
18
+ --gap-lg: 4rem;
19
+
20
+ /* Motif: Keris Legacy / Esports Colosseum */
21
+ --clip-angle: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
22
+ --clip-angle-reverse: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
23
+ }
24
+
25
+ /* Reset & Base */
26
+ * { margin: 0; padding: 0; box-sizing: border-box; }
27
+ body {
28
+ background-color: var(--bg);
29
+ color: var(--text);
30
+ font-family: var(--font-body);
31
+ line-height: 1.6;
32
+ font-size: 16px;
33
+ overflow-x: hidden;
34
+ background-image:
35
+ linear-gradient(45deg, rgba(217, 142, 50, 0.03) 25%, transparent 25%, transparent 75%, rgba(217, 142, 50, 0.03) 75%, rgba(217, 142, 50, 0.03)),
36
+ linear-gradient(45deg, rgba(217, 142, 50, 0.03) 25%, transparent 25%, transparent 75%, rgba(217, 142, 50, 0.03) 75%, rgba(217, 142, 50, 0.03));
37
+ background-size: 60px 60px;
38
+ background-position: 0 0, 30px 30px;
39
+ }
40
+
41
+ a { color: var(--accent); text-decoration: none; transition: all 0.3s ease; }
42
+ a:hover { color: var(--accent2); }
43
+
44
+ h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: normal; letter-spacing: 1px; line-height: 1.1; }
45
+
46
+ .container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 20px; }
47
+
48
+ /* Header (Exact Match Styling) */
49
+ header { background-color: var(--surface); border-bottom: 2px solid var(--accent); position: sticky; top: 0; z-index: 100; }
50
+ .nav-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
51
+ .brand { font-family: var(--font-display); font-size: 2rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
52
+ .nav-links { display: flex; gap: 20px; }
53
+ .nav-links a { color: var(--text); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
54
+ .nav-links a:hover { color: var(--accent); }
55
+ .menu-toggle { display: none; background: none; border: none; color: var(--accent); font-size: 1.8rem; cursor: pointer; }
56
+
57
+ /* Hero / Arena Entrance */
58
+ .hero {
59
+ padding: var(--gap-lg) 0 var(--gap-md);
60
+ text-align: center;
61
+ position: relative;
62
+ background: radial-gradient(circle at top center, rgba(217, 142, 50, 0.15) 0%, transparent 70%);
63
+ border-bottom: 1px solid rgba(217, 142, 50, 0.2);
64
+ }
65
+ .breadcrumb {
66
+ font-size: 0.85rem;
67
+ color: var(--muted);
68
+ margin-bottom: var(--gap-md);
69
+ text-transform: uppercase;
70
+ letter-spacing: 1px;
71
+ font-weight: 600;
72
+ }
73
+ .hero h1 {
74
+ font-size: clamp(2.5rem, 6vw, 4.5rem);
75
+ color: var(--text);
76
+ margin-bottom: var(--gap-sm);
77
+ text-shadow: 0 4px 20px rgba(0,0,0,0.8);
78
+ max-width: 900px;
79
+ margin-inline: auto;
80
+ }
81
+ .meta-chips {
82
+ display: flex;
83
+ justify-content: center;
84
+ gap: 15px;
85
+ margin-bottom: var(--gap-md);
86
+ flex-wrap: wrap;
87
+ }
88
+ .chip {
89
+ background-color: var(--surface);
90
+ border: 1px solid var(--accent);
91
+ color: var(--accent);
92
+ padding: 5px 15px;
93
+ font-size: 0.8rem;
94
+ font-weight: 700;
95
+ text-transform: uppercase;
96
+ letter-spacing: 1px;
97
+ clip-path: var(--clip-angle);
98
+ }
99
+ .intro-text {
100
+ font-size: 1.1rem;
101
+ color: var(--muted);
102
+ max-width: 800px;
103
+ margin: 0 auto;
104
+ text-align: justify;
105
+ text-align-last: center;
106
+ }
107
+
108
+ /* Content Arena */
109
+ .content-arena { padding: var(--gap-lg) 0; }
110
+ .section-block { margin-bottom: var(--gap-lg); }
111
+ .section-block h2 {
112
+ font-size: clamp(1.8rem, 4vw, 2.5rem);
113
+ color: var(--accent);
114
+ margin-bottom: var(--gap-md);
115
+ position: relative;
116
+ display: inline-block;
117
+ padding-bottom: 10px;
118
+ }
119
+ .section-block h2::after {
120
+ content: '';
121
+ position: absolute;
122
+ bottom: 0;
123
+ left: 0;
124
+ width: 60px;
125
+ height: 4px;
126
+ background-color: var(--accent2);
127
+ }
128
+ .section-block p {
129
+ margin-bottom: var(--gap-sm);
130
+ font-size: 1.05rem;
131
+ color: var(--text);
132
+ }
133
+ .section-block p a {
134
+ font-weight: 700;
135
+ border-bottom: 1px dashed var(--accent);
136
+ }
137
+ .section-block p a:hover {
138
+ color: var(--accent2);
139
+ border-bottom-color: var(--accent2);
140
+ }
141
+
142
+ /* Bonus Cards (The Perks) */
143
+ .bonus-grid {
144
+ display: grid;
145
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
146
+ gap: 20px;
147
+ margin-top: var(--gap-md);
148
+ list-style: none;
149
+ }
150
+ .bonus-card {
151
+ background-color: var(--surface);
152
+ border: 1px solid rgba(217, 142, 50, 0.3);
153
+ padding: 25px;
154
+ position: relative;
155
+ clip-path: var(--clip-angle-reverse);
156
+ transition: transform 0.3s ease, border-color 0.3s ease;
157
+ display: flex;
158
+ align-items: center;
159
+ gap: 15px;
160
+ }
161
+ .bonus-card:hover {
162
+ transform: translateY(-5px);
163
+ border-color: var(--accent);
164
+ background-color: #231f18;
165
+ }
166
+ .bonus-card::before {
167
+ content: '✦';
168
+ font-size: 1.5rem;
169
+ color: var(--accent2);
170
+ font-family: var(--font-display);
171
+ }
172
+ .bonus-card span {
173
+ font-weight: 600;
174
+ font-size: 1.1rem;
175
+ }
176
+
177
+ /* Highlight Box (Turnover Section) */
178
+ .highlight-box {
179
+ background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
180
+ border-left: 5px solid var(--accent);
181
+ padding: 30px;
182
+ margin-top: var(--gap-md);
183
+ }
184
+
185
+ /* FAQ Accordion (The Rules) */
186
+ .faq-section {
187
+ background-color: var(--surface);
188
+ padding: var(--gap-md);
189
+ border: 1px solid rgba(168, 159, 145, 0.2);
190
+ clip-path: var(--clip-angle);
191
+ }
192
+ details {
193
+ border-bottom: 1px solid rgba(217, 142, 50, 0.2);
194
+ padding: 15px 0;
195
+ }
196
+ details:last-child { border-bottom: none; }
197
+ summary {
198
+ font-family: var(--font-display);
199
+ font-size: 1.2rem;
200
+ color: var(--text);
201
+ cursor: pointer;
202
+ list-style: none;
203
+ position: relative;
204
+ padding-right: 30px;
205
+ }
206
+ summary::-webkit-details-marker { display: none; }
207
+ summary::after {
208
+ content: '+';
209
+ position: absolute;
210
+ right: 0;
211
+ top: 50%;
212
+ transform: translateY(-50%);
213
+ color: var(--accent);
214
+ font-size: 1.5rem;
215
+ transition: transform 0.3s ease;
216
+ }
217
+ details[open] summary::after {
218
+ content: '−';
219
+ color: var(--accent2);
220
+ }
221
+ details[open] summary { color: var(--accent); }
222
+ details p {
223
+ margin-top: 15px;
224
+ color: var(--muted);
225
+ padding-left: 10px;
226
+ border-left: 2px solid var(--accent2);
227
+ }
228
+
229
+ /* Related Links (Navigation Grid) */
230
+ .related-nav {
231
+ margin: var(--gap-lg) 0;
232
+ text-align: center;
233
+ }
234
+ .related-nav h3 {
235
+ font-size: 2rem;
236
+ margin-bottom: var(--gap-md);
237
+ color: var(--muted);
238
+ }
239
+ .nav-grid {
240
+ display: flex;
241
+ flex-wrap: wrap;
242
+ justify-content: center;
243
+ gap: 15px;
244
+ }
245
+ .nav-grid a {
246
+ display: inline-block;
247
+ background-color: transparent;
248
+ border: 2px solid var(--muted);
249
+ color: var(--text);
250
+ padding: 12px 25px;
251
+ font-family: var(--font-display);
252
+ font-size: 1.1rem;
253
+ text-transform: uppercase;
254
+ clip-path: var(--clip-angle);
255
+ transition: all 0.3s ease;
256
+ }
257
+ .nav-grid a:hover {
258
+ border-color: var(--accent2);
259
+ color: var(--accent2);
260
+ background-color: rgba(108, 180, 238, 0.1);
261
+ }
262
+
263
+ /* CTA Block (The Call to Arena) */
264
+ .cta-block {
265
+ background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
266
+ border: 1px solid var(--accent);
267
+ padding: var(--gap-lg) 20px;
268
+ text-align: center;
269
+ margin-bottom: var(--gap-lg);
270
+ position: relative;
271
+ overflow: hidden;
272
+ }
273
+ .cta-block::before {
274
+ content: '';
275
+ position: absolute;
276
+ top: -50%; left: -50%; width: 200%; height: 200%;
277
+ background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(217, 142, 50, 0.05) 10px, rgba(217, 142, 50, 0.05) 20px);
278
+ z-index: 0;
279
+ pointer-events: none;
280
+ }
281
+ .cta-block h2 {
282
+ font-size: clamp(2rem, 5vw, 3.5rem);
283
+ color: var(--text);
284
+ margin-bottom: var(--gap-md);
285
+ position: relative;
286
+ z-index: 1;
287
+ }
288
+ .cta-buttons {
289
+ display: flex;
290
+ justify-content: center;
291
+ gap: 20px;
292
+ position: relative;
293
+ z-index: 1;
294
+ flex-wrap: wrap;
295
+ }
296
+ .btn {
297
+ display: inline-flex;
298
+ align-items: center;
299
+ justify-content: center;
300
+ padding: 15px 40px;
301
+ font-family: var(--font-display);
302
+ font-size: 1.2rem;
303
+ text-transform: uppercase;
304
+ letter-spacing: 1px;
305
+ clip-path: var(--clip-angle);
306
+ min-width: 200px;
307
+ min-height: 54px; /* Touch target */
308
+ }
309
+ .btn-primary {
310
+ background-color: var(--accent);
311
+ color: var(--bg);
312
+ border: none;
313
+ }
314
+ .btn-primary:hover {
315
+ background-color: var(--text);
316
+ color: var(--bg);
317
+ }
318
+ .btn-secondary {
319
+ background-color: transparent;
320
+ color: var(--accent);
321
+ border: 2px solid var(--accent);
322
+ }
323
+ .btn-secondary:hover {
324
+ background-color: var(--accent);
325
+ color: var(--bg);
326
+ }
327
+
328
+ /* Footer (Exact Match Styling) */
329
+ footer { background-color: var(--surface); padding: var(--gap-lg) 0 var(--gap-md); border-top: 1px solid rgba(168, 159, 145, 0.2); text-align: center; }
330
+ .footer-brand { font-family: var(--font-display); font-size: 2.5rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: flex; justify-content: center; align-items: center; gap: 10px; }
331
+ .footer-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: var(--gap-md); }
332
+ .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: var(--gap-md); max-width: 800px; margin-inline: auto; }
333
+ .footer-links a { color: var(--text); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; }
334
+ .footer-links a:hover { color: var(--accent); }
335
+ .copyright { color: var(--muted); font-size: 0.8rem; }
336
+
337
+ /* Media Queries */
338
+ @media (max-width: 768px) {
339
+ .menu-toggle { display: block; }
340
+ .nav-links {
341
+ display: none;
342
+ position: absolute;
343
+ top: 70px;
344
+ left: 0;
345
+ width: 100%;
346
+ background-color: var(--surface);
347
+ flex-direction: column;
348
+ padding: 20px;
349
+ border-bottom: 2px solid var(--accent);
350
+ text-align: center;
351
+ }
352
+ .nav-links.active { display: flex; }
353
+ .intro-text { text-align: left; text-align-last: left; }
354
+ .cta-buttons { flex-direction: column; width: 100%; }
355
+ .btn { width: 100%; }
356
+ }
357
+
358
+
359
+ /* pipeline image & layout guards */
360
+ html, body { overflow-x: clip; }
361
+ img { max-width: 100%; height: auto; }
362
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
363
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
364
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
365
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
366
+ /* 合规声明块(zb-disclaimer,全站 footer) */
367
+ .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; }
368
+ .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; }