/* --- APP CUSTOM STYLING CONFIGURATION --- */

/* Slow float animation for the sticker badge */
@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0) rotate(-12deg);
    }
    50% {
        transform: translateY(-8px) rotate(-8deg);
    }
}

.animate-bounce-slow {
    animation: bounceSlow 4s ease-in-out infinite;
}

/* Scroll header shadow trigger */
.header-scrolled {
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    background-color: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}