/* Griglia geometrica di sfondo */
.qt-bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(226, 232, 240, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
}

/* Animazioni blob sfocati */
@keyframes blob-bounce {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10px, -20px) scale(1.05);
    }
}

.animate-blob-slow {
    animation: blob-bounce 10s infinite ease-in-out;
}

.delay-2000 {
    animation-delay: 2s;
}
