/* Custom styles */
@keyframes berry-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.berry-bounce {
    animation: berry-bounce 2s infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #6B46C1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #553C9A;
}

/* Berry-themed selection */
::selection {
    background: #6B46C1;
    color: white;
}

/* Hover effects for interactive elements */
.berry-hover:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Pulse animation for status indicator */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}