body {
    background-color: #FFF9F4;
    color: #2E2229;
}

.meta-pixel-noscript {
    display: none;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 15px -3px rgba(228, 123, 76, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 20px 25px -5px rgba(228, 123, 76, 0.6);
    }
}

.animate-cta {
    animation: gentle-pulse 3s infinite ease-in-out;
}

@keyframes slide-in {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-popup {
    animation: slide-in 0.5s ease-out forwards;
}
