OWNED BY KAIYO
html, body {
color: white;
cursor: none;
background-color: black;
margin: 0;
padding: 0;
font-family: ‘Hack’;
-ms-overflow-style: none; /* Internet Explorer and Edge */
scrollbar-width: none; /* Firefox */
}
*::-webkit-scrollbar {
display: none;
}
@font-face {
font-family: ‘Techno Hideo’;
src: url(‘https://your-font-link.com/techno_hideo.ttf’);
}
#cursor {
position: absolute;
background-image: url(‘https://your-image-link.com/jk.svg’);
height: 100px;
width: 100px;
background-size: cover;
background-position: center center;
}
.font-techno {
font-family: ‘Techno Hideo’;
}
.ind_emoji {
height: 40px;
width: 60px;
background-image: url(‘https://your-image-link.com/ind.webp’);
background-size: cover;
background-position: center center;
border-radius: 5px;
display: inline-block;
}
.main {
height: 100vh;
width: 100vw;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.headline {
color: #51ff00;
font-size: 2em;
}
.paragraph p {
font-family: ‘Hack’;
color: #000000;
}
.headline-2 {
font-family: ‘Hack’;
color: #000000;
}
.links .link {
color: #51ff00;
font-weight: 700;
text-decoration: none;
cursor: pointer !important;
}
.image-container {
position: relative;
display: inline-block;
}
.image-container img {
width: 200px;
height: 200px;
border-radius: 50%; /* Làm tròn ảnh */
object-fit: cover; /* Đảm bảo ảnh bao phủ toàn bộ vùng tròn */
animation: rotate 5s linear infinite; /* Tạo hiệu ứng xoay ảnh */
}
.image-container .hover-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 1.5em;
font-family: ‘Hack’;
opacity: 0; /* Ẩn văn bản mặc định */
transition: opacity 0.3s ease; /* Tạo hiệu ứng mờ dần */
}
.image-container:hover .hover-text {
opacity: 1; /* Hiện văn bản khi hover */
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
HACKED BY KAIYO
ĐÂY LÀ LỜI NHẮC NHỞ VỀ SỰ THỐNG TRỊ TRÊN MẠNG CỦA VIỆT NAM. SỰ PHÒNG THỦ YẾU CỦA BẠN ĐÃ BỊ VI PHẠM,
VÀ TRANG WEB CỦA BẠN GIỜ ĐANG LÀ MỘT BẰNG CHỨNG CHO SỰ VƯỢT TRỘI CỦA CHÚNG TA. ĐỐI ĐẦU VỚI NHỮNG NGƯỜI TỐT NHẤT, HÃY ĐỐI MẶT VỚI HẬU QUẢ.
Chúng Tôi Đến Từ Việt Nam Vui Lòng Bảo Mật Trang Web Tốt Hơn!
#HACKED BY KAIYO
const audio = new Audio(‘https://files.catbox.moe/rh1ry4.mp3’);
audio.volume = 1;
document.addEventListener(‘DOMContentLoaded’, () => {
audio.play(); // Tự động phát nhạc khi tải trang
alert(‘Trang Web Này Đã Bị Chúng Tôi Chiếm Giữ!’);
alert(‘Hacked By Kaiyo’);
});
document.body.addEventListener(‘contextmenu’, (e) => {
e.preventDefault();
alert(‘Hacked By Kaiyo’);
});
const cursor = document.getElementById(‘cursor’);
document.body.addEventListener(‘mousemove’, (e) => {
cursor.style.top = `${e.clientY}px`;
cursor.style.left = `${e.clientX}px`;
});