/* ================================================== GAME OVER */

#gameover {
    width: 100vw;
    height: 100vh;
    background: var(--black);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    overflow: hidden;
}

#gameover.active {
    display: flex;
    z-index: 200;
}


#gameover video {
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    height: 100%;
    min-height: 56.25vw; /* 100 * 9 / 16 */
    position: absolute;
    top: 50%; left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

#gameover:not(.secret) #gameover-secret-clip {z-index: 0}
#gameover .secret #gameover-secret-clip {z-index: 2}

#gameover .content {
    text-align: center;
    line-height: 2;
    position: relative;
    z-index: 5;
}

#gameover .content h2 {
    margin-bottom: 30px;
    font-size: 70px;
    text-transform: uppercase;
}

#gameover .content p {
    font-size: 22px;
}

#gameover.active .content {animation: show-game-over 3s}

@keyframes show-game-over {
    0% {opacity: 0}
    90% {opacity: 0}
    100% {opacity: 1}
}