<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#peacock {
    position: fixed;
    bottom: -10px;
    left: -150px;
    width: 150px;
    height: 150px;
    z-index: 999999;
}

.peacock-img {
    height: 100%;
}

.peacock-hidden-image {
    display: none;
}

@keyframes peacockMoveRight {
    from {
        left: -150px;
    }
    to {
        left: 100%;
        transform: translateX(-20px);
    }
}

@keyframes peacockMoveBottomRight {
    from {
        left: 100%;
        bottom: 0px;
    }
    to {
        left: calc(100% - 120px); /* Adjusted to nudge further right */
        bottom: 0px;
    }
}

.move-peacock {
    animation: peacockMoveRight 5s forwards;
}

.move-peacock-bottom-right {
    animation: peacockMoveBottomRight 2s forwards;
}

.peacock-final {
    position: relative;
    bottom: -10px;
    right: -20px !important;
}

.adopt-me-balloon {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffeb3b;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.peacock-final .adopt-me-balloon {
    display: block;
}

.peacock-final-frame {
    bottom: 10px;
    right: 0px;
    position: fixed;
}

.peacock-bowl {
    position: relative;
    bottom: 65px;
    right: 10px;
    width: 50px;
    cursor: pointer !important;
}

/* peacock-bowl hover, but only on fine pointer devices */
@media (pointer: fine) {
    #peacock-bowl-img:hover {
        transform: scale(1.1);
    }
}

.peacock-bowl img {
    width: 100%;
}

.peacock-bowl-active {
}

.peacock-eating {
    position: relative;
    bottom: -10px;
    right: 20px !important;
    z-index: 9999;
}

.peacock-rolling {
    height: 120px;
    bottom: -60px !important;
    right: 20px !important;
    position: relative;
}

.peacock-arrow {
    position: relative;
    z-index: 1000;
    bottom: -30;
}

.peacock-chrome {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 40px;
    background-color: rgba(0, 0, 0, .65) !important;
    -webkit-backdrop-filter: blur(3.3rem);
    backdrop-filter: blur(3.3rem) saturate(80%) brightness(70%);
    z-index: 999;
    overflow: hidden;
    display: none;
    
    /* animate upward from off screen */
    animation: peacockChromeUp 0.5s forwards;
}

@keyframes peacockChromeUp {
    from {
        bottom: -40px;
    }
    to {
        bottom: 0;
    }
}

/* only show peacock-chrome on mobile */
@media (min-width: 995px) {
    .peacock-chrome {
        display: none;
    }
}
</pre></body></html>