body {
    font-family: 'Zen Kurenaido', sans-serif;
    overflow-x: hidden;
    background-color: #f0f9ff;
    background-image: url('https://i.ibb.co/hrWCGj6/s633442057863328576-p5-i1-w498.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

#main-title {
    font-family: 'Cookie', cursive;
}

.fade-slide-up-initial {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

.animate-fade-slide-up {
    animation: fadeSlideUp 0.8s ease-out forwards;
}

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

.animate-pulse {
    animation: pulse 1.5s infinite ease-in-out;
}

.modal-content-animated {
    animation: scaleIn 0.3s ease-out forwards;
}

.animate-slide-out-down-fade-out {
    animation: slideOutDownFadeOut 0.5s ease-out forwards;
}
.animate-slide-in-up-fade-in {
    animation: slideInUpFadeIn 0.5s ease-out forwards;
}

#ingredients:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

