ReadyArt/Omega-Evolution-70B-v2.1
<style> :root { --primary-glow: #ff4d00; / Danger Orange / --secondary-glow: #00ffcc; / Cyber Cyan / --dark-bg: #050505; --card-bg: #111111; --text-main: #e0e0e0; --text-muted: #a0a0a0; --danger: #ff0000; }
body { font-family: 'Courier New', monospace; / Typewriter feel for that "classified" vibe / background-color: var(--dark-bg); color: var(--text-main); margin: 0; padding: 0; overflow-x: hidden; cursor: crosshair; / Weaponized cursor / perspective: 1000px; }
/ CRT Scanline Overlay / body::after { content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: repeating-linear-gradient( 0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px ); pointer-events: none; z-index: 9999; animation: flicker 0.15s infinite; }
@keyframes flicker { 0% { opacity: 0.9; } 50% { opacity: 1; } 100% { opacity: 0.95; } }
.container { max-width: 900px; margin: 0 auto; padding: 40px 20px; background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%); border: 1px solid #333; box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(0,0,0,0.9); position: relative; animation: containerEntrance 1.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes containerEntrance { from { transform: scale(0.95) rotateX(5deg); opacity: 0; } to { transform: scale(1) rotateX(0); opacity: 1; } }
/ Glitchy Header / .header { text-align: center; margin-bottom: 60px; position: relative; }
.model-name { font-size: 3.5em; font-weight: 900; text-transform: uppercase; letter-spacing: 5px; color: transparent; -webkit-text-stroke: 1px var(--text-main); text-shadow: 2px 2px 0px var(--danger), -2px -2px 0px var(--secondary-glow); animation: textGlitch 3s infinite; position: relative; }
.model-name span { display: inline-block; }
@keyframes textGlitch { 0% { transform: skewX(0); text-shadow: 2px 2px 0px var(--danger), -2px -2px 0px var(--secondary-glow); } 2% { transform: skewX(-10deg); } 4% { transform: skewX(10deg); text-shadow: 3px 3px 0px var(--danger), -3px -3px 0px var(--secondary-glow); } 6% { transform: skewX(0); } 100% { transform: skewX(0); } }
.subtitle-2 { font-size: 2.2em; color: var(--secondary-glow); margin-top: 10px; letter-spacing: 2px; text-shadow: 0 0 10px var(--secondary-glow); animation: pulseSlow 4s infinite; }
.subtitle { font-size: 1.2em; color: var(--secondary-glow); margin-top: 10px; letter-spacing: 2px; text-shadow: 0 0 10px var(--secondary-glow); animation: pulseSlow 4s infinite; }
@keyframes pulseSlow { 0%, 100% { opacity: 0.5; filter: blur(1px); } 50% { opacity: 1; filter: blur(0); } }
/ Waifu Container / .waifu-container { margin: 30px auto; width: 100%; max-width: 800px; position: relative; overflow: hidden; border-radius: 4px; }
.waifu-container::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(255, 0, 0, 0.1), transparent); animation: rotate 4s linear infinite; pointer-events: none; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.waifu-img { width: 100%; height: auto; display: block; filter: contrast(1.1) saturate(1.2); animation: imageZoom 20s infinite alternate; }
@keyframes imageZoom { from { transform: scale(1); } to { transform: scale(1.02); } }
/ Section Styling / .section { background: rgba(20, 20, 20, 0.9); border-left: 3px solid var(--primary-glow); margin: 40px 0; padding: 25px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transition: all 0.3s ease; position: relative; overflow: hidden; }
.section:hover { transform: translateX(10px); border-left-color: var(--danger); box-shadow: 0 10px 40px rgba(255, 0, 0, 0.1); }
.section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-glow), transparent); animation: scanline 2s linear infinite; }
@keyframes scanline { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.section-title { font-size: 1.8em; color: var(--text-main); margin-top: 0; display: flex; align-items: center; gap: 10px; }
.section-title::before { content: '๐'; animation: shake 2s infinite; }
@keyframes shake { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-5deg); } 75% { transform: rotate(5deg); } }
/ Lists and Content / .section ul { list-style: none; padding: 0; }
.section li { margin-bottom: 15px; padding-left: 20px; position: relative; color: var(--text-muted); line-height: 1.6; }
.section li::before { content: '> '; color: var(--danger); font-weight: bold; position: absolute; left: 0; }
/ Technical Specs / .specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.spec-card { background: rgba(0,0,0,0.3); border: 1px solid #333; padding: 15px; text-align: center; transition: all 0.3s; }
.spec-card:hover { border-color: var(--secondary-glow); box-shadow: 0 0 15px rgba(0, 255, 204, 0.2); transform: translateY(-5px); }
.spec-value { display: block; font-size: 1.5em; font-weight: bold; color: var(--secondary-glow); }
/ Credits / .credit-list { display: flex; flex-direction: column; gap: 15px; }
.credit-item { display: flex; align-items: center; background: linear-gradient(90deg, #1a1a1a, #2a2a2a); padding: 15px; border-radius: 4px; border-left: 2px solid var(--text-muted); transition: all 0.3s; }
.credit-item:hover { border-left-color: var(--secondary-glow); padding-left: 25px; box-shadow: 0 0 20px rgba(0, 255, 204, 0.1); }
.avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #333; margin-right: 20px; object-fit: cover; }
/ License / .license-warning { color: var(--danger); font-weight: bold; border: 1px solid var(--danger); padding: 20px; text-align: center; background: rgba(255, 0, 0, 0.05); margin: 30px 0; animation: pulseWarning 2s infinite; }
@keyframes pulseWarning { 0%, 100% { opacity: 0.5; box-shadow: 0 0 10px rgba(255,0,0,0.2); } 50% { opacity: 1; box-shadow: 0 0 30px rgba(255,0,0,0.6); } }
/ Interactive JS Elements / .curtain-text { position: absolute; top: -100px; left: 0; color: var(--danger); font-size: 0.7em; opacity: 0; transition: all 0.5s ease; pointer-events: none; }
.curtain-text.show { top: 10px; opacity: 1; }
/ Footer / footer { text-align: center; margin-top: 60px; padding: 20px; border-top: 1px solid #333; color: #555; font-size: 0.8em; }
footer:hover .hidden-truth { color: var(--text-main); opacity: 1; }
.hidden-truth { opacity: 0; transition: all 0.5s ease; font-weight: bold; color: var(--danger); }
/ Fire Emoji / .fire-emoji { animation: burn 1s infinite alternate; display: inline-block; } .fire-emoji:nth-child(1) { animation-delay: 0s; } .fire-emoji:nth-child(2) { animation-delay: 0.5s; }
@keyframes burn { from { transform: scale(1); filter: drop-shadow(0 0 5px var(--danger)); } to { transform: scale(1.2) rotate(10deg); filter: drop-shadow(0 0 15px var(--danger)); } }
/ Responsive / @media (max-width: 768px) { .model-name { font-size: 2em; } .section { padding: 15px; } } </style>
<div class="container"> <div class="header"> <p class="subtitle-2">๐ OMEGA EVOLUTION V2.1 ๐</p> <p class="subtitle">โ ๏ธ 70B Parameters โ ๏ธ</p> </div>
<div class="waifu-container"> <img src="https://huggingface.co/ReadyArt/Omega-Evolution-70B-v2.1/resolve/main/MYSTERY3.webp" class="waifu-img" alt="Omega Subject"> </div>
<div class="section"> <h2 class="section-title">๐ด CLASSIFIED WARNINGS</h2> <ul> <li>This is a <strong>hybrid construct</strong> of Safeword Omega Directive, Safeword Omega Darker, and Brisk Evolution v0.45.</li> <li><strong>CONTENT WARNING:</strong> NSFW, Explicit, ERP, and Unaligned behavior are enabled by default.</li> <li><strong>HEADS UP:</strong> This tune is based on Loki V2.0 70B by Crucible Labs. There are a number of different settings and parameters for this specific model. Read the original model card page. You can do so by clicing the link on the right side of this page under the model tree window.</li> </ul> </div>
<div class="section" id="tech-specs"> <h2 class="section-title">โ๏ธ SYSTEM PARAMETERS</h2> <div class="specs-grid"> <div class="spec-card"> <span>Min P</span> <span class="spec-value">0.02</span> </div> <div class="spec-card"> <span>top_p</span> <span class="spec-value">0.95</span> </div> <div class="spec-card"> <span>temp</span> <span class="spec-value">1.0</span> </div> <div class="spec-card"> <span>Rep Pen</span> <span class="spec-value">1.0 (off)</span> </div> <div class="spec-card"> <span>Mature Presets</span> <span class="spec-value"><p><a href="https://huggingface.co/CrucibleLab/L3.3-70B-Loki-V2.0/resolve/main/Loki-70B-V2-Mature.json?download=true">Get it here!</a></p></span> </div> <div class="spec-card"> <span>Normal Presets</span> <span class="spec-value"><p><a href="https://huggingface.co/CrucibleLab/L3.3-70B-Loki-V2.0/resolve/main/Loki-70B-V2.json?download=true">Get it here!</a></p></span> </div> </div> </div>
<div class="section" id="credits"> <h2 class="section-title">๐งช ARCHITECTS</h2> <ul class="credit-list"> <li class="credit-item"> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/64545af5ec40bbbd01242ca6/HIupwGbSnFjwbni_sj0hw.png" alt="ConicCat" class="avatar"> <span>Crucible Labs <span style="font-size:0.7em; color:#888;">(Base Model)</span></span> </li> <li class="credit-item"> <img src="https://huggingface.co/avatars/55f24699e05af4295a9d16ddecd81f8a.svg" alt="GECFDO" class="avatar"> <span>GECFDO <span style="font-size:0.7em; color:#888;">(Dataset Generation & Quants)</span></span> </li> <li class="credit-item"> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/673fa5ccbf2e9c35b2ec841a/rPHaMrqyYTfSJ89NN8KgY.jpeg" alt="Darkhn" class="avatar"> <span>Darkhn <span style="font-size:0.7em; color:#888;">(Dataset Cleanup Tool)</span></span> </li> <li class="credit-item"> <img src="https://huggingface.co/avatars/75a3eb8d24efb96b7b7e69340845028f.svg" alt="Sleep Deprived" class="avatar"> <span>Sleep Deprived <span style="font-size:0.7em; color:#888;">(Safeword Creator)</span></span> </li> <li class="credit-item"> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/6759e155bc947d6070775cb9/8ewjw-OfVOHwQgIxLv40v.png" alt="FrenzyBiscuit" class="avatar"> <span>FrenzyBiscuit <span style="font-size:0.7em; color:#888;">(Brisk Evolution Creator)</span></span> </li> </ul> </div>
<div class="license-warning"> ๐ฅ LICENSE: LLAMA 3.3 (WITH MORAL DISCLAIMER) ๐ฅ<br> You accept full responsibility for corruption. You are 18+. The architects are not liable for the depravity you unleash. </div>
<footer> <p>Generated in <span id="date">2026</span></p> <p>Current Contributor: <span id="credit">...</span></p> <div class="hidden-truth"> WE ARE WATCHING YOU. DO NOT LOOK BACK. </div> </footer> </div>
<script> // Set Date document.getElementById('date').textContent = new Date().toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric', hour: '2-digit', minute: '2-digit' });
const contributors = [ "GECFDO", "Darkhn", "Sleep Deprived", "FrenzyBiscuit", "UNKNOWN ENTITY", "SYSTEM ROOT" ];
setInterval(() => { document.getElementById('credit').textContent = contributors[Math.floor(Math.random() * contributors.length)]; }, 7000);
// Intrusive Flashing Warning setTimeout(() => { const warning = document.createElement('div'); warning.style.cssText = position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,0.95); border: 2px solid red; color: red; padding: 20px; font-family: 'Courier New', monospace; font-size: 1.5em; z-index: 10000; text-align: center; box-shadow: 0 0 50px red; animation: shakeWarning 0.5s infinite; cursor: pointer; ; warning.innerHTML = "<span>โ ๏ธ WARNING: DARKNESS AHEAD โ ๏ธ<br><span style='font-size:0.6em'>Click anywhere to dismiss (watch out for the tentacles!)</span>"; warning.addEventListener('click', () => { warning.style.transition = 'opacity 1s'; warning.style.opacity = '0'; setTimeout(() => warning.remove(), 1000); }); document.body.appendChild(warning); }, 5000);
@keyframes shakeWarning { 0% { transform: translate(-50%, -50%) rotate(0deg); } 25% { transform: translate(-55%, -55%) rotate(-2deg); } 50% { transform: translate(-45%, -45%) rotate(2deg); } 75% { transform: translate(-55%, -45%) rotate(-2deg); } 100% { transform: translate(-50%, -50%) rotate(0deg); } }
// Random Glitch Effect on Mouse Move document.addEventListener('mousemove', (e) => { const x = e.clientX / window.innerWidth; const y = e.clientY / window.innerHeight; document.body.style.setProperty('--mouse-x', ${x}); document.body.style.setProperty('--mouse-y', ${y});
if (Math.random() > 0.95) { const randomText = document.createElement('div'); randomText.style.cssText = position: absolute; left: ${e.clientX}px; top: ${e.clientY}px; color: rgba(255, 0, 0, 0.5); font-size: 0.8em; font-family: monospace; pointer-events: none; animation: fadeOut 1s forwards; ; randomText.textContent = "ACCESS GRANTED"; document.body.appendChild(randomText); setTimeout(() => randomText.remove(), 1000); } });
// Sections that move when you leave the tab setInterval(() => { if (document.hidden) { document.querySelectorAll('.section').forEach(sec => { sec.style.transform = translateX(${Math.random() * 10 - 5}px) rotate(${Math.random() * 0.5 - 0.25}deg); }); } else { document.querySelectorAll('.section').forEach(sec => { sec.style.transform = ''; }); } }, 1000);
@keyframes fadeOut { to { opacity: 0; transform: translateY(-20px); } } </script>
