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