.welcome-page {
  text-align: center;
  padding-top: 40px;
}

.welcome-rocket-container {
  position: relative;
  height: 200px;
  margin-bottom: 20px;
}

.welcome-rocket {
  font-size: 5rem;
  display: inline-block;
  filter: drop-shadow(0 0 20px var(--cyan-glow));
}

.welcome-rocket.launching {
  animation: rocketLaunch 2s ease-in forwards;
}

.welcome-rocket.bobbing {
  animation: float 3s ease-in-out infinite;
}

.welcome-exhaust {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), var(--gold), transparent);
  border-radius: 0 0 50% 50%;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(3px);
}

.welcome-exhaust.active {
  opacity: 1;
  animation: pulse 0.2s ease-in-out infinite;
}

.welcome-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 8px;
  min-height: 1.2em;
}

.welcome-title .char {
  display: inline-block;
  opacity: 0;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(0, 229, 255, 0.2);
  animation: fadeIn 0.1s ease forwards;
}

.welcome-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--white-dim);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.5s;
}

.welcome-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.welcome-card {
  padding: 28px 20px;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  transition: all var(--transition-med);
}

.welcome-card:hover {
  border-color: var(--cyan);
}

.welcome-card-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.welcome-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cyan);
  margin-bottom: 8px;
}

.welcome-card-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .welcome-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .welcome-rocket-container {
    height: 150px;
  }

  .welcome-rocket {
    font-size: 3.5rem;
  }
}
