.game {
    width: 100%;
    height: var(--game-height);
    margin: 0 auto;
    background-color: #000;
}

main {
    padding-bottom: 10px;
}

.game {
    min-height: 400px;
    padding: 15px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    --game_img: 20%;
}

.game .bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    inset: 0;
}

.game .bg img {
    filter: blur(7px);
    height: 100%;
}

.game .img-box {
    width: var(--game_img);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
}

.game .img-box::before {
    padding-top: 100%;
}

.game a {
    min-width: var(--game_img);
    text-align: center;
    background-color: #fff;
    color: #000;
    padding: 8px 0;
    transition: .4s;
}

.game a:hover {
    background-color: #000;
    color: #fff;
}

.game_detail {
    margin: 15px 0;
    padding: 0 10px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.game_detail div {
    display: flex;
    gap: 12px;
}

.game_detail div h4 {
    color: #cd0000;
}

@media screen and (max-width:769px) {
    .game {
        --game_img: 50%;
    }

    .game_detail div {
        flex-direction: column;
        gap: 5px;
    }
}

@media only screen and (max-device-width: 768px) and (orientation: landscape) {

    nav,
    footer,
    .retit,
    .big-box[data-type=all],
    .postionFixed,
    .de_iv_adv,
    .sear-btn,
    .game-name {
        display: none !important;
    }

    body {
        min-height: auto;
        height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .game {
        flex: 1;
        height: auto;
    }

    main {
        flex: 1;
        padding-bottom: 0;
        flex-direction: row;
    }

    header {
        padding: 0;
    }

    .man-rig {
        padding: 0;
        display: flex;
    }

    .logo {
        width: 150px;
    }
}