body {
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(-45deg, #e0d4f7, #dbeafe, #f3e8ff, #c7d2fe);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
  }

  @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 50;
    border-radius: 0.5rem;
  }

  .dropdown-content.show {
    display: block;
  }

  @keyframes pulse-slow {

    0%,
    100% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }
  }

  .animate-pulse-slow {
    background-size: 200% 200%;
    animation: pulse-slow 10s ease infinite;
  }

  .dark-mode {
    background-color: #1f2937;
    color: #e5e7eb;
  }

  #scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #6366f1;
    width: 0%;
    z-index: 9999;
    transition: width 0.2s;
  }

  .scroll-snap {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
  }

  .scroll-snap>section {
    scroll-snap-align: start;
  }

  .split-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .split-text span:nth-child(n) {
    animation-delay: calc(0.1s * var(--i));
  }

  .animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
  }

  .animate-bounce-once {
    animation: bounce 1s ease 1;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .glass-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .star {
    cursor: pointer;
    font-size: 4rem;
  }

  .star.active {
    color: #facc15;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  