<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Hacked By Scofield" />
<title>HACKED BY SCOFİELD</title>
<link href="https://fonts.googleapis.com/css2?family=VT323&family=Orbitron:wght@700&display=swap" rel="stylesheet" />
<style>
* {
overflow: hidden;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family: 'VT323', monospace;
background: #000;
color: #fff;
position: relative;
cursor: pointer;
}
button {
background: rgba(0, 0, 0, 0.6);
border: 1px solid #f0f;
cursor: pointer;
color: #fff;
font-size: 2.5vmin;
font-family: 'VT323', monospace;
text-shadow: 0 0 10px #f0f, 0 0 30px #f0f;
transition: all 0.35s ease;
margin-top: 20px;
padding: 10px 25px;
border-radius: 3px;
letter-spacing: 2px;
}
button:hover {
text-shadow: 0 0 20px #f0f, 0 0 40px #f0f;
box-shadow: 0 0 15px #f0f, inset 0 0 10px #f0f;
transform: translateY(-2px);
}
video#back {
position: fixed;
top: 50%;
left: 50%;
min-width: 105%;
min-height: 105%;
transform: translate(-50%, -50%);
filter: brightness(1.2) contrast(1.1);
z-index: -1;
}
#main {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: table;
text-align: center;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.fof {
display: table-cell;
vertical-align: middle;
}
.fof h1 {
font-size: 8vmin;
color: #f00;
text-shadow: 0 0 15px #f00;
margin: 20px 0;
animation: glitch 1s linear infinite;
}
h2, h3, h4 {
font-size: 4vmin;
color: #00ff00;
text-shadow: 0 0 15px #00ff00;
}
h2 a {
color: #00ccff;
text-decoration: none;
text-shadow: 0 0 5px #00ccff;
}
h2 a:hover {
color: #ff0;
text-shadow: 0 0 5px #ff0;
}
.hacker-rain {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
}
.hacker-rain::before {
content: "0101010101010101010101";
position: absolute;
top: -100%;
width: 200%;
height: 200%;
opacity: 0.2;
animation: rain-fall 55s linear infinite;
white-space: nowrap;
color: #00ff00;
font-family: 'VT323', monospace;
font-size: 2.5vmin;
text-shadow: 0 0 5px #00ff00;
}
.hacker-rain::after {
content: "0101010101010101010101";
position: absolute;
top: -150%;
width: 200%;
height: 200%;
opacity: 0.15;
animation: rain-fall 75s linear infinite;
white-space: nowrap;
color: #f0f;
font-family: 'VT323', monospace;
font-size: 2.3vmin;
text-shadow: 0 0 5px #f0f;
}
@keyframes rain-fall {
0% { transform: translateY(0); }
100% { transform: translateY(150vh); }
}
@keyframes glitch {
0% { text-shadow: 1px 0 red, -1px 0 cyan; }
25% { text-shadow: -1px 0 red, 1px 0 cyan; }
50% { text-shadow: 1px 0 red, -1px 0 cyan; }
75% { text-shadow: -1px 0 red, 1px 0 cyan; }
100% { text-shadow: 1px 0 red, -1px 0 cyan; }
}
.hacked-message {
color: red;
font-weight: bold;
font-size: 3.5vmin;
text-decoration: none;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
#sound-alert {
position: fixed;
top: 20px;
right: 20px;
background: rgba(0,0,0,0.7);
color: white;
border: 1px solid red;
padding: 10px 15px;
border-radius: 5px;
display: none;
z-index: 100;
animation: fadeOut 1s 2s forwards;
font-size: 2.5vmin;
}
@keyframes fadeOut {
to { opacity: 0; display: none; }
}
</style>
</head>
<body onclick="unmuteee()">
<div class="hacker-rain"></div>
<!-- Video Arka Plan -->
<video id="back" autoplay loop muted preload="auto" playsinline onclick="unmuteee()">
<source src="https://tikcdn.io/ssstik/7449099452222049558" type="video/mp4" />
Tarayıcınız video etiketini desteklemiyor.
</video>
<!-- İçerik -->
<div id="main" onclick="unmuteee()">
<div class="fof">
<h1>HACKED BY SCOFİELD</h1>
<h2>SCOFİELD</h2>
<h3>DUO : YUZEW - WENTON - SWON - SHİVANNA</h3>
<h4>WEB • PENTESTER • CODER</h4>
<br />
<p class="hacked-message">BİR GRUP YETENEKLİ SERSERİ</p>
<!-- Hakkımda butonu -->
<button onclick="window.location.href='index2.html'">HAKKIMDA</button>
</div>
</div>
<!-- Ses uyarı mesajı -->
<div id="sound-alert">Lütfen sayfaya bir kere tıklayın</div>
<script>
function unmuteee() {
const video = document.getElementById("back");
video.muted = false;
video.play().catch(e => console.log("Oynatma hatası:", e));
// Ses açıldı bilgisini göster (1 saniye)
const soundAlert = document.getElementById('sound-alert');
soundAlert.textContent = "Ses açıldı!";
soundAlert.style.display = 'block';
setTimeout(() => {
soundAlert.style.display = 'none';
}, 1000);
}
document.addEventListener('DOMContentLoaded', function() {
const soundAlert = document.getElementById('sound-alert');
// Sayfa yüklendiğinde uyarı mesajını göster
soundAlert.style.display = 'block';
// 3 saniye sonra uyarıyı gizle
setTimeout(() => {
soundAlert.style.display = 'none';
}, 3000);
// Videoyu otomatik başlat
const video = document.getElementById('back');
video.play().catch(e => console.log("Video oynatma hatası:", e));
});
</script>
</body>
</html>