* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  /* خلفية احترافية */
  background: linear-gradient(-45deg, #0f172a, #1e3a8a, #0ea5e9, #0f172a);
  background-size: 400% 400%;
  animation: bgMove 10s ease infinite;
}

/* حركة الخلفية */
@keyframes bgMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* الحاوية */
.container {
  text-align: center;
  color: white;

  /* أنيميشن دخول */
  animation: fadeIn 1.2s ease forwards;
}

/* Fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* اللوجو */
.logo {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;

  animation: pop 1s ease;
}

/* حركة اللوجو */
@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* العنوان */
.title {
  font-size: 34px;
  margin-bottom: 10px;
}

/* الوصف */
.desc {
  color: #cbd5e1;
  margin-bottom: 25px;
  font-size: 15px;
}

/* الزر */
.btn {
  background: #38bdf8;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;

  transition: 0.3s;
}

/* Hover */
.btn:hover {
  transform: scale(1.08);
  background: #0ea5e9;
}