<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KSACHAIN - Coming Soon</title>
<style>
body {
margin: 0;
padding: 0;
background: #000000;
font-family: 'Orbitron', 'Cinzel', 'Arial', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color: #FFD700;
text-align: center;
overflow: hidden;
position: relative;
}
img {
width: 220px;
margin-bottom: 20px;
animation: pulse 3s infinite;
z-index: 2;
}
h1 {
font-size: 3.8em;
margin: 10px 0;
color: #FFD700;
letter-spacing: 3px;
animation: flicker 2s infinite alternate;
z-index: 2;
}
p {
font-size: 1.6em;
margin-bottom: 30px;
color: #FFD700;
text-shadow: 0 0 10px #FFD700;
z-index: 2;
}
.social-links {
margin-top: 30px;
display: flex;
gap: 25px;
z-index: 2;
}
.social-links a {
font-size: 1.5em;
color: #FFD700;
text-decoration: none;
transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
transform: scale(1.2);
color: #ffffff;
}
.contact-email {
margin-top: 20px;
font-size: 1.1em;
color: #FFD700;
z-index: 2;
}
.contact-email a {
color: #FFD700;
text-decoration: none;
}
.contact-email a:hover {
text-decoration: underline;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.9; }
100% { transform: scale(1); opacity: 1; }
}
@keyframes flicker {
from { opacity: 1; }
50% { opacity: 0.8; }
to { opacity: 1; }
}
.background-lines {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
45deg,
rgba(255, 215, 0, 0.05) 0px,
rgba(255, 215, 0, 0.05) 1px,
transparent 1px,
transparent 20px
);
animation: moveLines 20s linear infinite;
z-index: 1;
}
@keyframes moveLines {
0% { background-position: 0 0; }
100% { background-position: 1000px 1000px; }
}
.coming-soon {
margin-top: 40px;
padding: 12px 30px;
background-color: #FFD700;
color: #000;
font-weight: bold;
font-size: 1.3em;
border: none;
border-radius: 8px;
cursor: pointer;
animation: pulseButton 2s infinite;
z-index: 2;
}
@keyframes pulseButton {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
<div class="background-lines"></div>
<img src="https://k.top4top.io/p_34108x99f1.png" alt="KSACHAIN Logo" />
<h1>KSACHAIN</h1>
<p>Prepare for a New Era of Excellence<br>Stay Tuned for Our Grand Launch</p>
<div class="social-links">
<a href="https://x.com/ksa1_team?s=21" target="_blank">X</a>
<a href="https://t.me/m/O5zv4zExYzQ0" target="_blank">Telegram</a>
<a href="https://www.tiktok.com/@ksa18772?_t=ZS-8vxc44iX9uc&_r=1" target="_blank">TikTok</a>
</div>
<div class="contact-email">
<a href="mailto:ksa1-team@outlook.sa">ksa1-team@outlook.sa</a>
</div>
<button class="coming-soon">Coming Soon</button>
</body>
</html>