
#santa-toy {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    font-size: 40px;
    cursor: pointer;
    animation: jump 1.5s infinite;
}

@keyframes jump {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

#santa-msg {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: #ffffff;
    color: #000000;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    display: none;
    z-index: 999999;
}
