Hacked By Almoravid Brigade
body {
background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(28,28,28,1) 50%, rgba(0,0,0,1) 100%);
color: white;
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
img {
max-width: 30%;
height: auto;
margin-bottom: 20px;
border: 5px solid white;
box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
animation: pulse 2s infinite;
}
h1 {
font-size: 3em;
margin: 0;
text-shadow: 0 0 20px red, 0 0 30px darkred;
animation: flicker 1.5s infinite alternate;
}
p {
font-size: 1.5em;
margin: 20px 0;
color: #f2f2f2;
text-shadow: 0 0 10px #888;
}
button {
background-color: red;
color: white;
border: none;
padding: 15px 30px;
font-size: 1.5em;
cursor: pointer;
border-radius: 10px;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
transition: transform 0.3s, box-shadow 0.3s;
}
button:hover {
background-color: darkred;
transform: scale(1.1);
box-shadow: 0 0 30px rgba(255, 0, 0, 1);
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
50% {
transform: scale(1.05);
box-shadow: 0 0 40px rgba(255, 255, 255, 1);
}
100% {
transform: scale(1);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
}
@keyframes flicker {
0% {
opacity: 1;
}
50% {
opacity: 0.8;
}
100% {
opacity: 1;
}
}
Hacked BY Almoravid Brigade
"وَجَاهِدُوا فِي سَبِيلِ اللَّهِ بِأَمْوَالِكُمْ وَأَنْفُسِكُمْ ۚ ذَٰلِكُمْ خَيْرٌ لَكُمْ إِنْ كُنْتُمْ تَعْلَمُونَ"
function playAudio() {
const audio = document.getElementById('audio');
audio.play();
}