css-pkg-01 1.2.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.
Files changed (41) hide show
  1. package/k57/page-404.css +299 -0
  2. package/k57/page-apk.css +560 -0
  3. package/k57/page-bonus.css +173 -0
  4. package/k57/page-cari.css +415 -0
  5. package/k57/page-cashback.css +473 -0
  6. package/k57/page-daftar.css +567 -0
  7. package/k57/page-faq.css +696 -0
  8. package/k57/page-game-koi-gate.css +625 -0
  9. package/k57/page-game-super-ace.css +167 -0
  10. package/k57/page-link-alternatif.css +664 -0
  11. package/k57/page-login.css +620 -0
  12. package/k57/page-panduan-cara-kerja-scatter.css +628 -0
  13. package/k57/page-panduan-payline-slot.css +583 -0
  14. package/k57/page-panduan-slot-5rb.css +168 -0
  15. package/k57/page-panduan-slot-deposit-5000.css +664 -0
  16. package/k57/page-panduan-slot-minimal-deposit.css +667 -0
  17. package/k57/page-panduan-volatilitas-slot.css +689 -0
  18. package/k57/page-rtp.css +718 -0
  19. package/k57/page-tentang-kami.css +636 -0
  20. package/k57/style.css +992 -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,299 @@
1
+ :root {
2
+ --bg-color: #041214;
3
+ --text-main: #f8fafc;
4
+ --text-muted: #94a3b8;
5
+ --primary: #ffd166;
6
+ --primary-hover: #ffc133;
7
+ --secondary: #14b8a6;
8
+ --secondary-hover: #0f8e80;
9
+ --bg-surface: #0a1f23;
10
+ --font-heading: 'Russo One', sans-serif;
11
+ --font-body: 'Open Sans', sans-serif;
12
+ }
13
+
14
+ * {
15
+ margin: 0;
16
+ padding: 0;
17
+ box-sizing: border-box;
18
+ }
19
+
20
+ body {
21
+ background-color: var(--bg-color);
22
+ color: var(--text-main);
23
+ font-family: var(--font-body);
24
+ line-height: 1.6;
25
+ display: flex;
26
+ flex-direction: column;
27
+ min-height: 100vh;
28
+ }
29
+
30
+ .container {
31
+ width: 100%;
32
+ max-width: 1200px;
33
+ margin: 0 auto;
34
+ padding: 0 1rem;
35
+ }
36
+
37
+ a {
38
+ text-decoration: none;
39
+ transition: all 0.3s ease;
40
+ }
41
+
42
+ /* Header Styles */
43
+ header {
44
+ background-color: rgba(4, 18, 20, 0.95);
45
+ border-bottom: 1px solid rgba(255, 209, 102, 0.1);
46
+ position: sticky;
47
+ top: 0;
48
+ z-index: 100;
49
+ }
50
+
51
+ .header-inner {
52
+ display: flex;
53
+ justify-content: space-between;
54
+ align-items: center;
55
+ height: 70px;
56
+ }
57
+
58
+ .brand {
59
+ font-family: var(--font-heading);
60
+ font-size: 1.5rem;
61
+ color: var(--text-main);
62
+ display: flex;
63
+ align-items: center;
64
+ text-transform: uppercase;
65
+ letter-spacing: 1px;
66
+ }
67
+
68
+ .brand span {
69
+ color: var(--primary);
70
+ }
71
+
72
+ .nav-links {
73
+ display: none; /* Hidden on mobile by default */
74
+ }
75
+
76
+ .nav-links a {
77
+ color: var(--text-main);
78
+ font-weight: 600;
79
+ font-size: 0.9rem;
80
+ text-transform: uppercase;
81
+ }
82
+
83
+ .nav-links a:hover {
84
+ color: var(--primary);
85
+ }
86
+
87
+ .header-actions {
88
+ display: flex;
89
+ align-items: center;
90
+ gap: 0.5rem;
91
+ }
92
+
93
+ .btn {
94
+ display: inline-block;
95
+ padding: 0.5rem 1rem;
96
+ border-radius: 4px;
97
+ font-weight: 600;
98
+ font-family: var(--font-body);
99
+ text-align: center;
100
+ cursor: pointer;
101
+ font-size: 0.85rem;
102
+ text-transform: uppercase;
103
+ }
104
+
105
+ .btn-primary {
106
+ background-color: var(--primary);
107
+ color: #000;
108
+ border: 2px solid var(--primary);
109
+ }
110
+
111
+ .btn-primary:hover {
112
+ background-color: var(--primary-hover);
113
+ border-color: var(--primary-hover);
114
+ }
115
+
116
+ .btn-secondary {
117
+ background-color: transparent;
118
+ color: var(--secondary);
119
+ border: 2px solid var(--secondary);
120
+ }
121
+
122
+ .btn-secondary:hover {
123
+ background-color: var(--secondary);
124
+ color: #000;
125
+ }
126
+
127
+ .mobile-toggle {
128
+ background: none;
129
+ border: none;
130
+ color: var(--text-main);
131
+ font-size: 1.5rem;
132
+ cursor: pointer;
133
+ display: block;
134
+ padding: 0.25rem;
135
+ }
136
+
137
+ /* Mobile Menu Active State */
138
+ .nav-links.active {
139
+ display: flex;
140
+ flex-direction: column;
141
+ position: absolute;
142
+ top: 70px;
143
+ left: 0;
144
+ width: 100%;
145
+ background-color: var(--bg-surface);
146
+ padding: 1rem;
147
+ gap: 1rem;
148
+ border-bottom: 1px solid rgba(255, 209, 102, 0.1);
149
+ }
150
+
151
+ /* 404 Main Content */
152
+ .error-page {
153
+ flex: 1;
154
+ display: flex;
155
+ align-items: center;
156
+ justify-content: center;
157
+ text-align: center;
158
+ padding: 4rem 1rem;
159
+ background: radial-gradient(circle at center, var(--bg-surface) 0%, var(--bg-color) 100%);
160
+ }
161
+
162
+ .error-content {
163
+ max-width: 500px;
164
+ }
165
+
166
+ .error-code {
167
+ font-family: var(--font-heading);
168
+ font-size: 6rem;
169
+ line-height: 1;
170
+ color: var(--bg-color);
171
+ -webkit-text-stroke: 2px var(--primary);
172
+ text-shadow: 4px 4px 0px rgba(20, 184, 166, 0.3);
173
+ margin-bottom: 1rem;
174
+ letter-spacing: 5px;
175
+ }
176
+
177
+ .error-title {
178
+ font-family: var(--font-heading);
179
+ font-size: 1.5rem;
180
+ color: var(--text-main);
181
+ margin-bottom: 1rem;
182
+ text-transform: uppercase;
183
+ letter-spacing: 1px;
184
+ }
185
+
186
+ .error-desc {
187
+ color: var(--text-muted);
188
+ margin-bottom: 2rem;
189
+ font-size: 1rem;
190
+ }
191
+
192
+ .btn-home {
193
+ font-size: 1rem;
194
+ padding: 0.75rem 2rem;
195
+ border-radius: 8px;
196
+ box-shadow: 0 4px 15px rgba(255, 209, 102, 0.2);
197
+ }
198
+
199
+ /* Footer Styles */
200
+ footer {
201
+ background-color: var(--bg-surface);
202
+ padding: 3rem 0 1.5rem;
203
+ border-top: 1px solid rgba(255, 209, 102, 0.1);
204
+ }
205
+
206
+ .footer-grid {
207
+ display: grid;
208
+ grid-template-columns: 1fr;
209
+ gap: 2rem;
210
+ margin-bottom: 2rem;
211
+ }
212
+
213
+ .footer-brand h2 {
214
+ font-family: var(--font-heading);
215
+ font-size: 1.5rem;
216
+ color: var(--text-main);
217
+ text-transform: uppercase;
218
+ margin-bottom: 0.5rem;
219
+ }
220
+
221
+ .footer-brand h2 span {
222
+ color: var(--primary);
223
+ }
224
+
225
+ .footer-tagline {
226
+ color: var(--text-muted);
227
+ font-size: 0.9rem;
228
+ }
229
+
230
+ .footer-links-group h4 {
231
+ font-family: var(--font-heading);
232
+ color: var(--text-main);
233
+ margin-bottom: 1rem;
234
+ font-size: 1.1rem;
235
+ letter-spacing: 1px;
236
+ }
237
+
238
+ .footer-links-group a {
239
+ display: block;
240
+ color: var(--text-muted);
241
+ margin-bottom: 0.5rem;
242
+ font-size: 0.9rem;
243
+ }
244
+
245
+ .footer-links-group a:hover {
246
+ color: var(--secondary);
247
+ padding-left: 5px;
248
+ }
249
+
250
+ .footer-bottom {
251
+ text-align: center;
252
+ padding-top: 1.5rem;
253
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
254
+ color: var(--text-muted);
255
+ font-size: 0.8rem;
256
+ }
257
+
258
+ /* Media Queries for Desktop */
259
+ @media (min-width: 768px) {
260
+ .nav-links {
261
+ display: flex;
262
+ gap: 1.5rem;
263
+ }
264
+ .mobile-toggle {
265
+ display: none;
266
+ }
267
+ .header-actions .btn-secondary {
268
+ display: inline-block;
269
+ }
270
+ .error-code {
271
+ font-size: 10rem;
272
+ -webkit-text-stroke: 3px var(--primary);
273
+ }
274
+ .error-title {
275
+ font-size: 2rem;
276
+ }
277
+ .footer-grid {
278
+ grid-template-columns: 2fr 1fr 1fr;
279
+ }
280
+ }
281
+
282
+ /* Hide secondary button on very small screens to fit header */
283
+ @media (max-width: 480px) {
284
+ .header-actions .btn-secondary {
285
+ display: none;
286
+ }
287
+ }
288
+
289
+
290
+ /* pipeline image & layout guards */
291
+ html, body { overflow-x: clip; }
292
+ img { max-width: 100%; height: auto; }
293
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
294
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
295
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
296
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
297
+ /* 合规声明块(zb-disclaimer,全站 footer) */
298
+ .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; }
299
+ .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; }