
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent; /* خلفية شفافة */
}

.loader {
  font-family: 'Condiment', cursive;
  font-size: 64px;
  color: #4a5568; /* رمادي هادي */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.text-container {
  display: flex;
  gap: 15px;
}

.word {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

.word:nth-child(1) {
  animation-delay: 0s;
  color: #2b6cb0; /* أزرق فاتح */
}
.word:nth-child(2) {
  animation-delay: 1s;
  color: #4a5568; /* تركواز هادي */
}
.word:nth-child(3) {
  animation-delay: 2s;
  color: #2f855a; /* أخضر غامق مريح */
}

.dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #4a5568;
  border-radius: 50%;
  opacity: 0.3;
  animation: dotPulse 1.5s infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
.dot:nth-child(4) { animation-delay: 0.9s; }
.dot:nth-child(5) { animation-delay: 1.2s; }

@keyframes fadeInUp {
  0% {
	opacity: 0;
	transform: translateY(20px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

@keyframes dotPulse {
  0%, 80%, 100% {
	opacity: 0.3;
	transform: scale(1);
  }
  40% {
	opacity: 1;
	transform: scale(1.2);
  }
}