

/* Central Card Styling */
.welcome-lucky-number-component .welcome-card {
  max-width: 580px;
  width: 100%;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Typography Styling */
.welcome-lucky-number-component .welcome-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.welcome-lucky-number-component .text-green {
  color: #0d8a4f; /* Green color matching design */
}

.welcome-lucky-number-component .verified-text {
  font-size: 14px;
  color: #374151;
}

.welcome-lucky-number-component .sub-heading-text {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

/* Show Lucky Number Button */
.welcome-lucky-number-component .show-btn {
  background-color: #4361ee;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.welcome-lucky-number-component .show-btn:hover {
  background-color: #3a56d4;
  transform: translateY(-1px);
}

.welcome-lucky-number-component .show-btn:active {
  transform: translateY(0);
}

/* Revealed Number Styling */
.welcome-lucky-number-component .lucky-number-display {
  font-size: 64px;
  font-weight: 800;
  color: #3b82f6; /* Bold blue digits matching design */
  letter-spacing: 2px;
  line-height: 1;
}

.welcome-lucky-number-component .come-back-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* GIF Section below card */
.welcome-lucky-number-component .gif-container {
  max-width: 280px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.welcome-lucky-number-component .anime-gif {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Subtle Fade-in Animation on Reveal */
.welcome-lucky-number-component .animate-fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}