.hud-menu {
    position: absolute;
    top: -55px;
    left: 150px;
    width: 312px;
    height: 600px;
    z-index: 100;
    display: grid;
    grid-template-rows: 2fr 1.8fr;
    gap: 8px;
    padding: 6px 6px;
}

.global-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.menu-buttons-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.menu-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    width: 100%;
    color: white;
    cursor: pointer;
    background-color: rgb(17, 85, 204);
    transition: background-color 0.2s;
}

.menu-button:hover {
    background-color: rgb(20, 56, 162);
}

.menu-image {
    width: 100%;
    height: 100%;
}

.menu-image,
.menu-button,
.hud-menu,
.post-game-stats,
.nickname-div {
    border-radius: 10px;
}

.post-game-stats {
    background-color: rgb(17, 85, 204);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


.image-score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.menu-stats-img {
    width: 100px;
    height: 100px;
}

.menu-score {
    display: flex;
    align-items: center;
    color: white;
    font-size: 2rem;
}

.menu-sign-in-button {
    display: none;
}

.player-account-button {
    display: none;
}

.account-avatar {
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.account-three-dots-icon,
.account-avatar,
.menu-back-arrow-icon {
    height: 40px;
    width: 40px;
}

.account-button-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.menu-back-button {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: rgb(17, 85, 204);
    border: none;
    cursor: pointer;
}