:root {
  --primary-green: #0f9d58;
  --dark-bg: #000;
}
body {
  background-color: var(--dark-bg);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
a {
  color: var(--primary-green);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.btn-custom {
  background-color: var(--primary-green);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.btn-custom:hover {
  background-color: #0c6f3f;
}
html.smooth-scroll {
  scroll-behavior: smooth;
}
.glow {
  color: var(--primary-green);
  text-shadow:
    0 0 5px var(--primary-green),
    0 0 10px var(--primary-green),
    0 0 20px var(--primary-green);
  animation: pulse 2s infinite;
}
@media (max-width: 767px) {
  .glow {
    text-shadow: none;
    animation: none;
  }
}
@keyframes pulse {
  0%,100% {
    text-shadow:
      0 0 5px var(--primary-green),
      0 0 10px var(--primary-green),
      0 0 20px var(--primary-green);
  }
  50% {
    text-shadow:
      0 0 10px var(--primary-green),
      0 0 20px var(--primary-green),
      0 0 30px var(--primary-green);
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 10;
  animation: fadeInIndicator 1s ease-out forwards, bob 2s ease-in-out infinite 1s;
}
@keyframes fadeInIndicator {
  to {
    opacity: 0.5;
  }
}
@keyframes bob {
  0%,100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.hide {
  animation: fadeOutIndicator 0.5s ease-out forwards;
}
@keyframes fadeOutIndicator {
  to {
    opacity: 0;
  }
}
