.game-container {
    box-shadow: 0px 0px 5px #999999;
}

.game-container {
    position: relative;
    grid-area: 2/6/span 6/span 8;
    border-radius: var(--radius);
    background-color: #fff;
    overflow: hidden;
}

.game-container_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    filter: blur(30px);
    z-index: 0;
}

.game-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    z-index: 999;
    text-align: center;
}

.game-content .game-iframe__iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.game-content .game-iframe__iframe.vertical {
    width: 50%;
}

.game-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 5;
    margin: auto;
}

.game-detail_name {
    font-weight: bold;
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    color: var(--gray);
}

.game-detail-logo {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    border: 2px solid #fff;
}

.game-detail-logo .game-detail-logo_img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.game-detail_fullscreen {
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 9999999;
}

.game-button {
    width: 200px;
    height: 50px;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 50px;
    user-select: none;
}

.game-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: linear-gradient(90deg, #16cac1, #704ff4);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.game-button.disabled {
    background: #999999;
}

@media screen and (min-width: 1520px) {
    .game-container {
        grid-area: 2/4/span 5/span 8;
    }
}

@media screen and (min-width: 1330px) and (max-width: 1519px) {
    .game-container {
        grid-area: 2/4/span 4/span 6;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1329px) {
    .game-container {
        grid-area: 2/3/span 4/span 6;
    }
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
    .game-container {
        grid-area: 2/3/span 4/span 5;
    }
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .game-container {
        grid-area: 2/1/span 4/span 5;
    }

    .game-detail_fullscreen {
        display: none;
    }
}

@media screen and (max-width: 639px) {
    .game-container {
        grid-area: 2/1/span 4/span 3;
    }

    .game-detail_fullscreen {
        display: none;
    }
    
}