/* Aktawifi.com — micro-overrides en plus de Tailwind CDN */

html { scroll-behavior: smooth; }

::selection { background: rgba(13, 148, 136, 0.2); }

/* Animation pulse plus douce que Tailwind */
@keyframes ak-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.animate-pulse {
    animation: ak-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
