: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; }
}
😈 OMEGA EVOLUTION V2.0 😈
⚠️ 9B Parameters ⚠️
⚠️ Thinking works (tested with RP prompts) ⚠️
Some reptition issues (repeats itself) - fixed with a regen or two.
🔴 CLASSIFIED WARNINGS
This is a hybrid construct of Safeword Omega Directive, Safeword Omega Darker, and Brisk Evolution v0.3.
CONTENT WARNING: NSFW, Explicit, ERP, and Unaligned behavior are enabled by default.
Dataset Revamp Took a sledgehammer to the dataset. Most formatting issues should be gone now.
⚙️ SYSTEM PARAMETERS
top_p
0.95
temp
0.9
🧪 ARCHITECTS
GECFDO (Dataset Generation & Quants)
Darkhn (Dataset Cleanup Tool)
Sleep Deprived (Safeword Creator)
FrenzyBiscuit (Brisk Evolution Creator)
🔥 LICENSE: APACHE 2.0 (WITH MORAL DISCLAIMER) 🔥
You accept full responsibility for corruption. You are 18+. The architects are not liable for the depravity you unleash.
Generated in 2026
Current Contributor: ...
WE ARE WATCHING YOU. DO NOT LOOK BACK.
// 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 = "⚠️ WARNING: DARKNESS AHEAD ⚠️
Click anywhere to dismiss (watch out for the tentacles!)";
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); }
}