.gameBan {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 6px;
    max-width: 97%;
    height: 130px;
    margin: 0 auto;
    animation-name: portal;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    background-image: url('../img/regal-reels.jpg');
}

.gi100 {
    width:100%;
}

.gamePg video {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 10px auto 40px;
    border-radius: 6px;
}

.gamePg h1 {
    font-size: 37px;
    line-height: 40px;
}

.gamePg h2 {
    color: #979797;
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 20px;
}

    .gamePg h2:first-of-type {
        margin-top:10px;
        margin-bottom: 0px;
    }

.giWrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
}

.gameInfo {
    margin: 5px;
    flex-grow: 1;
    text-align: left;
}

.gameBlk01 {
    background-color: rgb(43 42 42 / 30%);
    padding: 5px 10px;
    border-radius: 8px 8px 0 0;
}

.gameBlk02 {
    background-color: rgb(41 41 41 / 50%);
    padding: 5px 10px;
    border-radius: 0 0 8px 8px;
}

    .gameBlk02 ul {
        display: block;
        list-style-type: decimal;
        margin-block-start: 0px;
        margin-block-end: 5px;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 25px;
    }

        .gameBlk02 ul ul {
            list-style-type: disc;
            margin-block-start: 10px;
            padding-inline-start: 25px;
        }

            .gameBlk02 ul ul ul {
                list-style-type: circle;
                margin-block-start: 5px;
                margin-block-end: 10px;
                padding-inline-start: 25px;
            }

            .tableWrap {
                display: table;
                max-width: 700px;
                width: 100%;
                margin: 20px auto;
                text-align: center;
                border-radius: 6px;
            }
            
            .tableHdblk, .tableIfBlk {
                position: relative;
                float: left;
                width: 100%;
            }
            
            .tableHdblk {
                background-color: rgb(39 39 39);
                padding: 10px;
                border-radius: 7px 7px 0 0;
                font-weight: bold;
                color: #c39d47;
            }
            
            .tableIfBlk {
                font-size: 14px;
                color: #FFF;
                padding: 3px;
            }
            
                .tableIfBlk:nth-child(odd) {
                    background-color: rgb(49 46 46 / 70%);
                }
            
                .tableIfBlk:nth-child(even) {
                    background-color: rgb(49 46 46 / 50%);
                }
            
            .tableWrap .split3 {
                position: relative;
                float: left;
                width: 33.333%;
            }
/*-----media queries----------------------------------------------------------------------------------*/
@media (min-width:481px) {
    .gameBan {
        height: 200px;
    }

}

@media (min-width:768px) {
    .gameBan {
        height: 250px;
    }

    .gameInfo {
        display: flex;
        flex-direction: row;
    }

    .gameBlk01 {
        border-radius: 8px 0 0 8px;
        flex-grow: 1;
    }

    .gameBlk02 {
        border-radius: 0 8px 8px 0;
        flex-grow: 1;
    }


}

@media (min-width:1000px) {



}

@media (min-width:1025px) {
    .gameBan {
        height: 330px;
    }

}

@media (min-width:1441px) {
    .gameBan {
        height: 400px;
    }
}