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,364 @@
1
+ :root {
2
+ --bg: #0b0a08;
3
+ --surface: #1c1913;
4
+ --accent: #d98e32;
5
+ --accent2: #6cb4ee;
6
+ --text: #faf7f0;
7
+ --muted: #a89f91;
8
+ }
9
+
10
+ * {
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ body {
15
+ margin: 0;
16
+ font-family: 'Barlow', sans-serif;
17
+ background-color: var(--bg);
18
+ color: var(--text);
19
+ line-height: 1.6;
20
+ }
21
+
22
+ h1, h2, h3, .brand, .footer-brand, .btn-anton {
23
+ font-family: 'Anton', sans-serif;
24
+ font-weight: normal;
25
+ letter-spacing: 1px;
26
+ text-transform: uppercase;
27
+ }
28
+
29
+ a {
30
+ color: var(--accent);
31
+ text-decoration: none;
32
+ transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
33
+ }
34
+
35
+ a:hover {
36
+ color: var(--accent2);
37
+ }
38
+
39
+ .container {
40
+ max-width: 1280px;
41
+ margin: 0 auto;
42
+ padding: 0 20px;
43
+ }
44
+
45
+ /* Header Styles */
46
+ header {
47
+ background-color: var(--surface);
48
+ border-bottom: 1px solid #333;
49
+ position: sticky;
50
+ top: 0;
51
+ z-index: 100;
52
+ }
53
+ .nav-container {
54
+ display: flex;
55
+ justify-content: space-between;
56
+ align-items: center;
57
+ height: 70px;
58
+ }
59
+ .brand {
60
+ font-size: 28px;
61
+ color: var(--accent);
62
+ }
63
+ .brand:hover {
64
+ color: var(--text);
65
+ }
66
+ .nav-links {
67
+ display: none;
68
+ gap: 20px;
69
+ }
70
+ .nav-links a {
71
+ color: var(--text);
72
+ font-weight: 600;
73
+ font-size: 15px;
74
+ text-transform: uppercase;
75
+ }
76
+ .nav-links a:hover {
77
+ color: var(--accent);
78
+ }
79
+ .menu-toggle {
80
+ background: none;
81
+ border: none;
82
+ color: var(--text);
83
+ font-size: 24px;
84
+ cursor: pointer;
85
+ }
86
+
87
+ /* Main Content */
88
+ main {
89
+ padding: 40px 0 80px;
90
+ min-height: 70vh;
91
+ }
92
+
93
+ .breadcrumb {
94
+ font-size: 14px;
95
+ color: var(--muted);
96
+ margin-bottom: 20px;
97
+ text-align: center;
98
+ }
99
+ .breadcrumb a {
100
+ color: var(--text);
101
+ }
102
+ .breadcrumb a:hover {
103
+ color: var(--accent);
104
+ }
105
+
106
+ .page-title {
107
+ font-size: 42px;
108
+ color: var(--accent);
109
+ text-align: center;
110
+ margin: 0 0 40px 0;
111
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
112
+ }
113
+
114
+ /* Search Box */
115
+ .search-container {
116
+ max-width: 800px;
117
+ margin: 0 auto 50px;
118
+ display: flex;
119
+ gap: 10px;
120
+ flex-direction: column;
121
+ }
122
+ .search-input-wrapper {
123
+ display: flex;
124
+ gap: 10px;
125
+ width: 100%;
126
+ }
127
+ #q {
128
+ flex: 1;
129
+ padding: 16px 24px;
130
+ font-size: 18px;
131
+ font-family: 'Barlow', sans-serif;
132
+ background-color: var(--surface);
133
+ border: 2px solid #333;
134
+ color: var(--text);
135
+ border-radius: 8px;
136
+ outline: none;
137
+ transition: border-color 0.3s, box-shadow 0.3s;
138
+ }
139
+ #q:focus {
140
+ border-color: var(--accent);
141
+ box-shadow: 0 0 10px rgba(217, 142, 50, 0.2);
142
+ }
143
+ #q::placeholder {
144
+ color: #666;
145
+ }
146
+ #btn-cari {
147
+ padding: 16px 32px;
148
+ font-size: 20px;
149
+ background-color: var(--accent);
150
+ color: #000;
151
+ border: none;
152
+ border-radius: 8px;
153
+ cursor: pointer;
154
+ transition: background-color 0.3s, transform 0.1s;
155
+ }
156
+ #btn-cari:hover {
157
+ background-color: var(--accent2);
158
+ }
159
+ #btn-cari:active {
160
+ transform: scale(0.98);
161
+ }
162
+
163
+ /* Sections */
164
+ .section-header {
165
+ font-size: 28px;
166
+ color: var(--text);
167
+ border-bottom: 2px solid #333;
168
+ padding-bottom: 10px;
169
+ margin-bottom: 25px;
170
+ }
171
+
172
+ /* Tag Cloud */
173
+ .tag-cloud {
174
+ display: flex;
175
+ flex-wrap: wrap;
176
+ gap: 12px;
177
+ margin-bottom: 60px;
178
+ }
179
+ .tag-cloud a {
180
+ display: inline-block;
181
+ padding: 10px 20px;
182
+ background-color: var(--surface);
183
+ border: 1px solid #333;
184
+ border-radius: 30px;
185
+ font-size: 15px;
186
+ font-weight: 600;
187
+ color: var(--muted);
188
+ }
189
+ .tag-cloud a:hover {
190
+ background-color: var(--accent);
191
+ color: #000;
192
+ border-color: var(--accent);
193
+ }
194
+
195
+ /* Results */
196
+ #hasil-title {
197
+ display: none;
198
+ }
199
+ #hasil {
200
+ display: grid;
201
+ gap: 20px;
202
+ grid-template-columns: 1fr;
203
+ margin-bottom: 40px;
204
+ }
205
+ .result-card {
206
+ background-color: var(--surface);
207
+ padding: 24px;
208
+ border-radius: 12px;
209
+ border: 1px solid #333;
210
+ display: block;
211
+ transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
212
+ }
213
+ .result-card:hover {
214
+ transform: translateY(-5px);
215
+ border-color: var(--accent);
216
+ box-shadow: 0 10px 20px rgba(0,0,0,0.5);
217
+ }
218
+ .result-card h3 {
219
+ margin: 0 0 8px 0;
220
+ color: var(--accent2);
221
+ font-size: 22px;
222
+ font-family: 'Barlow', sans-serif;
223
+ font-weight: 700;
224
+ text-transform: none;
225
+ letter-spacing: 0;
226
+ }
227
+ .result-card span {
228
+ display: block;
229
+ font-size: 13px;
230
+ color: var(--muted);
231
+ margin-bottom: 12px;
232
+ word-break: break-all;
233
+ }
234
+ .result-card p {
235
+ margin: 0;
236
+ font-size: 15px;
237
+ color: #ccc;
238
+ }
239
+ #kosong {
240
+ color: var(--text);
241
+ background-color: rgba(217, 142, 50, 0.1);
242
+ padding: 20px;
243
+ border-radius: 8px;
244
+ border-left: 4px solid var(--accent);
245
+ font-size: 16px;
246
+ }
247
+
248
+ /* CTA Section */
249
+ .cta-box {
250
+ background: linear-gradient(145deg, var(--surface), #110f0b);
251
+ border: 1px solid #333;
252
+ border-radius: 16px;
253
+ padding: 40px 20px;
254
+ text-align: center;
255
+ margin-top: 60px;
256
+ }
257
+ .cta-box p {
258
+ font-size: 18px;
259
+ margin: 0 0 25px 0;
260
+ color: var(--text);
261
+ }
262
+ .cta-buttons {
263
+ display: flex;
264
+ justify-content: center;
265
+ gap: 15px;
266
+ flex-wrap: wrap;
267
+ }
268
+ .btn {
269
+ display: inline-block;
270
+ padding: 14px 30px;
271
+ font-size: 18px;
272
+ border-radius: 8px;
273
+ transition: 0.3s;
274
+ }
275
+ .btn-primary {
276
+ background-color: var(--accent);
277
+ color: #000;
278
+ }
279
+ .btn-primary:hover {
280
+ background-color: #fff;
281
+ color: #000;
282
+ }
283
+ .btn-outline {
284
+ background-color: transparent;
285
+ border: 2px solid var(--accent);
286
+ color: var(--accent);
287
+ }
288
+ .btn-outline:hover {
289
+ background-color: var(--accent);
290
+ color: #000;
291
+ }
292
+
293
+ /* Footer Styles */
294
+ footer {
295
+ background-color: #050504;
296
+ padding: 50px 0 20px;
297
+ border-top: 1px solid #222;
298
+ text-align: center;
299
+ }
300
+ .footer-brand {
301
+ font-size: 36px;
302
+ color: var(--accent);
303
+ margin-bottom: 15px;
304
+ }
305
+ .footer-tagline {
306
+ color: var(--muted);
307
+ font-size: 15px;
308
+ margin-bottom: 25px;
309
+ max-width: 600px;
310
+ margin-left: auto;
311
+ margin-right: auto;
312
+ }
313
+ .footer-links {
314
+ display: flex;
315
+ flex-wrap: wrap;
316
+ justify-content: center;
317
+ gap: 15px 25px;
318
+ margin-bottom: 40px;
319
+ }
320
+ .footer-links a {
321
+ color: var(--text);
322
+ font-size: 15px;
323
+ }
324
+ .footer-links a:hover {
325
+ color: var(--accent);
326
+ }
327
+ .copyright {
328
+ color: #555;
329
+ font-size: 13px;
330
+ margin: 0;
331
+ }
332
+
333
+ /* Responsive Breakpoints */
334
+ @media (min-width: 768px) {
335
+ .search-container {
336
+ flex-direction: row;
337
+ }
338
+ #hasil {
339
+ grid-template-columns: repeat(2, 1fr);
340
+ }
341
+ }
342
+ @media (min-width: 1024px) {
343
+ .nav-links {
344
+ display: flex;
345
+ }
346
+ .menu-toggle {
347
+ display: none;
348
+ }
349
+ .page-title {
350
+ font-size: 48px;
351
+ }
352
+ }
353
+
354
+
355
+ /* pipeline image & layout guards */
356
+ html, body { overflow-x: clip; }
357
+ img { max-width: 100%; height: auto; }
358
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
359
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
360
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
361
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
362
+ /* 合规声明块(zb-disclaimer,全站 footer) */
363
+ .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; }
364
+ .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; }