/* Custom Slot Machine Tumbling Animation */
.tumble-track {
    animation: tumble 0.4s linear infinite;
}

@keyframes tumble {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.glow-safe { filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6)); }
.glow-banned { filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.6)); }

/* Custom Scrollbar for Autocomplete */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}
::-webkit-scrollbar-thumb {
    background: #4b5563; /* gray-600 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* gray-500 */
}