#garden {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}
.tulip {
    position: absolute;
    bottom: -32px;
    transform-origin: bottom center;
    animation: rise 6s ease-out forwards, sway 4s ease-in-out infinite;
    opacity: 0;
}
.tulip svg {
    width: 100%;
    height: auto;
    display: block;
}
@keyframes rise {
    from {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(-110vh) scale(1);
        opacity: 1;
    }
}
@keyframes sway {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(3deg); }
    50%  { transform: rotate(-4deg); }
    75%  { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}
#secretMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    font-size: 2.5rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.95);
    color: #444;
    padding: 24px 36px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: -1;
    text-align:center;
}
#secretMessage.show {
    opacity: 1;
    z-index: 10000;
    transition: all 1s ease;
    transform: translate(-50%, -50%) scale(1);
}
#secretMessage small {font-size:.875rem;display:block}
.tulip.fade-out {animation: fadeOut 1.5s ease forwards;}
@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@media screen and (max-width:768px){
    #secretMessage {font-size: 1.125rem;width:calc(100vw - 2rem)}
}