File: /home/bibuzptr/public_html/sumut.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Touch By ZammLaex M.Kom-</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Waterfall&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reggae+One&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
background: #000000;
font-family: 'Trebuchet MS', sans-serif;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.main-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.logo {
max-width: 35%;
height: auto;
margin-bottom: 15px;
transition: transform 0.3s ease;
}
.logo:hover {
transform: scale(1.02);
}
.hacker-signature {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
margin-bottom: 15px;
font-size: 1.3rem;
}
.hacker-signature .hacked-by {
font-family: 'Reggae One', cursive;
color: red;
}
.hacker-signature .hacker-name {
font-family: 'Reggae One', cursive;
color: white;
}
.divider {
width: 80%;
max-width: 600px;
height: 2px;
margin: 30px auto;
background: linear-gradient(to right, transparent, #ff0000, transparent);
border: none;
border-radius: 2px;
}
.message-container {
margin-bottom: 25px;
}
.ambatukam-text {
color: #FF0000;
text-transform: uppercase;
font-size: 1.8rem;
margin-bottom: 15px;
text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
letter-spacing: 2px;
font-weight: bold;
padding: 0 10px;
}
.challenge-text {
color: #FFFFFF;
text-transform: uppercase;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 20px;
padding: 0 10px;
}
.audio-player {
width: 100%;
max-width: 400px;
margin: 0 auto 25px;
border-radius: 50px;
overflow: hidden;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}
.palestine-text {
color: #FFFFFF;
font-size: 2rem;
letter-spacing: 3px;
font-family: 'Waterfall', cursive;
margin-top: 15px;
text-shadow: 0 0 10px rgba(151, 233, 0, 0.7);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { text-shadow: 0 0 10px rgba(151, 233, 0, 0.7); }
50% { text-shadow: 0 0 20px rgba(151, 233, 0, 1); }
100% { text-shadow: 0 0 10px rgba(151, 233, 0, 0.7); }
}
/* Desktop specific styles */
@media (min-width: 768px) {
.ambatukam-text {
font-size: 2.5rem;
letter-spacing: 4px;
}
.challenge-text {
font-size: 1.3rem;
padding: 0 100px;
}
.palestine-text {
font-size: 2.8rem;
letter-spacing: 5px;
}
.hacker-signature {
font-size: 1.5rem;
}
}
@media (max-width: 767px) {
.logo {
max-width: 90%;
}
.ambatukam-text {
font-size: 1.5rem;
}
.challenge-text {
font-size: 1rem;
}
.palestine-text {
font-size: 1.8rem;
}
.hacker-signature {
font-size: 1.1rem;
flex-direction: column;
}
}
</style>
</head>
<body>
<div class="main-container">
<img src="https://i.top4top.io/p_34112gtz80.jpg" alt="Logo" class="logo">
<div class="hacker-signature">
<span class="hacked-by">Hacked By</span>
<span class="hacker-name">./ZammLaex M.Kom.</span>
</div>
<hr class="divider">
<div class="message-container">
<p class="ambatukam-text">
Fanatix Legion
</p>
<p class="challenge-text">
We are Indonesians and Muslims. We stand against oppression, reject the Zionist regime, and resist all who support it. We are the digital lions of justice.
</p>
<audio controls autoplay class="audio-player">
<source src="https://f.top4top.io/m_2874bcxgi9.mp3" type="audio/mpeg">
</audio>
<p class="palestine-text">
Free Palestine
</p>
</div>
</div>
</body>
</html>