<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marketerz AI - Coming Soon</title>

<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700&display=swap" rel="stylesheet">

<style>

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#0f0c29,#302b63,#24243e);
color:white;
}

.container{
background:rgba(255,255,255,0.06);
backdrop-filter:blur(18px);
padding:50px;
border-radius:25px;
text-align:center;
width:90%;
max-width:550px;
box-shadow:0 0 40px rgba(0,0,0,.4);
}

.logo{
width:140px;
margin:auto;
margin-bottom:20px;
}

.logo img{
width:100%;
height:auto;
object-fit:contain;
}

h1{
font-size:36px;
margin-bottom:10px;
}

.subtitle{
opacity:.8;
margin-bottom:35px;
}

.countdown{
display:flex;
justify-content:space-between;
margin-bottom:35px;
}

.box{
background:rgba(255,255,255,.1);
padding:15px;
border-radius:12px;
width:23%;
}

.box span{
display:block;
font-size:26px;
font-weight:bold;
}

.box small{
opacity:.7;
}

form{
display:flex;
gap:10px;
margin-bottom:20px;
}

input{
flex:1;
padding:14px;
border:none;
border-radius:10px;
outline:none;
}

button{
padding:14px 25px;
border:none;
border-radius:10px;
background:linear-gradient(90deg,#6C63FF,#4FD1C5);
color:white;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

button:hover{
transform:scale(1.05);
}

.social{
margin-top:20px;
}

.social a{
margin:0 8px;
color:white;
opacity:.7;
text-decoration:none;
transition:.3s;
}

.social a:hover{
opacity:1;
}

footer{
margin-top:20px;
opacity:.6;
font-size:14px;
}

@media(max-width:600px){

.countdown{
flex-wrap:wrap;
gap:10px;
}

.box{
width:48%;
}

form{
flex-direction:column;
}

button{
width:100%;
}

}

</style>
</head>

<body>

<div class="container">

<div class="logo">
<img src="logo.png" alt="Marketerz Logo">
</div>

<h1>Marketerz AI</h1>

<p class="subtitle">
وكالة تسويق ذكية قريبًا 🚀  
نساعدك على زيادة العملاء باستخدام الذكاء الاصطناعي
</p>

<div class="countdown">

<div class="box">
<span id="days">00</span>
<small>يوم</small>
</div>

<div class="box">
<span id="hours">00</span>
<small>ساعة</small>
</div>

<div class="box">
<span id="minutes">00</span>
<small>دقيقة</small>
</div>

<div class="box">
<span id="seconds">00</span>
<small>ثانية</small>
</div>

</div>

<form>
<input type="email" placeholder="أدخل بريدك الإلكتروني">
<button>Notify Me</button>
</form>

<div class="social">
<a href="#">LinkedIn</a>
<a href="#">Instagram</a>
<a href="#">TikTok</a>
<a href="#">YouTube</a>
</div>

<footer>
© 2025 Marketerz AI — All Rights Reserved
</footer>

</div>

<script>

const targetDate = new Date("May 1, 2026 00:00:00").getTime();

setInterval(() => {

const now = new Date().getTime();

const diff = targetDate - now;

document.getElementById("days").innerText =
Math.floor(diff/(1000*60*60*24));

document.getElementById("hours").innerText =
Math.floor((diff%(1000*60*60*24))/(1000*60*60));

document.getElementById("minutes").innerText =
Math.floor((diff%(1000*60*60))/(1000*60));

document.getElementById("seconds").innerText =
Math.floor((diff%(1000*60))/1000);

},1000);

</script>

</body>
</html>