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

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    -45deg,
    #2b1a4a,  /* ليلكي غامق */
    #3a2b6d,
    #0a2a4f,  /* أزرق غامق */
    #12002f
  );
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
  color: white;
  text-align: center;
}

@keyframes gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.text-box {
  margin-bottom: 40px;
}

h1 {
  font-size: 64px;
  letter-spacing: 2px;
  text-shadow: 0 0 25px rgba(120,100,255,0.5);
}

.text-box p {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0.75;
  text-transform: uppercase;
}

.image-link img {
  width: 200px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-link img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(120,100,255,0.6);
}
