.gamification-loading-screen {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loading-image {
  max-width: 200px;
  border-radius: 10px;
}

.progress-container {
  width: 300px;
  overflow: hidden;
  background: #eaeaea;
  border: 8px solid #fff;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  width: 0;
  height: 30px;
  background-color: #4caf50;
  border-radius: 4px;
  border-radius: 20px;
}

.loading-text,
.progress-value {
  font-size: 16px;
  font-family: sans-serif;
  font-weight: bold;
  color: #333;
}

@media (max-width: 560px) {
  .loading-image {
    max-width: 170px;
  }
}
