.velocity-scroll-section {
  height: 100px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.velocity-text-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.velocity-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background-image: linear-gradient(to right, #3E8042, #8CF557, #3E8042, #8CF557, #3E8042);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  will-change: transform;
  padding: 0 50px;
  animation: gradientAnimation 8s linear infinite;
  filter: drop-shadow(0 0 15px rgba(62, 128, 66, 0.4)) drop-shadow(0 0 25px rgba(140, 245, 87, 0.3));
}

@media (max-width: 768px) {
  .velocity-scroll-section {
    height: 70px;
  }
  
  .velocity-text {
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .velocity-scroll-section {
    height: 60px;
  }
  
  .velocity-text {
    font-size: 1.5rem;
  }
}
