/* ============ Clippy ============ */
.clippy-container {
    position: fixed;
    top: 45%;
    left: 45%;
    width: 124px;
    height: 93px;
    z-index: 400;
}

.clippy-pet {
    width: 124px;
    height: 93px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    cursor: grab;
    image-rendering: pixelated;
}

.clippy-pet:active {
    cursor: grabbing;
}

.clippy-speech-bubble {
    position: absolute;
    bottom: 90px;
    left: 51%;
    transform: translateX(-50%);
    width: 240px;
    padding: 10px;
    background-color: #ffffcc;
    border: 1px solid #000;
    border-radius: 6px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-family: "Pixelated MS Sans Serif", Tahoma, sans-serif;
    font-size: 12px;
    z-index: 10;
    visibility: hidden;
    text-align: left;
}

.clippy-speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #000;
}

#clippy-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

#clippy-menu button {
    font-size: 11px;
    padding: 3px 6px;
    text-align: left;
}

@media screen and (max-width: 480px) {
    .clippy-container {
        left: 50%;
        transform: translateX(-50%);
    }
}
