/* Custom Animations */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(217, 70, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Custom Styles */
.price-up {
    @apply text-green-400;
}

.price-down {
    @apply text-red-400;
}

.stock-card {
    transition: all 0.3s ease;
}

.stock-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.pulse-button {
    animation: pulse-glow 2s infinite;
}