.welcome-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-out;
}
.welcome-content {
  padding: 2rem;
  text-align: center;
}
.welcome-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 1rem;
}
.welcome-message {
  color: #4a5568;
  margin-bottom: 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  animation: typewriter 3s steps(40, end) 1s 1 normal both;
}
.welcome-quote {
  color: #4a5568;
  font-style: italic;
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
