.content {
    display: flex;
    flex-direction: column;
}

main::before {
    display: none;
}

.content > .game-name:first-child {
    margin-bottom: -8px;
    padding-bottom: 0;
}

.content > .game-name:first-child::before {
    background: var(--accent-2);
    box-shadow: 0 9px 18px rgba(31, 191, 154, .26);
}

.game {
    padding: 26px;
    margin-bottom: 6px;
    border: 1px solid rgba(229, 233, 240, .95);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(23, 32, 51, .74)),
        linear-gradient(90deg, rgba(255, 107, 74, .22), rgba(31, 191, 154, .16));
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 28px;
    align-items: start;
    overflow: hidden;
    position: relative;
}

.game::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border: 24px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    pointer-events: none;
}

.game .img-box {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .18);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
    z-index: 1;
}

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

.game .game-name {
    grid-column: 2;
    grid-row: 1;
    z-index: 1;
    text-align: left !important;
    margin: 10px 0 0 !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    color: #fff;
    max-width: 680px;
}

.game .game-txt {
    grid-column: 2;
    grid-row: 2;
    z-index: 1;
    width: 100%;
    max-width: 740px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.72;
    text-indent: 0;
    font-weight: 450;
}

.game .play {
    grid-column: 2;
    grid-row: 3;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 180px;
    min-height: 58px;
    margin: 24px 0 0;
    padding: 0 34px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
    box-shadow: 0 15px 34px rgba(255, 107, 74, .34);
}

.game .play:hover {
    background-color: #fff;
    color: #172033;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
}

.content > h3:not(.game-name) {
    margin-top: 10px;
}

.content > h3:not(.game-name)::before {
    background: var(--accent);
}

@media screen and (max-width:900px) {
    .game {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 18px;
    }

    .game .img-box {
        grid-column: 1;
        grid-row: auto;
        width: min(62vw, 320px);
        margin: 0 auto;
    }

    .game .game-name {
        grid-column: 1;
        grid-row: auto;
        text-align: center !important;
        margin-top: 0 !important;
        max-width: none;
    }

    .game .game-txt {
        grid-column: 1;
        grid-row: auto;
        text-align: left;
    }

    .game .play {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
    }
}

@media screen and (max-width:769px) {
    .game .img-box {
        width: min(70vw, 280px);
    }

    .game .game-txt {
        width: 100%;
        font-size: 15px;
        line-height: 1.65;
    }

    .game .play {
        min-height: 54px;
        margin-top: 20px;
        text-align: center;
    }
}
