/* KenoBsiDesktopLobby Styles */
#KenoApp {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#KenoApp *,
#KenoApp *::before,
#KenoApp *::after {
    box-sizing: inherit;
}

#KenoApp .MainContainer {
    width: 100%;
}

#KenoApp .kenoBSI_contain {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 0;
}

#KenoApp .gamelist {
    width: 100%;
    display: flex;
    color: #fff;
    align-items: stretch;
    justify-content: center;
    padding-left: 20px;
    list-style: none;
    margin: 0;
}

#KenoApp .gamelist li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 38px;
    position: relative;
    width: 100%;
}

#KenoApp .gamelist .newgametag {
    position: absolute;
    top: 40px;
    left: 46px;
    background-color: #ffd700;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

#KenoApp .gamelist img {
    padding-bottom: 4px;
}

#KenoApp .gamelist .display-game-name {
    font-size: 28px;
    font-style: italic;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

#KenoApp .gamelist h1 {
    font-size: 14px;
    padding-bottom: 12px;
    margin: 0;
    line-height: 1.2em;
    text-align: center;
}

#KenoApp .gamelist .btn {
    font-size: 18px;
    text-align: center;
    padding: 8px 40px;
    border-radius: 12px;
    box-shadow: 0px 1px 7px 1px rgba(11, 5, 65, 0.7);
    font-style: italic;
    font-weight: bold;
    cursor: pointer;
    line-height: 24px;
    transition: background-color 0.2s ease;
    color: #fff;
}

#KenoApp .gamelist .btn.keno {
    background-color: #2c71e4;
}

#KenoApp .gamelist .btn.keno:hover {
    background-color: #548be6;
}

#KenoApp .gamelist .btn.atom {
    background-color: #c11a41;
}

#KenoApp .gamelist .btn.atom:hover {
    background-color: #dc2b59;
}

#KenoApp .gamelist .btn.rng {
    background-color: #f69710;
}

#KenoApp .gamelist .btn.rng:hover {
    background-color: #f4aa42;
}

#KenoApp .gamelist .btn.number {
    background-color: #3a9de3;
}

#KenoApp .gamelist .btn.number:hover {
    background-color: #54acea;
}

