/* 1. The Welcome Banner Container */
.rocket-welcome-banner {
  background-color: #1A1A1A; /* Solid Black */
  border: 3px dashed #D4AF37; /* Golden dashed line */
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* Deep shadow to pop off the page */
}

/* 2. The Greeting Text (with Glitter Animation) */
.rocket-welcome-banner h2 {
  color: #D4AF37; /* Base Gold */
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px; /* Large, fully visible font */
  font-weight: 800;
  letter-spacing: 1px;
  animation: goldGlitter 3s infinite alternate ease-in-out; /* Triggers the effect */
}

/* 3. The Sub-text */
.rocket-welcome-banner p {
  color: #FFFFFF; /* Pure White */
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
}

/* 4. The Glitter Fading Effect Keyframes */
@keyframes goldGlitter {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4), 0 0 10px rgba(212, 175, 55, 0.2);
    opacity: 0.85;
  }
  50% {
    /* Brightens to a lighter gold/white glow at the peak */
    text-shadow: 0 0 10px rgba(255, 223, 115, 0.8), 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
    opacity: 1;
    color: #FFDF73; /* Slightly brighter gold at peak */
  }
  100% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4), 0 0 10px rgba(212, 175, 55, 0.2);
    opacity: 0.85;
  }
}