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,439 @@
1
+ :root {
2
+ /* Palette */
3
+ --bg: #0d0716;
4
+ --surface: #1a0f2e;
5
+ --surface-hover: #261645;
6
+ --accent: #d4af37; /* Gold */
7
+ --accent2: #c026d3; /* Magenta */
8
+ --text: #f5f0ff;
9
+ --muted: #9d94b8;
10
+ --jade: #00a86b; /* Dragon-jade motif accent */
11
+
12
+ /* Typography */
13
+ --font-display: 'Chakra Petch', sans-serif;
14
+ --font-body: 'Manrope', sans-serif;
15
+
16
+ /* Layout & UI */
17
+ --radius: 12px;
18
+ --radius-lg: 20px;
19
+ --container: 1200px;
20
+ --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
21
+ }
22
+
23
+ /* Reset & Base */
24
+ * { margin: 0; padding: 0; box-sizing: border-box; }
25
+ body {
26
+ font-family: var(--font-body);
27
+ background-color: var(--bg);
28
+ color: var(--text);
29
+ line-height: 1.6;
30
+ -webkit-font-smoothing: antialiased;
31
+ overflow-x: hidden;
32
+ }
33
+ a { color: inherit; text-decoration: none; transition: var(--transition); }
34
+ ul, ol { list-style: none; }
35
+ img { max-width: 100%; height: auto; display: block; }
36
+
37
+ .container {
38
+ width: 100%;
39
+ max-width: var(--container);
40
+ margin: 0 auto;
41
+ padding: 0 20px;
42
+ }
43
+
44
+ /* Typography */
45
+ h1, h2, h3, .footer-brand, .logo a {
46
+ font-family: var(--font-display);
47
+ font-weight: 700;
48
+ line-height: 1.2;
49
+ }
50
+ h1 { font-size: 2.2rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
51
+ h2 { font-size: 1.8rem; margin-bottom: 1.2rem; color: var(--text); display: flex; align-items: center; gap: 12px; }
52
+ h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--accent); }
53
+ p { margin-bottom: 1.2rem; color: var(--muted); font-size: 1.05rem; }
54
+
55
+ /* Buttons */
56
+ .btn {
57
+ display: inline-flex;
58
+ align-items: center;
59
+ justify-content: center;
60
+ padding: 12px 24px;
61
+ border-radius: 8px;
62
+ font-family: var(--font-display);
63
+ font-weight: 600;
64
+ text-transform: uppercase;
65
+ letter-spacing: 0.5px;
66
+ cursor: pointer;
67
+ min-height: 44px;
68
+ text-align: center;
69
+ }
70
+ .btn-primary {
71
+ background: linear-gradient(135deg, var(--accent), #b89320);
72
+ color: #000;
73
+ box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
74
+ }
75
+ .btn-primary:hover {
76
+ box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
77
+ transform: translateY(-2px);
78
+ }
79
+ .btn-secondary {
80
+ background: transparent;
81
+ color: var(--accent2);
82
+ border: 2px solid var(--accent2);
83
+ box-shadow: 0 0 10px rgba(192, 38, 211, 0.1) inset;
84
+ }
85
+ .btn-secondary:hover {
86
+ background: rgba(192, 38, 211, 0.1);
87
+ box-shadow: 0 0 15px rgba(192, 38, 211, 0.3) inset, 0 0 15px rgba(192, 38, 211, 0.2);
88
+ transform: translateY(-2px);
89
+ }
90
+
91
+ /* HEADER (A1 Styles) */
92
+ header {
93
+ background: rgba(13, 7, 22, 0.85);
94
+ backdrop-filter: blur(12px);
95
+ -webkit-backdrop-filter: blur(12px);
96
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
97
+ position: sticky;
98
+ top: 0;
99
+ z-index: 100;
100
+ padding: 15px 0;
101
+ }
102
+ .header-inner {
103
+ display: flex;
104
+ justify-content: space-between;
105
+ align-items: center;
106
+ }
107
+ .logo a {
108
+ font-size: 1.8rem;
109
+ color: var(--accent);
110
+ text-transform: uppercase;
111
+ letter-spacing: 2px;
112
+ text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
113
+ }
114
+ #main-nav {
115
+ display: none;
116
+ gap: 24px;
117
+ }
118
+ #main-nav a {
119
+ color: var(--text);
120
+ font-weight: 500;
121
+ font-size: 0.95rem;
122
+ text-transform: uppercase;
123
+ letter-spacing: 1px;
124
+ font-family: var(--font-display);
125
+ }
126
+ #main-nav a:hover { color: var(--accent); text-shadow: 0 0 8px rgba(212, 175, 55, 0.4); }
127
+ .header-ctas { display: none; gap: 12px; }
128
+ .menu-toggle {
129
+ background: none;
130
+ border: none;
131
+ color: var(--text);
132
+ font-size: 1.8rem;
133
+ cursor: pointer;
134
+ min-width: 44px;
135
+ min-height: 44px;
136
+ }
137
+
138
+ /* HERO BANNER */
139
+ .hero-banner {
140
+ position: relative;
141
+ padding: 60px 0 40px;
142
+ background-color: var(--bg);
143
+ background-image:
144
+ radial-gradient(circle at 80% 0%, rgba(0, 168, 107, 0.15) 0%, transparent 50%),
145
+ radial-gradient(circle at 20% 100%, rgba(192, 38, 211, 0.1) 0%, transparent 50%),
146
+ linear-gradient(rgba(26, 15, 46, 0.4) 1px, transparent 1px),
147
+ linear-gradient(90deg, rgba(26, 15, 46, 0.4) 1px, transparent 1px);
148
+ background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
149
+ border-bottom: 1px solid rgba(0, 168, 107, 0.2);
150
+ text-align: center;
151
+ overflow: hidden;
152
+ }
153
+ .hero-banner::after {
154
+ content: '';
155
+ position: absolute;
156
+ bottom: 0; left: 0; right: 0; height: 1px;
157
+ background: linear-gradient(90deg, transparent, var(--jade), transparent);
158
+ box-shadow: 0 -2px 15px rgba(0, 168, 107, 0.5);
159
+ }
160
+ .breadcrumb {
161
+ font-size: 0.85rem;
162
+ color: var(--muted);
163
+ margin-bottom: 20px;
164
+ display: inline-block;
165
+ background: rgba(26, 15, 46, 0.6);
166
+ padding: 6px 16px;
167
+ border-radius: 20px;
168
+ border: 1px solid rgba(255,255,255,0.05);
169
+ }
170
+ .hero-banner h1 {
171
+ background: linear-gradient(to right, var(--text), var(--accent));
172
+ -webkit-background-clip: text;
173
+ -webkit-text-fill-color: transparent;
174
+ text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
175
+ max-width: 800px;
176
+ margin: 0 auto 20px;
177
+ }
178
+ .meta-chips {
179
+ display: flex;
180
+ align-items: center;
181
+ justify-content: center;
182
+ gap: 12px;
183
+ flex-wrap: wrap;
184
+ }
185
+ .chip {
186
+ font-size: 0.8rem;
187
+ font-family: var(--font-display);
188
+ text-transform: uppercase;
189
+ padding: 4px 12px;
190
+ border-radius: 4px;
191
+ background: rgba(192, 38, 211, 0.1);
192
+ border: 1px solid rgba(192, 38, 211, 0.3);
193
+ color: #e8a5f1;
194
+ letter-spacing: 0.5px;
195
+ }
196
+
197
+ /* MAIN CONTENT AREA */
198
+ .content-area {
199
+ padding: 60px 0;
200
+ max-width: 900px;
201
+ margin: 0 auto;
202
+ }
203
+
204
+ .intro-block {
205
+ font-size: 1.15rem;
206
+ color: var(--text);
207
+ padding: 24px 30px;
208
+ background: linear-gradient(180deg, var(--surface), rgba(26, 15, 46, 0.3));
209
+ border-left: 4px solid var(--accent);
210
+ border-radius: 0 var(--radius) var(--radius) 0;
211
+ margin-bottom: 50px;
212
+ box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
213
+ position: relative;
214
+ }
215
+ .intro-block p { color: #e2dcf2; margin: 0; }
216
+
217
+ .content-section { margin-bottom: 50px; }
218
+
219
+ /* Stylized H2 */
220
+ .content-section h2::before {
221
+ content: '■';
222
+ color: var(--accent2);
223
+ font-size: 1.2rem;
224
+ text-shadow: 0 0 10px var(--accent2);
225
+ }
226
+
227
+ /* Links in text */
228
+ .content-section p a {
229
+ color: var(--accent);
230
+ font-weight: 600;
231
+ border-bottom: 1px dashed var(--accent);
232
+ }
233
+ .content-section p a:hover {
234
+ color: #fff;
235
+ border-bottom-style: solid;
236
+ text-shadow: 0 0 8px var(--accent);
237
+ }
238
+
239
+ /* GAME SHOWCASE CARDS (List) */
240
+ .game-showcase-list {
241
+ display: grid;
242
+ grid-template-columns: 1fr;
243
+ gap: 20px;
244
+ margin-top: 24px;
245
+ }
246
+ .game-card {
247
+ background: var(--surface);
248
+ border: 1px solid rgba(255, 255, 255, 0.05);
249
+ border-radius: var(--radius);
250
+ padding: 24px;
251
+ position: relative;
252
+ transition: var(--transition);
253
+ overflow: hidden;
254
+ display: flex;
255
+ flex-direction: column;
256
+ justify-content: center;
257
+ }
258
+ .game-card::before {
259
+ content: '';
260
+ position: absolute;
261
+ top: 0; left: 0; width: 100%; height: 3px;
262
+ background: linear-gradient(90deg, var(--accent2), var(--jade));
263
+ opacity: 0.5;
264
+ transition: var(--transition);
265
+ }
266
+ .game-card:hover {
267
+ background: var(--surface-hover);
268
+ border-color: rgba(0, 168, 107, 0.3);
269
+ transform: translateY(-3px);
270
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
271
+ }
272
+ .game-card:hover::before { opacity: 1; }
273
+ .game-card a {
274
+ font-family: var(--font-display);
275
+ font-size: 1.3rem;
276
+ font-weight: 700;
277
+ color: var(--accent);
278
+ margin-bottom: 8px;
279
+ display: inline-block;
280
+ }
281
+ .game-card a:hover { color: #fff; text-shadow: 0 0 10px var(--accent); }
282
+ .game-card span { color: var(--muted); font-size: 0.95rem; }
283
+
284
+ /* FAQ SECTION */
285
+ .faq-section {
286
+ background: var(--surface);
287
+ padding: 40px;
288
+ border-radius: var(--radius-lg);
289
+ border: 1px solid rgba(255, 255, 255, 0.05);
290
+ margin-bottom: 50px;
291
+ }
292
+ .faq-section h2 { margin-bottom: 30px; justify-content: center; }
293
+ .faq-section h2::before { display: none; } /* Remove square from FAQ title */
294
+ details {
295
+ background: rgba(13, 7, 22, 0.6);
296
+ border: 1px solid rgba(255, 255, 255, 0.05);
297
+ border-radius: 8px;
298
+ margin-bottom: 16px;
299
+ overflow: hidden;
300
+ }
301
+ summary {
302
+ padding: 20px;
303
+ font-family: var(--font-display);
304
+ font-weight: 600;
305
+ font-size: 1.1rem;
306
+ cursor: pointer;
307
+ list-style: none;
308
+ display: flex;
309
+ justify-content: space-between;
310
+ align-items: center;
311
+ color: var(--text);
312
+ transition: var(--transition);
313
+ }
314
+ summary::-webkit-details-marker { display: none; }
315
+ summary::after {
316
+ content: '+';
317
+ color: var(--accent2);
318
+ font-size: 1.5rem;
319
+ transition: transform 0.3s ease;
320
+ }
321
+ details[open] summary { color: var(--accent); border-bottom: 1px solid rgba(255,255,255,0.05); }
322
+ details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
323
+ details p { padding: 20px; margin: 0; color: var(--muted); }
324
+
325
+ /* RELATED LINKS */
326
+ .related-links-block {
327
+ padding: 40px 0;
328
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
329
+ text-align: center;
330
+ margin-bottom: 50px;
331
+ }
332
+ .related-links-block h3 { color: var(--text); margin-bottom: 24px; }
333
+ .tags-grid {
334
+ display: flex;
335
+ flex-wrap: wrap;
336
+ gap: 12px;
337
+ justify-content: center;
338
+ }
339
+ .tags-grid a {
340
+ background: var(--surface);
341
+ padding: 10px 20px;
342
+ border-radius: 30px;
343
+ font-size: 0.9rem;
344
+ font-weight: 600;
345
+ color: var(--muted);
346
+ border: 1px solid rgba(255, 255, 255, 0.1);
347
+ text-transform: capitalize;
348
+ }
349
+ .tags-grid a:hover {
350
+ background: rgba(0, 168, 107, 0.1);
351
+ color: var(--text);
352
+ border-color: var(--jade);
353
+ box-shadow: 0 0 15px rgba(0, 168, 107, 0.2);
354
+ }
355
+
356
+ /* BOTTOM CTA */
357
+ .bottom-cta {
358
+ background: linear-gradient(135deg, var(--surface), #2a1147);
359
+ padding: 50px 30px;
360
+ border-radius: var(--radius-lg);
361
+ text-align: center;
362
+ position: relative;
363
+ overflow: hidden;
364
+ border: 1px solid rgba(192, 38, 211, 0.3);
365
+ box-shadow: 0 20px 50px rgba(0,0,0,0.4);
366
+ }
367
+ .bottom-cta::before {
368
+ content: '';
369
+ position: absolute;
370
+ top: -50%; left: -50%; width: 200%; height: 200%;
371
+ background: radial-gradient(circle, rgba(192, 38, 211, 0.15) 0%, transparent 60%);
372
+ pointer-events: none;
373
+ }
374
+ .bottom-cta h2 { justify-content: center; margin-bottom: 16px; font-size: 2rem; color: #fff; }
375
+ .bottom-cta h2::before { display: none; }
376
+ .bottom-cta p { color: #e2dcf2; margin-bottom: 30px; font-size: 1.1rem; }
377
+ .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
378
+ .cta-buttons .btn { min-width: 160px; }
379
+
380
+ /* FOOTER (A2 Styles) */
381
+ footer {
382
+ background-color: #08040d;
383
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
384
+ padding: 60px 0 30px;
385
+ text-align: center;
386
+ }
387
+ .footer-brand {
388
+ font-size: 2.5rem;
389
+ color: var(--accent);
390
+ text-transform: uppercase;
391
+ letter-spacing: 3px;
392
+ margin-bottom: 16px;
393
+ }
394
+ .footer-tagline { color: var(--muted); margin-bottom: 30px; font-size: 1rem; }
395
+ .footer-links {
396
+ display: flex;
397
+ flex-wrap: wrap;
398
+ justify-content: center;
399
+ gap: 16px 24px;
400
+ margin-bottom: 40px;
401
+ max-width: 800px;
402
+ margin-inline: auto;
403
+ }
404
+ .footer-links a { color: var(--text); font-size: 0.9rem; }
405
+ .footer-links a:hover { color: var(--accent); text-decoration: underline; }
406
+ .copyright { color: #666; font-size: 0.85rem; }
407
+
408
+ /* RESPONSIVE */
409
+ @media (min-width: 768px) {
410
+ h1 { font-size: 2.8rem; }
411
+ .hero-banner { padding: 80px 0 60px; }
412
+ .game-showcase-list { grid-template-columns: repeat(2, 1fr); }
413
+ #main-nav { display: flex; }
414
+ .header-ctas { display: flex; }
415
+ .menu-toggle { display: none; }
416
+ }
417
+ @media (min-width: 1024px) {
418
+ h1 { font-size: 3.2rem; }
419
+ .content-area { padding: 80px 20px; }
420
+ .game-showcase-list { grid-template-columns: repeat(3, 1fr); }
421
+ }
422
+ @media (max-width: 390px) {
423
+ .cta-buttons { flex-direction: column; width: 100%; }
424
+ .cta-buttons .btn { width: 100%; }
425
+ .intro-block { padding: 20px 15px; }
426
+ .faq-section { padding: 24px 15px; }
427
+ }
428
+
429
+
430
+ /* pipeline image & layout guards */
431
+ html, body { overflow-x: clip; }
432
+ img { max-width: 100%; height: auto; }
433
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
434
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
435
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
436
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
437
+ /* 合规声明块(zb-disclaimer,全站 footer) */
438
+ .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; }
439
+ .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; }