/* خلفية داكنة وخلفية نجوم متحركة مع تمرير شغال */
body {
  margin: 0;
  padding: 0;
  background: #000; /* لون أسود للخلفية الأساسية */
  font-family: 'Segoe UI', sans-serif;
  color: white;
  scroll-behavior: smooth;
}

/* النجوم المتحركة */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
  animation: moveStars 60s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* حركة النجوم */
@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: 10000px 5000px; }
}

///*------------- تحريك النصوص -----------*///




.animate__heartBeat {
      white-space: nowrap;
  display: inline-block;
  position: relative;
  animation: floatSlight 4s infinite ease-in-out;
}





///*------------- مسافة البنر -----------*///