@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

body {
    scroll-behavior: smooth;
}

.waveform {
    background: linear-gradient(90deg, #7c3aed 0%, #f43f5e 100%);
    height: 60px;
}

.glow {
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}