.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #D3D3D3;
  color: #333;
  font-family: Arial, sans-serif;
}

.loading-animation {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333;
  animation: spin 1s ease-in-out infinite;
}

.pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #333;
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s ease-in-out infinite;
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  max-width: 300px;
  color: #333;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.3; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { opacity: 0; }
}