<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Animated Tux</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: black;
font-family: monospace;
}
/* شاشة كاملة */
.screen {
position: fixed;
inset: 0;
background: radial-gradient(circle, #400000, #000);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* حركة تعويم */
.penguin {
width: 220px;
max-width: 70%;
animation: float 3s ease-in-out infinite;
}
/* وميض شاشة اللابتوب */
.laptop-glow {
position: absolute;
width: 120px;
height: 80px;
background: rgba(0,255,0,0.2);
filter: blur(15px);
animation: glow 1.5s infinite;
}
/* النص */
.title {
margin-top: 20px;
font-size: 2rem;
color: red;
text-shadow: 0 0 10px black;
}
.sub {
color: #00ff66;
margin-top: 8px;
font-size: 1rem;
}
/* Animations */
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}
@keyframes glow {
0% { opacity: 0.3; }
50% { opacity: 0.8; }
100% { opacity: 0.3; }
}
</style>
</head>
<body>
<div class="screen">
<!-- وميض اللابتوب -->
<div class="laptop-glow"></div>
<!-- صورة البطريق -->
<img src="https://y.yarn.co/19333661-8823-4907-9aa4-af7dd79f2670_text.gif" class="penguin" alt="Tux">
<div class="title">HACKED BY</div>
<div class="sub">@xman . Fsociety</div>
</div>
</body>
</html>