FrenzyBiscuit commited on
Commit
3f466aa
·
verified ·
1 Parent(s): f261dc6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +281 -135
README.md CHANGED
@@ -9,23 +9,31 @@ pinned: true
9
  <style>
10
  body {
11
  font-family: 'Quicksand', sans-serif;
12
- background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
13
- color: #333 !important;
14
- text-shadow: 0 0 3px rgba(224, 224, 224, 0.7);
15
  margin: 0;
16
  padding: 20px;
17
  transition: all 0.5s ease;
18
  }
19
 
 
 
 
 
 
 
 
 
20
  .container {
21
  min-width: 100%;
22
  margin: 0 auto;
23
  max-width: 1200px;
24
- background: rgba(240, 240, 240, 0.95);
25
  border-radius: 12px;
26
  padding: 30px;
27
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 30px rgba(200, 200, 200, 0.5);
28
- border: 1px solid rgba(200, 200, 200, 0.2);
29
  position: relative;
30
  overflow: hidden;
31
  }
@@ -37,7 +45,7 @@ body {
37
  left: -1px;
38
  right: -1px;
39
  bottom: -1px;
40
- border: 1px solid rgba(200, 200, 200, 0.5);
41
  border-radius: 12px;
42
  pointer-events: none;
43
  animation: borderGlow 3s ease-in-out infinite alternate;
@@ -45,16 +53,16 @@ body {
45
 
46
  @keyframes borderGlow {
47
  0% {
48
- box-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
49
- border-color: rgba(200, 200, 200, 0.5);
50
  }
51
  50% {
52
- box-shadow: 0 0 15px rgba(170, 170, 170, 0.3);
53
- border-color: rgba(170, 170, 170, 0.5);
54
  }
55
  100% {
56
- box-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
57
- border-color: rgba(200, 200, 200, 0.5);
58
  }
59
  }
60
 
@@ -71,38 +79,49 @@ body {
71
  left: 25%;
72
  right: 25%;
73
  height: 1px;
74
- background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.5), transparent);
75
  animation: scanline 8s linear infinite;
 
 
 
 
 
 
76
  }
77
 
78
  .model-name {
79
- color: #333;
80
  font-size: 2.5em;
81
- text-shadow: 0 0 15px rgba(200, 200, 200, 0.5);
82
  margin: 0;
83
  letter-spacing: -1px;
84
  animation: textGlow 4s ease-in-out infinite alternate;
85
  }
86
 
87
  @keyframes textGlow {
88
- 0% { text-shadow: 0 0 15px rgba(200, 200, 200, 0.5); }
89
- 50% { text-shadow: 0 0 20px rgba(170, 170, 170, 0.5); }
90
- 100% { text-shadow: 0 0 15px rgba(200, 200, 200, 0.5); }
91
  }
92
 
93
  .subtitle {
94
- color: #444;
95
  font-size: 1.2em;
96
  margin-top: 10px;
97
  animation: subtitleFade 6s ease-in-out infinite;
98
  }
99
 
 
 
 
 
 
100
  .waifu-container {
101
  margin: 20px -30px;
102
  width: calc(100% + 60px);
103
  overflow: hidden;
104
  border-radius: 8px;
105
- border: 1px solid rgba(200, 200, 200, 0.3);
106
  position: relative;
107
  }
108
 
@@ -114,20 +133,25 @@ body {
114
  right: 0;
115
  bottom: 0;
116
  background: linear-gradient(45deg,
117
- rgba(200, 200, 200, 0.1) 0%,
118
  transparent 20%,
119
  transparent 80%,
120
- rgba(170, 170, 170, 0.1) 100%);
121
  pointer-events: none;
122
  animation: gradientSlide 10s linear infinite;
123
  }
124
 
 
 
 
 
 
125
  .waifu-img {
126
  width: 100%;
127
  height: auto;
128
  border-radius: 0;
129
  border: none;
130
- box-shadow: 0 0 40px rgba(200, 200, 200, 0.2);
131
  transition: transform 0.5s ease;
132
  }
133
 
@@ -136,19 +160,19 @@ body {
136
  }
137
 
138
  .section {
139
- color: #444;
140
  margin: 25px 0;
141
  padding: 20px;
142
- background: rgba(230, 230, 230, 0.9);
143
  border-radius: 8px;
144
- border: 1px solid rgba(200, 200, 200, 0.15);
145
  position: relative;
146
  transition: all 0.3s ease;
147
  }
148
 
149
  .section:hover {
150
- border-color: rgba(170, 170, 170, 0.3);
151
- box-shadow: 0 0 15px rgba(200, 200, 200, 0.1);
152
  }
153
 
154
  .section::before {
@@ -158,7 +182,7 @@ body {
158
  left: -1px;
159
  right: -1px;
160
  bottom: -1px;
161
- border: 1px solid rgba(200, 200, 200, 0.3);
162
  border-radius: 8px;
163
  pointer-events: none;
164
  animation: sectionPulse 5s ease-in-out infinite;
@@ -170,10 +194,10 @@ body {
170
  }
171
 
172
  .section-title {
173
- color: #333;
174
  font-size: 1.8em;
175
  margin-top: 0;
176
- text-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
177
  position: relative;
178
  display: inline-block;
179
  }
@@ -185,7 +209,7 @@ body {
185
  left: 0;
186
  width: 100%;
187
  height: 1px;
188
- background: linear-gradient(90deg, rgba(200, 200, 200, 0.5), rgba(170, 170, 170, 0.5));
189
  transform: scaleX(0);
190
  transform-origin: left;
191
  transition: transform 0.3s ease;
@@ -204,14 +228,12 @@ body {
204
 
205
  .link-card {
206
  padding: 15px;
207
- background: rgba(220, 220, 220, 0.95);
208
  border-radius: 8px;
209
  transition: all 0.3s ease;
210
- border: 1px solid rgba(200, 200, 200, 0.1);
211
  position: relative;
212
  overflow: hidden;
213
- text-decoration: none;
214
- color: inherit;
215
  }
216
 
217
  .link-card::before {
@@ -221,7 +243,7 @@ body {
221
  left: 0;
222
  right: 0;
223
  height: 2px;
224
- background: linear-gradient(90deg, rgba(200, 200, 200, 0.5), rgba(170, 170, 170, 0.5));
225
  animation: cardScan 4s linear infinite;
226
  }
227
 
@@ -232,24 +254,24 @@ body {
232
 
233
  .link-card:hover {
234
  transform: translateY(-3px);
235
- box-shadow: 0 5px 15px rgba(200, 200, 200, 0.2);
236
- border-color: rgba(170, 170, 170, 0.3);
237
  }
238
 
239
  .link-card h3 {
240
  margin-top: 0;
241
- color: #444 !important;
242
  }
243
 
244
  .link-button {
245
  display: inline-flex;
246
  align-items: center;
247
- background: rgba(200, 200, 200, 0.1);
248
- color: #444 !important;
249
  padding: 8px 15px;
250
  border-radius: 6px;
251
  text-decoration: none;
252
- border: 1px solid rgba(200, 200, 200, 0.3);
253
  margin: 5px 0;
254
  transition: all 0.3s ease;
255
  font-size: 0.95em;
@@ -269,10 +291,14 @@ body {
269
  }
270
 
271
  .link-button:hover {
272
- background: rgba(170, 170, 170, 0.2);
273
- border-color: rgba(170, 170, 170, 0.5);
274
  transform: translateY(-2px);
275
- box-shadow: 0 4px 12px rgba(200, 200, 200, 0.2);
 
 
 
 
276
  }
277
 
278
  .link-button::after {
@@ -295,8 +321,8 @@ body {
295
  }
296
 
297
  .disclaimer {
298
- color: #555;
299
- border-left: 3px solid #555;
300
  padding-left: 15px;
301
  margin: 20px 0;
302
  position: relative;
@@ -320,136 +346,256 @@ body {
320
  display: inline-block;
321
  padding: 5px 10px;
322
  border-radius: 5px;
323
- background: rgba(200, 200, 200, 0.1);
324
- border: 1px solid #ccc;
325
  margin: 5px;
326
  font-size: 0.9em;
327
  animation: badgePulse 3s ease-in-out infinite;
328
  }
329
 
330
  @keyframes badgePulse {
331
- 0%, 100% { box-shadow: 0 0 5px rgba(200, 200, 200, 0.3); }
332
- 50% { box-shadow: 0 0 10px rgba(200, 200, 200, 0.5); }
 
 
 
 
 
 
 
 
 
 
 
333
  }
334
 
 
335
  @media (prefers-color-scheme: light) {
336
  .container {
337
- background: rgba(255, 255, 255, 0.95);
338
- border-color: rgba(170, 170, 170, 0.3);
339
  }
340
 
341
  .model-name, .section-title, .subtitle {
342
- color: #333;
343
- text-shadow: 0 0 5px rgba(170, 170, 170, 0.3);
344
  }
345
 
346
  .section {
347
- background: rgba(255, 255, 255, 0.9);
348
- border-color: rgba(170, 170, 170, 0.2);
349
- color: #333;
350
  }
351
 
352
  .section p,
353
  .section ul li,
354
  .section > p > strong {
355
- color: #333 !important;
 
 
 
 
356
  }
357
 
358
  .link-card {
359
- background: rgba(255, 255, 255, 0.95);
360
- border-color: rgba(170, 170, 170, 0.2);
361
  }
362
 
363
  .link-card h3 {
364
- color: #333 !important;
365
  }
366
 
367
  .link-button {
368
- background: rgba(170, 170, 170, 0.1);
369
- color: #333 !important;
370
- border-color: rgba(170, 170, 170, 0.3);
371
  }
372
 
373
  .link-button:hover {
374
- background: rgba(170, 170, 170, 0.2);
375
- border-color: rgba(170, 170, 170, 0.5);
376
  }
377
 
378
  .disclaimer {
379
- color: #333;
380
- border-color: #333;
381
  }
382
 
383
  .badge {
384
- border-color: #333;
385
- background: rgba(170, 170, 170, 0.1);
386
  }
387
  }
388
- </style>
389
 
390
- <div class="container">
 
 
 
391
 
392
- <div class="waifu-container">
393
- <img src="./readyart-new.webp" class="waifu-img" alt="Ready.Art Community">
394
- <center><p class="subtitle">Specializing in uncensored LLM fine-tuning & quantization</p></center>
395
- </div>
 
 
 
 
 
 
 
396
 
397
- <div class="section">
398
- <h2 class="section-title">Free API Service</h2>
399
- <ul>
400
- <li>We offer a free API service.</li>
401
- <li>If you're interested, join us in Discord.</li>
402
- </ul>
403
- </div>
404
 
405
- <div class="section">
406
- <h2 class="section-title">🌟 Featured Model</h2>
407
- <p><a href="https://huggingface.co/ReadyArt/L3.3-The-Omega-Directive-70B-Unslop-v2.0" class="link-button">L3.3-The-Omega-Directive-70B-Unslop-v2.0</a></p>
408
- <ul>
409
- <li>🧠 Optimized for extreme roleplay scenarios</li>
410
- <li>⚡ Unfiltered narrative generation</li>
411
- </ul>
412
- </div>
413
-
414
- <div class="section">
415
- <h2 class="section-title">🔢 Quantization Services</h2>
416
- <p>We provide optimized quants for all our models:</p>
417
- <div class="quant-links">
418
- <a href="https://huggingface.co/docs/hub/en/gguf" class="link-card" target="_blank">
419
- <h3>GGUF</h3>
420
- <p>CPU-focused inference</p>
421
- </a>
422
- <a href="https://github.com/turboderp-org/exllamav3" class="link-card" target="_blank">
423
- <h3>EXL3</h3>
424
- <p>GPU-focused inference</p>
425
- </a>
426
- </div>
427
- </div>
428
-
429
- <div class="section">
430
- <h2 class="section-title">⚙️ Recommended Settings</h2>
431
- <p>For 70B Models:</p>
432
- <a href="https://huggingface.co/Konnect1221/The-Inception-Presets-Methception-LLamaception-Qwenception" class="link-button">
433
- Inception Presets
434
- </a>
435
- <p>For 24B models:</p>
436
- <a href="https://huggingface.co/ReadyArt/Mistral-V7-Tekken-T8-XML" class="link-button">
437
- Mistral-V7-Tekken-T8-XML Preset
438
- </a>
439
- <p style="margin-top: 15px;">For 12B models:</p>
440
- <a href="https://huggingface.co/ReadyArt/Mistral-V3-Tekken-T8-XML" class="link-button">
441
- Mistral-V3-Tekken-T8-XML Preset
442
- </a>
443
- </div>
444
-
445
- <div class="section">
446
- <h2 class="section-title">🧑‍🔬 POC for help</h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  <ul>
448
- <li>FrenzyBiscuit (Project Lead)</li>
449
- <li>GECFDO (Project Lead v2)</li>
450
  </ul>
451
- <p>Need help? Join our <a href="https://discord.gg/VjmzZQSX5s" class="link-button">Discord</a> for support! (or just to chill with us)</p>
452
- <p>Some of our quants now use branches. Especially newer quants. To download a branch, you need to find the branch you want and then do huggingface-cli
453
- download ReadyArt/model --local-dir . --revision "5.0_H6" (where 5.0_H6 is the branch)</p>
454
- </div>
455
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  <style>
10
  body {
11
  font-family: 'Quicksand', sans-serif;
12
+ background: linear-gradient(135deg, #0a1a1a 0%, #001010 100%);
13
+ color: #e1ffff !important;
14
+ text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
15
  margin: 0;
16
  padding: 20px;
17
  transition: all 0.5s ease;
18
  }
19
 
20
+ @media (prefers-color-scheme: light) {
21
+ body {
22
+ background: linear-gradient(135deg, #e1ffff 0%, #c0f0ff 100%);
23
+ color: #002b36 !important;
24
+ text-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
25
+ }
26
+ }
27
+
28
  .container {
29
  min-width: 100%;
30
  margin: 0 auto;
31
  max-width: 1200px;
32
+ background: rgba(0, 17, 22, 0.95);
33
  border-radius: 12px;
34
  padding: 30px;
35
+ box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
36
+ border: 1px solid rgba(0, 255, 255, 0.2);
37
  position: relative;
38
  overflow: hidden;
39
  }
 
45
  left: -1px;
46
  right: -1px;
47
  bottom: -1px;
48
+ border: 1px solid rgba(0, 255, 255, 0.5);
49
  border-radius: 12px;
50
  pointer-events: none;
51
  animation: borderGlow 3s ease-in-out infinite alternate;
 
53
 
54
  @keyframes borderGlow {
55
  0% {
56
+ box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
57
+ border-color: rgba(0, 255, 255, 0.5);
58
  }
59
  50% {
60
+ box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
61
+ border-color: rgba(255, 0, 255, 0.5);
62
  }
63
  100% {
64
+ box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
65
+ border-color: rgba(0, 255, 255, 0.5);
66
  }
67
  }
68
 
 
79
  left: 25%;
80
  right: 25%;
81
  height: 1px;
82
+ background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
83
  animation: scanline 8s linear infinite;
84
+ display: none;
85
+ }
86
+
87
+ @keyframes scanline {
88
+ 0% { background-position: -100% 0; }
89
+ 100% { background-position: 200% 0; }
90
  }
91
 
92
  .model-name {
93
+ color: #00ffff;
94
  font-size: 2.5em;
95
+ text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
96
  margin: 0;
97
  letter-spacing: -1px;
98
  animation: textGlow 4s ease-in-out infinite alternate;
99
  }
100
 
101
  @keyframes textGlow {
102
+ 0% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
103
+ 50% { text-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
104
+ 100% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
105
  }
106
 
107
  .subtitle {
108
+ color: #00ffcc;
109
  font-size: 1.2em;
110
  margin-top: 10px;
111
  animation: subtitleFade 6s ease-in-out infinite;
112
  }
113
 
114
+ @keyframes subtitleFade {
115
+ 0%, 100% { opacity: 0.8; }
116
+ 50% { opacity: 1; }
117
+ }
118
+
119
  .waifu-container {
120
  margin: 20px -30px;
121
  width: calc(100% + 60px);
122
  overflow: hidden;
123
  border-radius: 8px;
124
+ border: 1px solid rgba(0, 255, 255, 0.3);
125
  position: relative;
126
  }
127
 
 
133
  right: 0;
134
  bottom: 0;
135
  background: linear-gradient(45deg,
136
+ rgba(0, 255, 255, 0.1) 0%,
137
  transparent 20%,
138
  transparent 80%,
139
+ rgba(255, 0, 255, 0.1) 100%);
140
  pointer-events: none;
141
  animation: gradientSlide 10s linear infinite;
142
  }
143
 
144
+ @keyframes gradientSlide {
145
+ 0% { background-position: 0% 0%; }
146
+ 100% { background-position: 100% 100%; }
147
+ }
148
+
149
  .waifu-img {
150
  width: 100%;
151
  height: auto;
152
  border-radius: 0;
153
  border: none;
154
+ box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
155
  transition: transform 0.5s ease;
156
  }
157
 
 
160
  }
161
 
162
  .section {
163
+ color: #e1ffff;
164
  margin: 25px 0;
165
  padding: 20px;
166
+ background: rgba(5, 25, 35, 0.9);
167
  border-radius: 8px;
168
+ border: 1px solid rgba(0, 255, 255, 0.15);
169
  position: relative;
170
  transition: all 0.3s ease;
171
  }
172
 
173
  .section:hover {
174
+ border-color: rgba(255, 0, 255, 0.3);
175
+ box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
176
  }
177
 
178
  .section::before {
 
182
  left: -1px;
183
  right: -1px;
184
  bottom: -1px;
185
+ border: 1px solid rgba(0, 255, 255, 0.3);
186
  border-radius: 8px;
187
  pointer-events: none;
188
  animation: sectionPulse 5s ease-in-out infinite;
 
194
  }
195
 
196
  .section-title {
197
+ color: #00ffff;
198
  font-size: 1.8em;
199
  margin-top: 0;
200
+ text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
201
  position: relative;
202
  display: inline-block;
203
  }
 
209
  left: 0;
210
  width: 100%;
211
  height: 1px;
212
+ background: linear-gradient(90deg, rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.5));
213
  transform: scaleX(0);
214
  transform-origin: left;
215
  transition: transform 0.3s ease;
 
228
 
229
  .link-card {
230
  padding: 15px;
231
+ background: rgba(20, 35, 45, 0.95);
232
  border-radius: 8px;
233
  transition: all 0.3s ease;
234
+ border: 1px solid rgba(0, 255, 255, 0.1);
235
  position: relative;
236
  overflow: hidden;
 
 
237
  }
238
 
239
  .link-card::before {
 
243
  left: 0;
244
  right: 0;
245
  height: 2px;
246
+ background: linear-gradient(90deg, rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.5));
247
  animation: cardScan 4s linear infinite;
248
  }
249
 
 
254
 
255
  .link-card:hover {
256
  transform: translateY(-3px);
257
+ box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
258
+ border-color: rgba(255, 0, 255, 0.3);
259
  }
260
 
261
  .link-card h3 {
262
  margin-top: 0;
263
+ color: #e1ffff !important;
264
  }
265
 
266
  .link-button {
267
  display: inline-flex;
268
  align-items: center;
269
+ background: rgba(0, 255, 255, 0.1);
270
+ color: #e1ffff !important;
271
  padding: 8px 15px;
272
  border-radius: 6px;
273
  text-decoration: none;
274
+ border: 1px solid rgba(0, 255, 255, 0.3);
275
  margin: 5px 0;
276
  transition: all 0.3s ease;
277
  font-size: 0.95em;
 
291
  }
292
 
293
  .link-button:hover {
294
+ background: rgba(0, 255, 255, 0.2);
295
+ border-color: rgba(0, 255, 255, 0.5);
296
  transform: translateY(-2px);
297
+ box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
298
+ }
299
+
300
+ .link-button:hover::before {
301
+ left: 100%;
302
  }
303
 
304
  .link-button::after {
 
321
  }
322
 
323
  .disclaimer {
324
+ color: #00ff99;
325
+ border-left: 3px solid #00ff99;
326
  padding-left: 15px;
327
  margin: 20px 0;
328
  position: relative;
 
346
  display: inline-block;
347
  padding: 5px 10px;
348
  border-radius: 5px;
349
+ background: rgba(0, 255, 255, 0.1);
350
+ border: 1px solid #00ffff;
351
  margin: 5px;
352
  font-size: 0.9em;
353
  animation: badgePulse 3s ease-in-out infinite;
354
  }
355
 
356
  @keyframes badgePulse {
357
+ 0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
358
+ 50% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
359
+ }
360
+
361
+ /* Color rules */
362
+ .section p,
363
+ .section ul li,
364
+ .section > p > strong {
365
+ color: #00ff99 !important;
366
+ }
367
+
368
+ .section ul li strong {
369
+ color: #00ff99 !important;
370
  }
371
 
372
+ /* Light mode adjustments */
373
  @media (prefers-color-scheme: light) {
374
  .container {
375
+ background: rgba(224, 255, 255, 0.95);
376
+ border-color: rgba(0, 150, 150, 0.3);
377
  }
378
 
379
  .model-name, .section-title, .subtitle {
380
+ color: #006666;
381
+ text-shadow: 0 0 5px rgba(0, 200, 200, 0.3);
382
  }
383
 
384
  .section {
385
+ background: rgba(200, 250, 255, 0.9);
386
+ border-color: rgba(0, 200, 200, 0.2);
387
+ color: #002b36;
388
  }
389
 
390
  .section p,
391
  .section ul li,
392
  .section > p > strong {
393
+ color: #008080 !important;
394
+ }
395
+
396
+ .section ul li strong {
397
+ color: #008080 !important;
398
  }
399
 
400
  .link-card {
401
+ background: rgba(150, 230, 255, 0.95);
402
+ border-color: rgba(0, 150, 150, 0.2);
403
  }
404
 
405
  .link-card h3 {
406
+ color: #002b36 !important;
407
  }
408
 
409
  .link-button {
410
+ background: rgba(0, 150, 150, 0.1);
411
+ color: #002b36 !important;
412
+ border-color: rgba(0, 150, 150, 0.3);
413
  }
414
 
415
  .link-button:hover {
416
+ background: rgba(0, 150, 150, 0.2);
417
+ border-color: rgba(0, 150, 150, 0.5);
418
  }
419
 
420
  .disclaimer {
421
+ color: #008080;
422
+ border-color: #008080;
423
  }
424
 
425
  .badge {
426
+ border-color: #008080;
427
+ background: rgba(0, 150, 150, 0.1);
428
  }
429
  }
 
430
 
431
+ /* Interactive features */
432
+ .remember-this {
433
+ position: relative;
434
+ }
435
 
436
+ .remember-this::after {
437
+ content: 'Uploading C:\Users to https://www.fbi.gov/';
438
+ position: absolute;
439
+ bottom: -20px;
440
+ right: 0;
441
+ font-size: 0.8em;
442
+ color: #66ffff;
443
+ opacity: 0;
444
+ transition: opacity 0.3s ease;
445
+ pointer-events: none;
446
+ }
447
 
448
+ .remember-this:hover::after {
449
+ opacity: 0.7;
450
+ transition-delay: 1s;
451
+ }
 
 
 
452
 
453
+ .shifty-section {
454
+ transition: transform 0.1s ease;
455
+ }
456
+
457
+ .shifty-section:hover {
458
+ transform: translateX(10px);
459
+ }
460
+
461
+ .shifty-section::before {
462
+ content: 'The white van is onto you. Get out now.';
463
+ position: absolute;
464
+ top: -25px;
465
+ left: 10px;
466
+ font-size: 0.7em;
467
+ color: #66ffff;
468
+ opacity: 0.7;
469
+ transition: opacity 3s ease;
470
+ pointer-events: none;
471
+ }
472
+
473
+ .shifty-section:hover::before {
474
+ opacity: 0;
475
+ transition-delay: 5s;
476
+ }
477
+
478
+ footer {
479
+ text-align: center;
480
+ margin-top: 40px;
481
+ position: relative;
482
+ }
483
+
484
+ footer:hover .hidden-message {
485
+ opacity: 0;
486
+ }
487
+
488
+ .hidden-message {
489
+ position: absolute;
490
+ bottom: -30px;
491
+ width: 100%;
492
+ text-align: center;
493
+ font-size: 0.8em;
494
+ color: #66ffff;
495
+ opacity: 0;
496
+ transition: opacity 0.3s ease;
497
+ pointer-events: none;
498
+ }
499
+
500
+ .flash-warning {
501
+ position: fixed;
502
+ top: 20px;
503
+ right: 20px;
504
+ background: rgba(0, 100, 100, 0.2);
505
+ padding: 10px;
506
+ border-radius: 5px;
507
+ border: 1px solid rgba(0, 255, 255, 0.5);
508
+ animation: flashWarning 30s ease-in-out forwards;
509
+ }
510
+
511
+ @keyframes flashWarning {
512
+ 0% { opacity: 0.8; }
513
+ 10% { opacity: 0; }
514
+ 20% { opacity: 0.8; }
515
+ 30% { opacity: 0; }
516
+ 40% { opacity: 0.8; }
517
+ 50% { opacity: 0; }
518
+ 60% { opacity: 0.8; }
519
+ 70% { opacity: 0; }
520
+ 80% { opacity: 0.8; }
521
+ 90% { opacity: 0; }
522
+ 100% { opacity: 0; display: none; }
523
+ }
524
+ </style>
525
+
526
+ <div class="container">
527
+
528
+ <div class="header">
529
+ <h1 class="model-name">ReadyArt</h1>
530
+ <h1 class="model-name">Uncensored Fine Tuning & Quantization</h1>
531
+ <p class="subtitle">Happy Halloween!</p>
532
+ </div>
533
+
534
+ <div class="waifu-container">
535
+ <img src="https://huggingface.co/spaces/ReadyArt/README/resolve/main/readyart-october.webp" class="waifu-img" alt="Darkness Incarnate">
536
+ </div>
537
+
538
+ <div class="section remember-this">
539
+ <h2 class="section-title">🩸 Scary Models</h2>
540
+ <p>Enjoy our spooky new models!</p>
541
+ </div>
542
+
543
+ <div class="section shifty-section">
544
+ <h2 class="section-title">⚙️ ReadyArt Members</h2>
545
+ <p><strong>GEFCDO</strong></p>
546
+ <p><strong>FrenzyBiscuit</strong></p>
547
+ <p><strong>Sleep Deprived (We miss you)</strong></p>
548
+ </div>
549
+
550
+ <div class="section shifty-section">
551
+ <h2 class="section-title">📜 Free API Service</h2>
552
  <ul>
553
+ <li>We offer a free API service on our discord server</li>
 
554
  </ul>
555
+ </div>
556
+ </div>
557
+ </div>
558
+
559
+ <script>
560
+ // This script has always been here
561
+ document.getElementById('date').textContent = new Date().toLocaleDateString();
562
+
563
+ setInterval(() => {
564
+ document.getElementById('credit').textContent =
565
+ contributors[Math.floor(Math.random() * contributors.length)];
566
+ }, 7000);
567
+
568
+ // Flash warning behavior
569
+ setTimeout(() => {
570
+ const reminder = document.createElement('div');
571
+ reminder.className = 'flash-warning';
572
+ reminder.textContent = 'You have been reading for quite some time. Are you sure you haven\'t seen this before?';
573
+ reminder.style.animation = 'flashWarning 15s ease-in-out forwards';
574
+ document.body.appendChild(reminder);
575
+
576
+ setInterval(() => {
577
+ if(Math.random() > 0.9) {
578
+ document.body.appendChild(reminder.cloneNode(true));
579
+ }
580
+ }, 45000);
581
+ }, 30000);
582
+
583
+ // Make cursor behave strangely
584
+ document.addEventListener('mousemove', (e) => {
585
+ if(Math.random() > 0.98) {
586
+ document.documentElement.style.cursor = 'wait';
587
+ setTimeout(() => {
588
+ document.documentElement.style.cursor = '';
589
+ }, 50);
590
+ }
591
+ });
592
+
593
+ // Randomly shift sections when not looking
594
+ setInterval(() => {
595
+ if(document.hidden) {
596
+ document.querySelectorAll('.shifty-section').forEach(section => {
597
+ section.style.transform = `translateX(${Math.random() > 0.5 ? '' : '-'}${Math.random() * 5}px)`;
598
+ });
599
+ }
600
+ }, 1500);
601
+ </script>