.hero > .container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}
.hero__content {
    padding:
        clamp(16px, 3.542vw, 51px)
        clamp(16px, 4.444vw, 64px);
}
.hero__bottom {
    display: grid;
    column-gap: 16px;
    grid-template-areas:
        'title btn'
        'sub-title btn';
}
.hero__bottom-title {
    grid-area: title;
    font-weight: 700;
}
.hero__bottom-sub-title {
    grid-area: sub-title;
    font-weight: 700;
}
.hero__bottom .btn {
    grid-area: btn;
}
.hero__bottom .btn .gift {
    animation: shake 5s ease-in-out infinite;
}
.hero__image {
    position: relative;
}
.hero__image img {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 528px;
    height: auto;
    max-height: 528px;
}

@media screen and (max-width: 992px) {
    .hero > .container {
        grid-template-columns: 1fr .5fr;
    }
}

@media screen and (max-width: 768px) {
    .hero > .container {
        grid-template-columns: 1fr;
    }
    .hero__image {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        margin-bottom: 90px;
    }
    .hero__bottom {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            'title'
            'sub-title'
            'btn';
    }
    .hero__bottom a {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        width: 100%;
    }
}




.games {
    margin-top: 16px;
}
.games__items {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}
.games__item {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    padding: 16px;
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 16px;
}
.games__item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}
.games__item-name {
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .games__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 420px) {
    .games__item {
        flex-flow: column;
    }
}