body {
   font-family: 'Inter', sans-serif;
}
.kg-width-wide img {
  max-width: 85vw;
}
.kg-width-full img {
  max-width: 100vw;
}
.salt-green {
   background-color: #00D9B1;
}
.salt-green-text {
   color: #00D9B1;
}
.salt-green-border {
   border-color: #00D9B1;
}
.salt-dark {
   background-color: #1a1a1a;
}
.hover\:salt-green-darker:hover {
   background-color: #00b894;
}
.copy-feedback {
   transition: opacity 0.3s ease, transform 0.3s ease;
}
.animate-pulse-slow {
   animation: pulse 2.5s infinite;
}
@keyframes pulse {
   0%, 100% {
         transform: scale(1);
   }
   50% {
         transform: scale(1.03);
   }
}
#countdown .highlight-countdown {
   color: #1f2937;
   font-weight: 600;
   background-color: #d1fae5;
   padding: 2px 6px;
   border-radius: 6px;
   display: inline-block;
   margin: 0 2px;
}