body{
    background-color: #0D1117;
    color: #EDEDED;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    margin: 0 0;
}
a{
    color: #EDEDED;
    text-decoration: none;
}

/* Preloader خلفية */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0D1117;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* Loader الأساسي */
  .loader {
    position: relative;
    width: 100px;
    height: 100px;
    animation: rotate 1s linear infinite;
  }
  
  /* الدوائر */
  .dot {
    width: 20px;
    height: 20px;
    background: #00ADB5;
    border-radius: 50%;
    position: absolute;
    top: 40px; /* منتصف الدايرة */
    left: 40px;
    transform-origin: 10px 10px;
  }
  
  /* كل نقطة بزوايا مختلفة */
  .dot1 { transform: rotate(0deg) translateX(30px); }
  .dot2 { transform: rotate(120deg) translateX(30px); }
  .dot3 { transform: rotate(240deg) translateX(30px); }
  
  /* حركة الدوران */
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
