#gameOverPopup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    background-color: var(--background-color, white);
    background-image: var(--background-image, none);
    border: 3px solid black;
    padding: 30px 30px 24px 30px;
    text-align: center;
    z-index: 500;
    display: none;
    width: 300px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#gameOverPopup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#gameOverPopup img {
    display: block;
    margin: 0 auto 12px auto;
    width: 96px;
    height: 96px;
}

#gameOverPopup h2 {
    margin: 0;
    font-size: 28px;
}

#gameOverPopup p {
    margin: 10px 0 20px;
    font-size: 18px;
}