/* Santa Hat Animation */
.santa-hat-decoration {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.santa-hat-decoration:hover {
    transform: scale(1.2) rotate(15deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .santa-hat-decoration {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .santa-hat-decoration {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}
