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

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0f1923;
}

::-webkit-scrollbar-thumb {
    background: #1f2933;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4655;
}

/* Input focus glow */
input:focus {
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.1);
}

.bg-dark {
    background-color: #0f1923;
}

.bg-dark-light {
    background-color: #1f2933;
}
