/* Minimal custom CSS for animations and interactive effects */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Ensure buttons can contain ripples */
button, a[class*="button"] {
  position: relative;
  overflow: hidden;
}

.green {
  color: #56d86a;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

/* Custom animations for ripple effect */
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
