/* ... existing css ... */

.fureai-corner {
    width: 100%;
    margin-top: 100px;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.corner-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-family: 'Shippori Mincho', serif;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.plush-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#yajuju-plush {
    width: 300px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

#yajuju-plush:active {
    transform: scale(0.9) rotate(-5deg);
}

#yajuju-plush:hover {
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
}

.instruction-text {
    font-size: 1rem;
    color: #888;
    letter-spacing: 0.1em;
}

/* Add a bouncy animation class for when requested */
.bounce {
    animation: bounce-anim 0.5s;
}

@keyframes bounce-anim {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}