
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.text-glow {
    text-shadow: 0 0 15px rgba(234, 88, 12, 0.4);
}

body {
    scroll-behavior: smooth;
}

#ai-result li span {
    color: #ea580c;
    font-weight: bold;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 4px;
}
