html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    overflow: hidden;
    display: block; /* Removed flex from body to prevent squishing */
}

#santa-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    transition: filter 0.3s ease;
}

#santa-container.glow {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

#santa-sprite {
    /* This forces Santa to be big regardless of the button's presence */
    height: 95vh;
    width: auto;
    max-width: 95vw;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
}

#milk-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.1s;
}

#milk-button:active {
    transform: scale(0.9);
}

.flying-item {
    position: fixed;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.5, 0, 0.7, 0.2);
    pointer-events: none;
}