#gameMenu {
    flex: 1 1 auto !important;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed !important;
    border: 3px solid #ccc;
    border-radius: 0.25cm;
    z-index: 10001 !important;
    top: 0;
    left: 0;
    margin: 20px;
    margin-top: 95px;
    padding: 10px;
    background: whitesmoke;
    width: 96.5%;
    box-sizing: border-box;
    box-shadow: inset 0 0 14.5px rgba(0, 0, 0, 0.45);
    transition: all 0.65s;
    gap: 8px;
}

@keyframes dropGameMenu {
    0% { transform: translateY(-500px) scale(0.5); }
    25% { transform: translateY(50px) scale(0.45); height: 100px; }
    50% { transform: translateY(25px) scale(0.6); height: 60px; }
    75% { transform: translateY(-50px) scale(0.785); height: 200px; }
    100% { transform: translateY(0) scale(1); height: 400px; }
}

#gameMenu.dropDownGameMenu {
    animation: dropGameMenu 0.65s linear !important;
}

.game-menu-hotbar {
    display: flex;
    flex-direction: row;
    position: relative !important;
    padding: 3.5px;
    padding-inline: 6.5px;
    border: 2px solid #ccc;
    border-radius: 15px;
    max-height: 43.75px;
    width: 50%;
    background: #0586e3;
    gap: 8px;
}

#closeGameMenuButton {
    cursor: pointer !important;
    position: relative;
    border: 3px solid darkred !important;
    border-radius: 1cm;
    padding: 10px 14px !important;
    background: red !important;
    color: white !important;
    font-weight: bold;
}

#gameContainerDisplay {
    position: relative !important;
    border: 3px solid #ccc;
    border-radius: 15px;
    background: #80b5db;
    opacity: 0.85;
    padding: 10px !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 0 14.5px rgba(0, 0, 0, 0.45), 0 0 10px rgba(0, 0, 0, 0.275);
}

#chromeClickerGame {
    display: flex;
    flex-direction: column;
    justify-self: start;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;
    position: relative;
    border: 3px solid #ccc;
    border-radius: 15px;
    padding: 10px !important;
    background: #56a9e4;
    opacity: 0.85;
    box-shadow: inset 0 0 14.5px rgba(0, 0, 0, 0.45), 0 0 10px rgba(0, 0, 0, 0.275);
}

.game-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
}

.game-description {
    font-size: 1.25em;
    font-weight: bold;
    color: #000;
}

#tryButtonGame {
    cursor: pointer !important;
    position: relative;
    border: 3px solid #ccc;
    border-radius: 15px;
    padding: 10px !important;
    background: #80b5db;
    opacity: 0.85;
    box-shadow: inset 0 0 14.5px rgba(0, 0, 0, 0.45), 0 0 10px rgba(0, 0, 0, 0.275);
    transition: all 0.35s ease;
}

#tryButtonGame:hover {
    background: #0586e3;
}
