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

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

.custom-scroll::-webkit-scrollbar {
    width: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(188, 19, 254, 0.5);
    border-radius: 4px;
}

/* Modal animations */
.opacity-100 {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Spin animation for the canvas */
.spinning {
    transition: transform 5s cubic-bezier(0.25, 0.1, 0.15, 1);
}
