@keyframes miravibe-pulse {
    0%, 100% { height: 12px; opacity: 0.6; }
    50% { height: 48px; opacity: 1; box-shadow: 0 0 15px rgba(253, 201, 21, 0.4); }
}

.visualizer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    margin-bottom: 2rem;
}

.bar {
    width: 8px;
    background-color: #fdc915; /* Miravibe Yellow  */
    border-radius: 20px;
    animation: miravibe-pulse 0.7s infinite ease-in-out;
}

/* Staggered for a natural rhythm */
.bar:nth-child(1), .bar:nth-child(7) { animation-delay: 0.0s; }
.bar:nth-child(2), .bar:nth-child(6) { animation-delay: 0.2s; }
.bar:nth-child(3), .bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }