css-pkg-01 1.0.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/fixbet88.asia/page-404.css +285 -0
  2. package/fixbet88.asia/page-apk.css +517 -0
  3. package/fixbet88.asia/page-bank-jago.css +563 -0
  4. package/fixbet88.asia/page-bonus.css +571 -0
  5. package/fixbet88.asia/page-cari.css +452 -0
  6. package/fixbet88.asia/page-daftar.css +591 -0
  7. package/fixbet88.asia/page-deposit-5000.css +525 -0
  8. package/fixbet88.asia/page-deposit-dana.css +233 -0
  9. package/fixbet88.asia/page-deposit-pulsa.css +580 -0
  10. package/fixbet88.asia/page-deposit-qris.css +650 -0
  11. package/fixbet88.asia/page-faq.css +455 -0
  12. package/fixbet88.asia/page-informasi-resmi.css +553 -0
  13. package/fixbet88.asia/page-link-alternatif.css +565 -0
  14. package/fixbet88.asia/page-login.css +649 -0
  15. package/fixbet88.asia/page-rtp.css +583 -0
  16. package/fixbet88.asia/page-slot-bet-200.css +667 -0
  17. package/fixbet88.asia/page-slot-maxwin.css +573 -0
  18. package/fixbet88.asia/page-slot-terbaru.css +497 -0
  19. package/fixbet88.asia/page-tentang-kami.css +688 -0
  20. package/fixbet88.asia/style.css +651 -0
  21. package/package.json +6 -0
  22. package/qq303.asia/page-404.css +275 -0
  23. package/qq303.asia/page-bonus.css +614 -0
  24. package/qq303.asia/page-cara-main.css +672 -0
  25. package/qq303.asia/page-cari.css +444 -0
  26. package/qq303.asia/page-daftar.css +303 -0
  27. package/qq303.asia/page-demo.css +439 -0
  28. package/qq303.asia/page-deposit-qris.css +564 -0
  29. package/qq303.asia/page-faq.css +678 -0
  30. package/qq303.asia/page-game-lucky-neko.css +622 -0
  31. package/qq303.asia/page-game-mahjong-ways-2.css +464 -0
  32. package/qq303.asia/page-game-mahjong-ways.css +615 -0
  33. package/qq303.asia/page-game-treasures-of-aztec.css +563 -0
  34. package/qq303.asia/page-game-wild-bandito.css +626 -0
  35. package/qq303.asia/page-link-alternatif.css +712 -0
  36. package/qq303.asia/page-login.css +620 -0
  37. package/qq303.asia/page-rtp.css +621 -0
  38. package/qq303.asia/page-scatter-hitam.css +679 -0
  39. package/qq303.asia/page-slot-bet-kecil.css +687 -0
  40. package/qq303.asia/page-tentang-kami.css +648 -0
  41. package/qq303.asia/style.css +621 -0
@@ -0,0 +1,285 @@
1
+ :root {
2
+ --bg-color: #04140f;
3
+ --primary: #f0b429;
4
+ --secondary: #2dd4a7;
5
+ --text-main: #ffffff;
6
+ --text-muted: #a0aab2;
7
+ --font-heading: 'Teko', sans-serif;
8
+ --font-body: 'Nunito', 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-color);
19
+ color: var(--text-main);
20
+ font-family: var(--font-body);
21
+ display: flex;
22
+ flex-direction: column;
23
+ min-height: 100vh;
24
+ overflow-x: hidden;
25
+ }
26
+
27
+ a {
28
+ text-decoration: none;
29
+ color: inherit;
30
+ }
31
+
32
+ .container {
33
+ width: 100%;
34
+ max-width: 1200px;
35
+ margin: 0 auto;
36
+ padding: 0 20px;
37
+ }
38
+
39
+ /* HEADER STYLES */
40
+ header {
41
+ background: rgba(4, 20, 15, 0.98);
42
+ position: sticky;
43
+ top: 0;
44
+ z-index: 1000;
45
+ border-bottom: 1px solid rgba(45, 212, 167, 0.2);
46
+ backdrop-filter: blur(10px);
47
+ }
48
+
49
+ .header-inner {
50
+ display: flex;
51
+ justify-content: space-between;
52
+ align-items: center;
53
+ height: 70px;
54
+ }
55
+
56
+ .logo {
57
+ font-family: var(--font-heading);
58
+ font-size: 2.5rem;
59
+ color: var(--primary);
60
+ text-transform: uppercase;
61
+ font-weight: 700;
62
+ letter-spacing: 1px;
63
+ }
64
+
65
+ .menu-toggle {
66
+ display: flex;
67
+ flex-direction: column;
68
+ gap: 5px;
69
+ background: none;
70
+ border: none;
71
+ cursor: pointer;
72
+ padding: 5px;
73
+ }
74
+
75
+ .menu-toggle span {
76
+ width: 28px;
77
+ height: 3px;
78
+ background-color: var(--secondary);
79
+ border-radius: 2px;
80
+ transition: 0.3s;
81
+ }
82
+
83
+ #main-nav {
84
+ display: none;
85
+ position: absolute;
86
+ top: 70px;
87
+ left: 0;
88
+ width: 100%;
89
+ background: var(--bg-color);
90
+ border-bottom: 1px solid rgba(45, 212, 167, 0.2);
91
+ box-shadow: 0 10px 20px rgba(0,0,0,0.5);
92
+ }
93
+
94
+ #main-nav.active {
95
+ display: block;
96
+ }
97
+
98
+ #main-nav ul {
99
+ list-style: none;
100
+ display: flex;
101
+ flex-direction: column;
102
+ }
103
+
104
+ #main-nav ul li a {
105
+ display: block;
106
+ padding: 15px 20px;
107
+ font-weight: 600;
108
+ color: var(--text-main);
109
+ border-bottom: 1px solid rgba(255,255,255,0.05);
110
+ transition: color 0.3s ease;
111
+ }
112
+
113
+ #main-nav ul li a:hover {
114
+ color: var(--primary);
115
+ }
116
+
117
+ /* 404 MAIN CONTENT */
118
+ main {
119
+ flex: 1;
120
+ display: flex;
121
+ align-items: center;
122
+ justify-content: center;
123
+ text-align: center;
124
+ padding: 60px 20px;
125
+ background: radial-gradient(circle at center, rgba(45, 212, 167, 0.05) 0%, var(--bg-color) 70%);
126
+ }
127
+
128
+ .error-content {
129
+ max-width: 500px;
130
+ animation: fadeIn 0.8s ease-out;
131
+ }
132
+
133
+ .error-code {
134
+ font-family: var(--font-heading);
135
+ font-size: 8rem;
136
+ line-height: 0.9;
137
+ color: var(--primary);
138
+ text-shadow: 0 0 25px rgba(240, 180, 41, 0.3);
139
+ margin-bottom: 10px;
140
+ }
141
+
142
+ .error-title {
143
+ font-family: var(--font-heading);
144
+ font-size: 2.2rem;
145
+ color: var(--secondary);
146
+ margin-bottom: 15px;
147
+ text-transform: uppercase;
148
+ letter-spacing: 1px;
149
+ }
150
+
151
+ .error-desc {
152
+ font-size: 1.05rem;
153
+ color: var(--text-muted);
154
+ margin-bottom: 35px;
155
+ line-height: 1.6;
156
+ }
157
+
158
+ .btn-home {
159
+ display: inline-block;
160
+ background: var(--primary);
161
+ color: var(--bg-color);
162
+ font-family: var(--font-heading);
163
+ font-size: 1.5rem;
164
+ font-weight: 700;
165
+ padding: 12px 35px;
166
+ border-radius: 4px;
167
+ text-transform: uppercase;
168
+ letter-spacing: 1px;
169
+ transition: all 0.3s ease;
170
+ box-shadow: 0 5px 15px rgba(240, 180, 41, 0.2);
171
+ }
172
+
173
+ .btn-home:hover {
174
+ background: var(--secondary);
175
+ box-shadow: 0 5px 15px rgba(45, 212, 167, 0.3);
176
+ transform: translateY(-3px);
177
+ }
178
+
179
+ @keyframes fadeIn {
180
+ from { opacity: 0; transform: translateY(20px); }
181
+ to { opacity: 1; transform: translateY(0); }
182
+ }
183
+
184
+ /* FOOTER STYLES */
185
+ footer {
186
+ background: #020a07;
187
+ padding: 40px 0 20px;
188
+ border-top: 1px solid rgba(240, 180, 41, 0.15);
189
+ text-align: center;
190
+ }
191
+
192
+ .footer-brand {
193
+ font-family: var(--font-heading);
194
+ font-size: 2.5rem;
195
+ color: var(--primary);
196
+ text-transform: uppercase;
197
+ margin-bottom: 15px;
198
+ font-weight: 700;
199
+ }
200
+
201
+ .footer-tagline {
202
+ color: var(--text-muted);
203
+ font-size: 0.95rem;
204
+ line-height: 1.6;
205
+ margin-bottom: 25px;
206
+ max-width: 700px;
207
+ margin-left: auto;
208
+ margin-right: auto;
209
+ }
210
+
211
+ .footer-links {
212
+ display: flex;
213
+ flex-wrap: wrap;
214
+ justify-content: center;
215
+ gap: 12px 20px;
216
+ margin-bottom: 30px;
217
+ }
218
+
219
+ .footer-links a {
220
+ color: var(--secondary);
221
+ font-weight: 600;
222
+ font-size: 0.9rem;
223
+ transition: color 0.3s;
224
+ }
225
+
226
+ .footer-links a:hover {
227
+ color: var(--primary);
228
+ text-decoration: underline;
229
+ }
230
+
231
+ .copyright {
232
+ color: #4a565e;
233
+ font-size: 0.85rem;
234
+ }
235
+
236
+ /* DESKTOP STYLES */
237
+ @media (min-width: 768px) {
238
+ .menu-toggle {
239
+ display: none;
240
+ }
241
+
242
+ #main-nav {
243
+ display: block;
244
+ position: static;
245
+ width: auto;
246
+ border: none;
247
+ background: transparent;
248
+ box-shadow: none;
249
+ }
250
+
251
+ #main-nav ul {
252
+ flex-direction: row;
253
+ gap: 25px;
254
+ }
255
+
256
+ #main-nav ul li a {
257
+ padding: 0;
258
+ border: none;
259
+ font-size: 1.05rem;
260
+ }
261
+
262
+ .error-code {
263
+ font-size: 12rem;
264
+ }
265
+
266
+ .error-title {
267
+ font-size: 3rem;
268
+ }
269
+
270
+ .error-desc {
271
+ font-size: 1.15rem;
272
+ }
273
+ }
274
+
275
+
276
+ /* pipeline image & layout guards */
277
+ html, body { overflow-x: clip; }
278
+ img { max-width: 100%; height: auto; }
279
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
280
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
281
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
282
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
283
+ /* 合规声明块(zb-disclaimer,全站 footer) */
284
+ .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; }
285
+ .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; }