/* Custom styling for Mih Fallaci Linktree static-site */

/* Hide scrollbars for Webkit engines */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbars for Firefox, IE, Edge */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Soft focus visual enhancements */
button:focus-visible {
  outline: 2px solid #0069F3;
  outline-offset: 4px;
}

/* Pulse animation adjustments */
@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }
}

.benefit-pulse {
  animation: softPulse 2s ease-in-out infinite;
}
