
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

#useless-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 3px 3px 0px #000000;
    font-size: 1.5rem;
}

#useless-button:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px #000000;
}

#click-counter {
    font-size: 1.2rem;
    font-weight: 600;
}

#useless-button.clicked {
    animation: click-animation 0.2s ease-in-out;
}

@keyframes click-animation {
    0% {
        transform: translateY(-3px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(0.95);
    }
    100% {
        transform: translateY(-3px) scale(1);
    }
}
