/* CUSTOM STYLES & INTERACTIVE GLOW EFFECTS FOR WAMR EXPORT WEBSITE */

/* Background Grid Pattern */
#grid-pattern-bg {
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
}

/* Custom modern scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #ccd3e5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e293b;
}

/* Base resets & behavior styles */
html {
    scroll-behavior: smooth;
}

/* Keyframes for soft fade in transitions */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom dark messenger bubble shadows */
.bg-neutral-850 {
    background-color: #1f2022;
}
.bg-neutral-900\/60 {
    background-color: rgba(23, 23, 23, 0.6);
}

.border-neutral-855 {
    border-color: rgba(16, 185, 129, 0.2);
}
