/* Did the filename give it away? */

/* First 5 people to see this dm me personally (ig @michaelgill_878912) and I'll send you some stickers. */
/* Free ofc. I feel creepy asking for addresses so only do that if you see this and want stickers. */
/* Also if you can still message me if you find this and dont want stickers and I won't decrease the count */

/* And tell ya what. First person to find this gets a shirt. */

.heart-easter-egg {
    position: absolute;
    bottom: 20px;
    right: 25px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.heart {
    font-size: 1.4rem;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.heart:hover {
    opacity: 1;
    transform: scale(1.2);
}

.heart-message {
    position: absolute;
    bottom: 120%;
    right: 0;
    background: rgba(20, 20, 20, 0.9);
    color: #e11d48;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.heart-easter-egg:hover .heart-message {
    opacity: 1;
    transform: translateY(0);
}