@keyframes talka-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

@keyframes talka-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes talka-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-loading:first-child {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 9999;
}

.talka-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: talka-fade-in 0.4s ease-out;
}

.talka-loading .talka-logo img {
  width: 220px;
  height: auto;
  animation: talka-pulse 2s ease-in-out infinite;
}

.talka-loading .talka-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.talka-loading .talka-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  animation: talka-dot 1.4s ease-in-out infinite;
}

.talka-loading .talka-dots span:nth-child(1) {
  animation-delay: 0s;
}

.talka-loading .talka-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.talka-loading .talka-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
