      body {
        font-family: 'Cairo', sans-serif;
      }

      .header-overlay {
  background-color: rgba(44, 44, 60, 0.3); /* أخف شفافية */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* دعم سفاري */
}

.background-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1e1e2f 0%, #111827 100%);
    overflow: hidden;
    z-index: -1;
  }

  .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffff;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 12s linear infinite;
  }

  @keyframes float {
    0% {
      transform: translateY(100vh) scale(1);
      opacity: 0;
    }
    50% {
      opacity: 0.3;
    }
    100% {
      transform: translateY(-10vh) scale(0.5);
      opacity: 0;
    }
  }


      

      .discord-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  background-color: #2f2f3f;
  border-radius: 8px;
  padding: 12px;
}

.discord-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.discord-content {
  flex: 1;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.discord-author {
  font-weight: 600;
  color: #ffff;
  margin-right: 8px;
}

.discord-timestamp {
  color: #888;
  font-size: 12px;
}

.discord-text img {
  display: inline;
  vertical-align: middle;
  margin: 0 2px;
  height: 20px;
}

/* أساسي لتخصيص شكل السكروول */

#updates-moon {
  background: linear-gradient(135deg, #1e1e2f 0%, #27313a 100%);
  box-shadow: inset 0 0 10px #7aa4be;
  max-height: 400px; /* أو 60vh مثلاً */
  overflow-y: auto;
  scrollbar-width: thin; /* فايرفوكس */
  scrollbar-color: #ffff transparent; /* لون مقبض السكروول والخلفية */
}

/* لمتصفحات كروم، إيدج، وأوبرا */
#updates-moon::-webkit-scrollbar {
  width: 8px;
}
#updates-moon::-webkit-scrollbar-track {
  background: transparent;
}
#updates-moon::-webkit-scrollbar-thumb {
  background-color: #ffff;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background-color 0.3s ease;
}
#updates-moon::-webkit-scrollbar-thumb:hover {
  background-color: #7aa4be;
}

#updates-moon {
  background: linear-gradient(135deg, #1e1e2f 0%, #27313a 100%);
  box-shadow: inset 0 0 10px #7aa4be;
}




/* أساسي لتخصيص شكل السكروول */

#updates-server {
  background: linear-gradient(135deg, #1e1e2f 0%, #27313a 100%);
  box-shadow: inset 0 0 10px #7aa4be;
  max-height: 400px; /* أو 60vh مثلاً */
  overflow-y: auto;
  scrollbar-width: thin; /* فايرفوكس */
  scrollbar-color: #ffff transparent; /* لون مقبض السكروول والخلفية */
}

/* لمتصفحات كروم، إيدج، وأوبرا */
#updates-server::-webkit-scrollbar {
  width: 8px;
}
#updates-server::-webkit-scrollbar-track {
  background: transparent;
}
#updates-server::-webkit-scrollbar-thumb {
  background-color: #ffff;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background-color 0.3s ease;
}
#updates-server::-webkit-scrollbar-thumb:hover {
  background-color: #7aa4be;
}


@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  animation: gradient-move 3s ease infinite;
}


/* فقاعات احتفالية */
@keyframes floatCrown {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(10px, -10px) rotate(10deg) scale(1.05);
  }
  50% {
    transform: translate(0, -20px) rotate(0deg) scale(1.1);
  }
  75% {
    transform: translate(-10px, -10px) rotate(-10deg) scale(1.05);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

#moving-crown {
  animation: floatCrown 6s ease-in-out infinite;
}


@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content.animate {
  animation: fadeSlideIn 0.5s ease forwards;
}



  #progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #2c2c3c;
  z-index: 9999;
}

#progress-bar {
  height: 100%;
  width: 0;
  background-color: #7aa4be;
  transition: width 0.2s ease-out;
}

.cursor-pointer {
  cursor: pointer;
}


.card {
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .card h2 {
      margin-bottom: 20px;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
    }

    iframe {
      border: none;
      border-radius: 10px;
      width: 350px;
      height: 500px;
    }






  