/* =========================
   Top Page Banner
========================= */
.Banner__banner {
    padding: 22px;
}

.Banner__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px;

    color: #21201E;

    background: #FFFFFF;
    border-radius: 22px;

    a {
        font-weight: 500;
        background: linear-gradient(135deg, #7682f5, #e7c6ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: underline;
    }
}

/* =========================
   Header
========================= */

.Header__header {
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.dark.Header__header {
    border: 1px solid rgba(82, 54, 236, .4);
}

.Header__container {
    display: flex;
    align-items: center;
}

.Header__logo {
    /*margin: 0 auto;*/
    margin-left: auto;
}

.Header__userMenu {
    margin-left: auto;
}

.Header__menuList {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.Header__menuItem {
    font-size: 14px;
}

.Header__menuLink {
    color: #fff;
}

.dark .Header__menuLink {
    color: #5236ec;
}

@media (max-width: 768px) {
    .Header__container {
        flex-direction: column;
        gap: 10px;
    }

    .Header__logo {
        order: 1;
        margin: 0 auto;
    }

    .Header__menu {
        order: 2;
    }

    .Header__userMenu {
        order: 3;
        margin-left: 0;
    }
}


/* =========================
   Logo
========================= */

.Logo__container {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
}

.Logo__name {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    color: #fff;
}

.dark .Logo__name {
    color: #5236ec;
}

.Logo__vr {
    background: linear-gradient(135deg, #7682f5, #e7c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Button__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    background: transparent;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all .15s ease;
    text-decoration: none;
    height: 62px;
    min-width: 270px;
    max-width: 100%;
    text-align: center;
}

.Button__container:hover {
    background: #fff;
    color: #3242d3
}

.Hero__section {
    overflow: hidden;
    padding-bottom: 120px;
    color: #fff;
    background: #343cef;
    background: linear-gradient(-190deg, #3242d3 20%, #b150f6);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 15px 30px #3723fa33
}

.Hero__header {
    margin-bottom: 86px
}

.Hero__hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.Hero__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 56px;
    text-align: center
}

.Hero__subtitle {
    margin-bottom: 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 600
}

@media (max-width: 768px) {
    .Hero__section {
        padding-bottom: 0;
    }

    .Hero__header {
        margin-bottom: 56px
    }

    .Hero__title {
        font-size: 36px
    }

    .Hero__subtitle {
        font-size: 14px
    }
}

.Games__section {
    padding-top: 120px;
    padding-bottom: 120px
}


.Games__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px
}


.Games__title {
    color: #fff;
    font-size: 48px
}


.Games__note {
    color: #ffffff69;
    max-width: 560px;
    margin-bottom: 32px;
}

.Games__moreLink {
    color: #ffffff69;
}

.Games__moreLink:hover {
    opacity: .7
}

.Games__slide {
    overflow: hidden;
    position: relative;
    height: 500px;
    border-radius: 20px;
    cursor: pointer
}

.Games__slide:hover .Games__preview {
    transform: scale(1.07)
}

.Games__swiper:hover {
    box-shadow: 10px 10px 50px #3723fa33;
}

.Games__slideLink {
    position: absolute;
    z-index: 10;
    inset: 0
}

.Games__previewContainer {
    overflow: hidden;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 20px
}

.Games__preview {
    overflow: hidden;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease
}

.Games__border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 5px solid #3242D3
}

.Games__info {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    padding: 10px 20px;

    color: #fff;
}

.Games__name {
    font-weight: 600;
    font-size: 24px;
}

.Games__tags {
    font-weight: 400;
    font-size: 12px;
    text-transform: lowercase;
}

.Games__tagsLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.Games__tagLink {
    display: flex;
    align-items: center;
    padding: 6px 12px;

    color: #fff;

    border: 2px solid #fff;
    border-radius: 12px;
    transition: all .1s ease;
}

.Games__tagLink:hover {
    color: #ffffff;
    background: #3242d3;
}

@media (max-width: 764px) {
    .Games__section {
        padding-top: 60px;
        padding-bottom: 70px
    }

    .Games__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .Games__title {
        font-size: 32px
    }

    .Games__name {
        max-width: 90%
    }

    .Games__moreLink {
        display: none;
    }
}


.GamePage__page {
    padding: 64px 24px
}

@media (max-width: 576px) {
    .GamePage__page {
        padding-top: 32px
    }
}

.GamePage__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 48px
}

@media (max-width: 960px) {
    .GamePage__container {
        grid-template-columns:1fr;
        gap: 24px
    }

    .GamePage__container {
        padding: 0;
    }
}

.GamePage__media {
    border-radius: 24px;
    overflow: hidden
}

.GamePage__media img, .GamePage__media video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px
}

@media (max-width: 640px) {
    .GamePage__media img, .GamePage__media video {
        height: 250px
    }
}

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

.GamePage__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #9a9a9a;
    margin-bottom: 12px
}

.GamePage__tags span {
    white-space: nowrap
}

.GamePage__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1f1f1f
}

.GamePage__description {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a
}

.GamePage__cta {
    margin-bottom: 32px;
    align-self: flex-start;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    background: #ff8a00;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease
}

.GamePage__cta:hover {
    background: #ff9f1c;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px #ff8a0059
}

.GamePage__cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px #ff8a0040
}

.GamePage__thumbs, .GamePage__mediaThumbs {
    margin-top: 16px
}

.GamePage__thumb {
    overflow: hidden;
    height: 80px;
    border-radius: 12px;
    opacity: .5;
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer
}

.GamePage__thumb.swiper-slide-thumb-active {
    opacity: 1
}

.GamePage__thumb img, .GamePage__thumb video {
    width: 100%;
    height: 60px;
    object-fit: cover;
    pointer-events: none
}

.GamePage__thumbInner {
    width: 100%;
    height: 100%;
    background: #111;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.GamePage__thumbVideo {
    position: relative;
    width: 100%;
    height: 100%
}

.GamePage__playIcon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.GamePage__playIcon:before {
    content: "";
    width: 32px;
    height: 32px;
    background: #0009;
    border-radius: 50%
}

.GamePage__playIcon:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px
}

.GamesPageHeader__container {
    margin-top: 48px;
    margin-bottom: 24px;
}

.GamesPageHeader__titleWrapper {
    width: 100%;
    padding: 24px 32px;
    background: linear-gradient(135deg, #3242d3, #b150f6);
    border-radius: 24px
}

.GamesPageHeader__title {
    margin-bottom: 32px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #fff
}

.GamesPageHeader__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.GamesPageTags__tag {
    display: flex;
    align-items: center;
    padding: 4px 12px;

    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: lowercase;

    border: 2px solid #fff;
    border-radius: 12px;
    background: none;
    transition: all .1s ease;
}

.GamesPageTags__tag.active {
    color: #1A01CC;
    background: #fff;
}

@media (max-width: 768px) {
    .GamePage__container {
        margin-bottom: 0;
    }

    .GamesPageHeader__title {
        margin: 0;
    }

    .GamesPageHeader__tags {
        display: none;
    }
}

.Steps__section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.Steps__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.Steps__icon {
    width: 75px;
    height: 75px;

    color: #7682f5;

    background: linear-gradient(135deg, #7682f5, #e7c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Steps__cardTitle {
    font-size: 22px;
    font-weight: 500;
    text-align: center;

    background: linear-gradient(135deg, #7682f5, #e7c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Steps__button {
    margin-bottom: 18px;

    color: #7682f5;
    border-color: #7682f5;
}

@media (max-width: 768px) {
    .Steps__section {
        flex-direction: column;
        align-items: center;
        gap: 42px;
    }

    .Steps__card {
        max-width: 420px;
    }

    .Steps__button {
        margin-bottom: 0;
    }
}

.Configurations__section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.Configurations__sectionTitle {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 64px
}

.Configurations__list {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.Configurations__card {
    overflow: hidden;

    padding: 50px;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 530px;

    color: #fff;

    transition: all .2s ease;
    border-radius: 32px;
    background: linear-gradient(135deg, #3242d3cc, #b150f673);
}

.Configurations__cardTitle {
    font-size: 32px;
    margin-bottom: 44px;
    width: 100%;
}

.Configurations__info {
    margin-bottom: 72px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.Configurations__row {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ffffff2b;
}

.Configurations__row:last-of-type {
    border: none;
    padding: 0;
}

.Configurations__rowTitle {
    margin-bottom: 6px;
    font-size: 22px;
}

.Configurations__rowSubtitle {
    color: #ffffff69;
}

.Configurations__icon {
    position: relative;
    top: 1px;

    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.Configurations__imageWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.Configurations__imageWrapper img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain
}

.Configurations__selectButton:hover {
    background: #fff;
    color: #3242d3
}

@media (max-width: 964px) {
    .Configurations__section {
        padding-bottom: 0;
    }

    .Configurations__card {
        padding: 20px;
        padding-bottom: 32px;
    }

    .Configurations__sectionTitle {
        font-size: 28px;
    }

    .Configurations__selectButton {
        width: 100%;
        text-align: center
    }

    .Configurations__list {
        flex-direction: column;
        align-items: center;
    }

    .Configurations__cardTitle {
        font-size: 22px;
    }

    .Configurations__rowTitle {
        font-size: 18px;
    }

    .Configurations__rowSubtitle {
        font-size: 12px;
    }

    .Configurations__icon {
        width: 20px;
        height: 20px;
    }

    .Configurations__info {
        margin-bottom: 42px;
    }
}

.GamesCatalog__list {
    padding: 40px 0 120px;
    margin: 0;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 32px;
    list-style: none
}

@media (max-width: 1240px) {
    .GamesCatalog__list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 976px) {
    .GamesCatalog__list {
        grid-template-columns:repeat(1, 1fr)
    }
}


.GameCard__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: transform .25s ease
}

@media (max-width: 768px) {
    .GameCard__card {
        flex-direction: column-reverse;
    }
}

.GameCard__imageWrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: #eaeaf0
}

.GameCard__imageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease
}

.GameCard__meta {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.GameCard__tags {
    font-size: 12px;
    color: #9a9a9a;
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.GameCard__tags span {
    white-space: nowrap
}

.GameCard__title {
    font-size: 24px;
    font-weight: 600;
    color: #080b26;
    line-height: 1.3
}

.GameCard__card:hover, .GameCard__card:hover img {
    transform: scale(1.04)
}

.GameCard__card:hover .GameCard__title {
    background: linear-gradient(135deg, #3242d3, #b150f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

@keyframes CircleSlider__rotateCarousel {
    0% {
        transform: rotateX(-90deg) rotate(360deg)
    }
    to {
        transform: rotateX(-90deg) rotate(0)
    }
}

.CircleSlider__carouselContainer {
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 600px;
    max-width: 1460px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 768px) {
    .CircleSlider__carouselContainer {
        height: 260px;
        transform: scale(.63);
    }
}

.CircleSlider__carousel {
    position: relative;
    display: flex;
    gap: 20px;
    transform-style: preserve-3d;
    transform: rotateX(-90deg) rotate(0);
    animation: CircleSlider__rotateCarousel 70s linear infinite
}

.CircleSlider__item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 400px;
    border-radius: 20px;
    transform-style: preserve-3d;
    transform-origin: center;
    backface-visibility: hidden;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-710px) rotateX(-90deg) scaleY(-1)
}

.CircleSlider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px #3723fa73, 0 0 15px #7f52fa4d
}


.FAQ__section {
    padding: 96px 24px;
    background: #080b26;
    color: #fff
}

.FAQ__title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 64px
}

.FAQ__item {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(135deg, #3242d326, #b150f626);
    border-radius: 24px;
    padding: 24px 32px;
    cursor: pointer;
    transition: all .3s ease;
    overflow: hidden
}

.FAQ__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer
}

.FAQ__icon {
    font-size: 24px;
    transition: transform .3s ease
}

.FAQ__answer {
    font-size: 16px;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    transition: all .3s ease
}

.FAQ__item.FAQ__open {
    cursor: default;
    background: linear-gradient(135deg, #3242d3, #b150f6)
}

.FAQ__item.FAQ__open .FAQ__icon {
    transform: rotate(180deg)
}

.FAQ__item.FAQ__open .FAQ__answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px
}

@media (max-width: 768px) {
    .FAQ__title {
        font-size: 28px;
    }
}