body {
  font-family: "Inter", sans-serif;
  background-color: #1a202c;
  /* Dark background similar to screenshot */
  scroll-behavior: smooth;
}

/* Custom scrollbar for better aesthetics, optional but good for smooth feel */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2d3748;
}

::-webkit-scrollbar-thumb {
  background: #fdc700;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e0b000;
}

/* Initial state for elements that will animate in */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  /* Start slightly below its final position */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* Smooth transition */
  transition-delay: 0.1s;
  /* Slight delay for staggered effect */
}

/* Final state when element is in view */
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shadow-drop-center {
  -webkit-animation: shadow-drop-center 0.4s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: shadow-drop-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes shadow-drop-center {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-center {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
