body {
  margin: 0;
  background: linear-gradient(135deg, #fffbe6, #ffe082);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}

.splash-container {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.mango-logo {
  width: 120px;
  height: 120px;
  animation: grow 2s ease-in-out;
}

.slogan {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ff8f00;
}

@keyframes grow {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
