.lucy-audio-welcome {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}
.lucy-audio-btn {
    background-color: #006838;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}
.lucy-audio-btn:hover {
    background-color: #004d29;
}
#lucy-leaf-container-cfc9699f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}
.lucy-leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2362b246"><path d="M12 2C12 2 4 6 4 14c0 3.3 2.7 6 6 6 1.8 0 3.4-.8 4.5-2 .2.2.4.4.6.6l1.4-1.4c-.2-.2-.4-.4-.6-.6 2.3-2.3 2.1-7.7 2.1-7.7s-1-4.9-6-6.9z"/></svg>');
    background-size: cover;
    animation: leafFall 3s linear forwards;
}
@keyframes leafFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100px) rotate(90deg); opacity: 0; }
}
