/*
 *  Tian Workshop - Secret Garden Styles
 *  Extends style.css
 */

.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffff00;
    animation: fly 10s infinite linear;
    pointer-events: none;
    opacity: 0;
}

@keyframes fly {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
}

/* Lily Bloom Animation */
.lily {
    font-size: 8rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    animation: breathe 3s infinite ease-in-out;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lily:hover {
    transform: scale(1.1);
}
