body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
  overflow: hidden;
  z-index: 9999999999999999999;
}

/* تأثير الأنيميشن عند ظهور الصفحة */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.content {
  background: #333;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  max-width: 600px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-link, .home-link {
  display: inline-block;
  padding: 15px 30px;
  margin: 15px 10px;
  background-color: #36b4a6;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-link:hover, .home-link:hover {
  background-color: #cc5200;
}

/* تحسين زر التواصل مع واتساب */
.contact-link {
  background-color: #25d366;
}

.contact-link:hover {
  background-color: #128c7e;
}

.home-link {
  background-color: #007bff;
}

.home-link:hover {
  background-color: #0056b3;
}

/* تصميم إضافي للصفحة لزيادة الجمالية */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
}

.coming-soon h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.content {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #2c3e50;
}