body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #D1D5DB;
  overflow-x: hidden;
}

/* Starry background effect */
.starry-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  animation: twinkle 5s infinite ease-in-out;
}

/* Framer-like scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom button styles */
.cta-button {
  background-color: #fef200;
  color: #000000;
  font-weight: 700;
  border-radius: 9999px; /* fully rounded */
  padding: 1rem 2.5rem;
  display: inline-block;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(254, 242, 0, 0.2);
}

/* Responsive YouTube embed */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Snake SVG path animation */
.snake-path {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  animation: draw-snake 5s ease-in-out forwards;
}

@keyframes draw-snake {
  to {
      stroke-dashoffset: 0;
  }
}