/* Christmas Snow Effect */
.snowflake {
    position: fixed;
    top: -20px;
    z-index: 9999;
    user-select: none;
    pointer-events: none;
    color: #D4AF37;
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(105vh) rotate(360deg); opacity: 0; }
}

/* Christmas Tree Widget */
.christmas-tree-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    background: rgba(255, 255, 255, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid #d42426;
}

.christmas-tree-widget:hover {
    transform: scale(1.1) rotate(5deg);
}

.christmas-tree-icon {
    font-size: 2.5rem;
    line-height: 1;
    display: block;
}

.christmas-message {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 250px;
    display: none;
    border-left: 5px solid #d42426;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.christmas-message.show {
    display: block;
}

.christmas-message h4 {
    color: #d42426;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.christmas-message p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .christmas-tree-widget {
        bottom: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
    }
    
    .christmas-tree-icon {
        font-size: 2rem;
    }
    
    .christmas-message {
        bottom: 70px;
        left: 10px;
        max-width: 220px;
    }
}
