:root {
  --text-color: #ffffff;
  --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  background-color: #0d0d12;
}

.new__bg {
  height: 100vh;
  width: 100vw;
  background-image: 
    radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%), 
    radial-gradient(at 0% 50%, hsla(264,100%,15%,1) 0, transparent 50%), 
    radial-gradient(at 100% 50%, hsla(280,100%,25%,1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(264,100%,10%,1) 0, transparent 50%), 
    radial-gradient(at 50% 100%, hsla(264,100%,15%,1) 0, transparent 50%), 
    radial-gradient(at 100% 100%, hsla(264,100%,10%,1) 0, transparent 50%);
  background-blend-mode: soft-light;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.new__bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.35), transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(0, 50, 255, 0.25), transparent 50%);
  filter: blur(60px);
  z-index: 1;
}

.animation-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.lottie-container {
  width: 800px;
  max-width: 95vw;
  height: 600px;
  max-height: 70vh;
  margin: 0 auto;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s var(--animation-easing), filter 1s var(--animation-easing);
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

.lottie-container.fade-out {
  opacity: 0;
  filter: blur(50px);
}

/* 
   INSTANT VISIBILITY STROKE: 
   Aggressive override to ensure original Lottie strokes are visible 
*/
#lottie-hello svg path,
#lottie-hello svg circle,
#lottie-hello svg g {
  stroke: #ffffff !important;
  stroke-width: 6 !important; 
  stroke-opacity: 1 !important;
  fill: none !important;
}

.cta-container {
  position: absolute;
  bottom: 12%; 
  left: 50%;
  transform: translateX(-50%);
  
  /* Fail-safe visibility: Button is visible by default */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;

  /* Smooth entrance animation via CSS */
  animation: fadeInCta 1.5s var(--animation-easing) forwards;
}

@keyframes fadeInCta {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.get-started-prompt {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-color);
  transition: opacity 0.3s ease;
}

.prompt-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.prompt-text {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .lottie-container {
    width: 450px;
    height: 450px;
  }
}