ul.game-switcher {

    display: flex;
    width: 100%;
    list-style: none;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin: auto;
}

/**make the links look like game buttons*/
ul.game-switcher li {
    margin: 0;
    padding: 10px 20px;
    background: linear-gradient(180deg, #0073aa 0%, #005177 100%);
    border-radius: 8px;
    box-shadow: 0 2px 0 #004a6d, 0 4px 10px rgba(0, 0, 0, 0.08);
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

ul.game-switcher li a {
    text-decoration: none !important;
    color: #fff;
    font-weight: bold;
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 1.5;
}

ul.game-switcher li a:hover {
    background: linear-gradient(180deg, #005177 0%, #0073aa 100%);
    box-shadow: 0 2px 0 #004a6d, 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none !important;
}

/**selected game button makes it look very different*/
ul.game-switcher li.selected {
    background: linear-gradient(180deg, #00aaff 0%, #0077cc 100%);
    box-shadow: 0 2px 0 #006699, 0 4px 10px rgba(0, 0, 0, 0.15);
}
/**mobile view*/
@media (max-width: 600px) {
    ul.game-switcher {
        flex-direction: column;
        row-gap: 10px;
        margin-bottom: 100px; /* Adjust as needed for spacing */
    }
    
    ul.game-switcher li {
        width: 100%;
        text-align: center;
    }
}