.free-to-play {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
}

.free-to-play__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./../images/banner-bg.png') center/cover no-repeat;
    z-index: 0;
}

.free-to-play__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #29296c, #0c0c3a);
    opacity: 0.5;
    z-index: 1;
}

.free-to-play__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.free-to-play__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 35px;
    color: var(--color-white);
    line-height: 48px;
    margin-bottom: 16px;
}

.free-to-play__subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-muted);
    margin-bottom: 32px;
}

@media (max-width: 1023px) {
    .free-to-play__title {
        font-size: 28px;
        line-height: 36px;
    }

    .free-to-play__subtitle {
        font-size: 16px;
    }
}
