STAMPED BY user./404z
:root {
–bg: #000;
–fg: #e9e9e9;
–accent: #ff0000;
–muted: #bdbdbd;
}
html, body {
height: 100%;
margin: 0;
background: var(–bg);
color: var(–fg);
font-family: ‘Inconsolata’, monospace;
overflow: hidden;
transition: background 2s ease, opacity 2s ease;
}
body.fade {
opacity: 0.88;
background: #050505;
}
.centered {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.badge {
width: 140px;
height: 140px;
border-radius: 12px;
overflow: hidden;
position: relative;
filter: contrast(1.3);
transition: transform .3s ease;
}
.badge.active {
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255,0,0,0.2);}
50% { transform: scale(1.06); box-shadow: 0 0 20px rgba(255,0,0,0.4);}
}
.badge img {
width: 100%;
height: 100%;
object-fit: cover;
animation: glitch 3s infinite;
}
@keyframes glitch {
0% { transform: none; opacity: 1; }
10% { transform: skew(2deg, 0deg); opacity: 0.9; }
20% { transform: translate(2px, -2px); opacity: 1; }
40% { transform: translate(-3px, 2px); }
70% { transform: none; opacity: 0.9; }
100% { opacity: 1; }
}
h1 {
font-family: ‘Kelly Slab’, cursive;
font-size: 22px;
margin: 14px 0 6px;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.12);
transition: text-shadow 1s ease;
}
h1.active {
text-shadow: 0 0 25px rgba(255,0,0,0.8);
}
h1 span { color: var(–accent); }
h2 {
font-family: ‘Kelly Slab’, cursive;
font-size: 13px;
margin: 0;
color: var(–muted);
}
.art {
margin: 16px 0;
font-size: 11px;
line-height: 1;
color: var(–muted);
white-space: pre;
max-width: 320px;
text-align: left;
}
.divider {
width: 100%;
height: 6px;
margin-top: 12px;
background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.14), transparent);
border-radius: 6px;
max-width: 700px;
}
.footer {
position: absolute;
bottom: 10px;
font-size: 11px;
color: var(–muted);
opacity: 0.7;
animation: fadeLoop 6s infinite alternate;
}
@keyframes fadeLoop {
0% { opacity: 0.2; }
50% { opacity: 1; }
100% { opacity: 0.2; }
}
.btn-play {
margin-top: 24px;
background: rgba(255, 0, 0, 0.1);
border: 1px solid rgba(255, 0, 0, 0.3);
padding: 10px 18px;
color: var(–accent);
font-family: ‘Inconsolata’, monospace;
font-size: 14px;
cursor: pointer;
border-radius: 6px;
transition: all 0.3s;
}
.btn-play:hover {
background: rgba(255, 0, 0, 0.3);
box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}
.vid-box {
position: fixed;
left: 20px;
top: 20px;
width: 240px;
height: 140px;
border-radius: 10px;
overflow: hidden;
border: 1px solid rgba(255, 0, 0, 0.3);
box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
backdrop-filter: blur(4px);
display: none;
opacity: 0;
transition: opacity 1.5s ease;
}
.vid-box.show {
display: block;
opacity: 1;
}
/* Custom alert box */
.modal {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 999;
}
.modal-content {
border: 1px solid rgba(255,0,0,0.4);
background: #0a0a0a;
padding: 20px 40px;
border-radius: 10px;
text-align: center;
font-family: ‘Kelly Slab’;
color: #fff;
box-shadow: 0 0 20px rgba(255,0,0,0.4);
animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
from {opacity:0; transform: scale(0.9);}
to {opacity:1; transform: scale(1);}
}
Touch By user./404z
not damaging, just boring
____ _ _ ____
( _ \( \/ )( __)
) _ < \ / ) _)
(____/ (__) (____)
Stamped by user./404z
Traser Sec Team
const playBtn = document.getElementById(“playBtn”);
const audio = document.getElementById(“sound”);
const vidBox = document.getElementById(“vidBox”);
const lirikVid = document.getElementById(“lirikVid”);
const modal = document.getElementById(“modal”);
const mainTitle = document.getElementById(“mainTitle”);
const badge = document.getElementById(“badge”);
function closeModal(){
modal.style.display = “none”;
document.body.classList.add(‘fade’);
playBtn.style.display = “none”;
mainTitle.classList.add(‘active’);
badge.classList.add(‘active’);
audio.volume = 0.6;
audio.play();
lirikVid.src = “https://files.catbox.moe/f6n4bv.mp4”;
lirikVid.play();
vidBox.classList.add(‘show’);
}
playBtn.addEventListener(“click”, () => {
modal.style.display = “flex”;
});