.game-intro {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.game-intro__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--pad-x);
    display: flex;
    align-items: center;
    gap: 27px;
}

.game-intro__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    flex-shrink: 0;
}

.game-intro__cover {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform .4s ease, box-shadow .4s ease;
}

.game-intro__cover:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 36px rgba(161, 0, 255, .35);
}

.game-intro__thumb {
    transition: transform .35s ease;
}

.game-intro__thumb:hover {
    transform: scale(1.08) rotate(4deg);
}

.game-callout__card {
    transition: transform .4s ease, box-shadow .4s ease;
}

.game-callout__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(161, 0, 255, .35);
}

.game-intro__cta {
    width: 275px;
}

.game-intro__right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 27px;
    justify-content: center;
}

.game-intro__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.game-intro__title {
    flex: 1;
    min-width: 0;
    font-weight: 700;
    font-size: 54px;
    text-transform: uppercase;
    color: var(--fg);
}

.game-intro__thumb {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.game-intro__text {
    font-weight: 300;
    font-size: 14px;
    color: var(--fg);
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.game-callout {
    width: 100%;
}

.game-callout__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-callout__card {
    background: var(--accent);
    border-radius: 40px;
    padding: 20px 40px;
    width: 100%;
    max-width: var(--content);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: var(--fg);
    text-align: center;
}

.game-callout__card h2 {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    width: 100%;
    word-break: break-word;
}

.game-callout__text {
    font-weight: 300;
    font-size: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 900px) {
    .game-intro__inner {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 40px var(--pad-x);
        gap: 20px;
    }

    .game-intro__left {
        gap: 40px;
    }

    .game-intro__right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 390px;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .game-intro__head {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .game-intro__title {
        font-size: 28px;
        text-align: center;
    }

    .game-intro__text {
        text-align: center;
    }

    .game-callout__inner {
        padding: 40px var(--pad-x);
    }

    .game-callout__card {
        padding: 20px 10px;
        border-radius: 40px;
    }

    .game-callout__card h2 {
        font-size: 28px;
    }
}
