﻿body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    color: #000;
    background-color: #03030d;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}
.slider-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin: 24px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background: transparent;
    cursor: pointer;
}

.slider-thumb {
    position: absolute;
    width: max-content;
    background: #3e6cf4;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.slider-thumb img {
    width: 24px;
    height: 24px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 16px;
    max-width: 1440px;
    width: 100%;

    position: relative;
    z-index: 20;
}
.red-logo {
    background-color: #8f2828 !important;
}
.header__language-button__block {
    position: relative;
}
.header__language-button__menu,
.header__language-button__menu_mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    width: max-content;
    gap: 16px;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--Linear, #3e6cf4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
.header__language-button__menu.active,
.header__language-button__menu_mobile.active {
    display: flex;
}
.header__language-button__menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #3e6cf4;
    font-size: 20px;
    line-height: 14px;
}
.header__left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.greeting__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.greeting__secondary-link {
    font-size: 14px;
    padding: 10px 18px;
    background-color: transparent;
    border: 1px solid #3E6CF4;
    border-radius: 8px;
    color: #3E6CF4;
    text-decoration: none;
    transition: background 0.2s;
}

.greeting__secondary-link:hover {
    background-color: rgba(62, 108, 244, 0.05);
}

.header__logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__logo {
    width: 48px;
    height: 48px;
    background-image: url('../public/logo.svg'); 
}
.header__logo-text {
    color: #4e4e4e;
    font-size: 24px;
    font-weight: 600;
}
.header__menu-list {
    display: flex;
    align-items: center;
    gap: 100px;
}
.header__flag {
    border-radius: 2px;
}
.header__menu-item a {
    position: relative; /* Для анимации подчёркивания */
    color: #4e4e4e;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease; /* Плавный переход для цвета текста */
}

.header__menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; 
    width: 0;
    height: 3px;
    background: #3e6cf4; 
    transition: width 0.3s ease; 
}

.header__menu-item a:hover {
    color: #3e6cf4; /* Цвет текста при наведении */
}

.header__menu-item a:hover::after {
    width: 100%; /* Полностью подчёркивает текст */
}

.header__menu-item__gray a {
    color: #ccc;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 44px;
}
.header__icons-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__icons-menu-item {
    width: 35px;
    height: 35px;
}
.header__language-button,
.header__language-button__mobile {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #3e6cf4;
    font-size: 20px;
    line-height: 14px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--Linear, #3e6cf4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
.header__login-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    padding: 12px 60px;
    border-radius: 14px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    background-size: 200%;
    transition: background-position 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    cursor: pointer; 
}

.header__login-button:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); 
}

.header__login-button:active {
    transform: translateY(0); 
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15); 
}


.header__mobile {
    display: none !important;
}
.header_menu_btn {
    position: relative;
    display: block;
    z-index: 12;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.header_menu_btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.header_menu_btn::after,
.header_menu_btn::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.header_menu_btn::after {
    top: calc(50% - 7px);
}
.header_menu_btn::before {
    top: calc(50% + 7px);
}
.header_menu_btn.active::after {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}
.header_menu_btn.active span {
    display: none;
}
.header_menu_btn.active::before {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
}
.header_menu_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0 20px;
    position: fixed;
    z-index: 11;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #03030d;
    transition: 0.3s all ease 0s;
}
.header_menu_nav.active {
    right: 0;
}
.header-menu__buttons-block {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}
.greeting {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.greeting__block {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 44px;

    max-width: 1440px;
    width: 100%;
    position: relative;
    margin-top: 140px;
    padding: 0 16px 200px;
    overflow: hidden;
}
.greeting__background {
    display: none;
}
.greeting__characters {
    position: absolute;
    right: -240px; 
    top: 400px; 
    transform: translateY(-60%); 
    z-index: -2;
}
.greeting__price {
    padding: 12px 66px;

    font-size: 20px;
    line-height: 26px;

    border-radius: 61px;
    border: 1px solid var(--Linear, #3e6cf4);
    background: rgba(250, 249, 255, 0.5);
    box-shadow: 0px 4px 4px 0px rgba(10, 30, 81, 0.13);
}
.greeting__price span {
    font-weight: 600;
}
.greeting__title {
    margin: 0;
    font-family: "Inter";
    font-size: 60px;
    font-weight: 700;
    line-height: 63px;
}
.greeting__description {
    font-size: 20px;
    line-height: 26px;

    background: linear-gradient(91deg, #353535 1.48%, #666 98.52%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.greeting__button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 60px;

    color: #fff;
    font-size: 20px;
    font-weight: 600;

    border-radius: 13px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    background-size: 200%;
    transition: background-position 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    cursor: pointer;
}

.greeting__button:hover {
    background-position: 100% 0; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.greeting__button:active {
    transform: translateY(0); 
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15); 
}

.advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    max-width: 1472px;
    width: 100%;
    padding: 140px 16px;
    position: relative;
}
.advantages__shadow_1 {
    position: absolute;
    left: 0;
    transform: translateX(-73%);
    width: 361px;
    height: 361px;
    flex-shrink: 0;
    border-radius: 361px;
    background: #544efd;
    filter: blur(400px);
    z-index: -1;
}
.advantages__shadow_2 {
    position: absolute;
    right: 0;
    transform: translateX(62%);
    bottom: 0;
    width: 361px;
    height: 361px;
    flex-shrink: 0;
    border-radius: 361px;
    background: #544efd;
    filter: blur(400px);
    z-index: -1;
}
.advantages__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.advantages__title {
    color: #fff;
    font-family: "Inter";
    font-size: 40px;
    font-weight: 700;
    line-height: 59px;
}
.advantages__description {
    max-width: 566px;
    color: rgba(251, 251, 251, 0.64);
    text-align: center;
    font-size: 20px;
    line-height: 26px;
}
.advantages__blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(345px, auto));
    width: 100%;
    gap: 20px;
    justify-content: center;
}
.advantages__block {
    display: flex;
    flex-direction: column;
    gap: 24px;

    min-width: 345px;
    max-width: 100%;
    padding: 44px 27px;

    border-radius: 25px;
    background: #fff;
}
.advantages__block-image {
    width: 46px;
    height: 46px;
}
.advantages__block-amount {
    color: #1e1e1e;
    font-family: "Inter";
    font-size: 28px;
    font-weight: 600;
    line-height: 39px;
}
.advantages__block-title {
    font-size: 20px;
    line-height: 26px;
}
.advantages__block__reversed-color {
    background: var(
        --Linear,
        linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%)
    );
}
.advantages__block-amount__reversed-color,
.advantages__block-title__reversed-color {
    color: #fbfbfb;
}
.advantages-info__blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
    gap: 20px;
    width: 100%;
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.05);
}
.advantages-info__block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    place-self: center;
    padding: 62px 0 62px 0;
}
.advantages-info__block__image {
    width: 60px;
    height: 60px;
}
.advantages-info__block__text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.advantages-info__block__amount {
    color: #fff;
    font-family: "Inter";
    font-size: 28px;
    font-weight: 600;
    line-height: 39px;
}
.advantages-info__block__period {
    color: rgba(251, 251, 251, 0.64);
    font-size: 20px;
    line-height: 26px;
}
.meet {
    padding: 110px 16px 98px;
    width: 100%;

    overflow: hidden;
    background: radial-gradient(
        100.27% 141.42% at 0% 100%,
        #f6f7ff 0%,
        #fff 67.5%,
        #ecedff 100%
    );
}
.meet__container {
    display: flex;
    justify-content: end;

    max-width: 1440px;
    margin: 0 auto;

    position: relative;
}
.meet__image {
    position: absolute;
    left: -280px;
    bottom: -330px;
}
.meet__content {
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.meet__title {
    max-width: 824px;
    font-family: "Inter";
    font-size: 52px;
    font-weight: 700;
    line-height: 63px;
}
.meet__description {
    max-width: 488px;
    font-size: 20px;
    line-height: 26px;
}
.meet__buttons {
    display: flex;
    gap: 24px;
}
.meet__buy-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 16px 60px;

    color: #fff;
    font-size: 20px;
    font-weight: 600;

    border-radius: 13px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    background-size: 200%;
    transition: background-position 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Легкая тень */
    cursor: pointer;
}

.meet__buy-button:hover {
    background-position: 100% 0; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); 
}

.meet__buy-button:active {
    transform: translateY(0); 
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15); 
}

.meet__discord-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 16px 60px;

    color: #3e6cf4;
    font-size: 20px;
    font-weight: 600;

    border-radius: 13px;
    border: 1px solid var(--Linear, #3e6cf4);
    background: #fff; 
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.meet__discord-button:hover {
    border-color: #3e6cf4;
    transform: translateY(-3px); 
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.meet__discord-button:active {
    transform: translateY(0); 
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.script {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;

    padding: 140px 16px 122px;

    max-width: 1472px;
    width: 100%;
    position: relative;
}
.script__shadow_1 {
    position: absolute;
    left: 0;
    transform: translateX(-73%);
    width: 361px;
    height: 361px;
    flex-shrink: 0;
    border-radius: 361px;
    background: #544efd;
    filter: blur(400px);
    z-index: -1;
}
.script__shadow_2 {
    position: absolute;
    right: 0;
    transform: translateX(62%);
    bottom: 0;
    width: 361px;
    height: 361px;
    flex-shrink: 0;
    border-radius: 361px;
    background: #544efd;
    filter: blur(400px);
    z-index: -1;
}
.script__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.script__title {
    color: #fff;
    text-align: center;
    font-family: "Inter";
    font-size: 40px;
    font-weight: 700;
    line-height: 59px;
}
.script__description {
    max-width: 566px;
    color: rgba(251, 251, 251, 0.64);
    text-align: center;
    font-family: "Manrope";
    font-size: 20px;
    line-height: 26px;
}
.script__blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 20px;
    width: 100%;
}
.script__block {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 28px;

    padding: 44px 27px;

    border-radius: 25px;
    background: linear-gradient(
        270deg,
        rgba(59, 70, 112, 0.2) 1.3%,
        rgba(63, 75, 106, 0.12) 98.7%
    );
}
.script__block-nubmer {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 22px;
    color: #3e6cf4;
    font-family: "Inter";
    font-size: 40px;
    font-weight: 600;
    line-height: 35px;

    border-radius: 11px;
    border: 1px solid var(--Linear, #3e6cf4);
}
.script__block-title {
    color: #fff;
    font-family: "Inter";
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}
.script__block-description {
    color: rgba(251, 251, 251, 0.64);
    font-size: 20px;
    line-height: 26px;
}
.script__block-description span {
    font-weight: 500;
    color: #3e6cf4;
}
.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;

    padding: 0 16px;

    max-width: 1472px;
    width: 100%;
    position: relative;
}
.faq__shadow_1 {
    position: absolute;
    left: 0;
    transform: translateX(-73%);
    width: 361px;
    height: 361px;
    flex-shrink: 0;
    border-radius: 361px;
    background: #544efd;
    filter: blur(400px);
    z-index: -1;
}
.faq__shadow_2 {
    position: absolute;
    right: 0;
    transform: translateX(62%);
    bottom: 0;
    width: 361px;
    height: 361px;
    flex-shrink: 0;
    border-radius: 361px;
    background: #544efd;
    filter: blur(400px);
    z-index: -1;
}
.faq__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.faq__category {
    padding: 15px 66px;

    color: #3e6cf4;
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;

    border-radius: 61px;
    border: 1px solid var(--Linear, #3e6cf4);
}
.faq__title {
    color: #fff;
    text-align: center;
    font-family: "Inter";
    font-size: 40px;
    font-weight: 700;
    line-height: 59px;
}
.faq__description {
    max-width: 1050px;
    color: rgba(251, 251, 251, 0.64);
    text-align: center;
    font-size: 20px;
    line-height: 26px;
}
.faq__blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.faq-item {
    display: flex;
    flex-direction: column;
    max-width: calc(100vh - 32px);
    gap: 4px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;

    padding: 24px 44px 24px 36px;
    color: #1e1e1e;
    font-family: "Inter";
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word; /* Перенос длинных слов */
    overflow-wrap: break-word; /* Альтернативный перенос */
    white-space: normal;

    border-radius: 17px;
    background: linear-gradient(90deg, #f1eeff 0%, #edebf6 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: linear-gradient(90deg, #e7e2ff 0%, #e3e0f2 100%);
}
.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.2s ease;

    padding: 0 90px 0 36px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 27px;

    border-radius: 17px;
    background: linear-gradient(
        270deg,
        rgba(76, 59, 112, 0.13) 1.3%,
        rgba(68, 63, 106, 0.08) 98.7%
    );
    box-shadow: 0px 24px 36px -17px rgba(255, 255, 255, 0.06) inset;
}
.faq-answer.open {
    padding: 28px 90px 28px 36px;
    height: auto;
    opacity: 1;
}
.plus {
    min-width: 24px;
    min-height: 24px;
}
.auth {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 64px;

    margin-top: 140px;
    padding: 0 16px;

    max-width: 1472px;
    width: 100%;
}
.auth__title-block {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.auth__title {
    margin: 0;
    color: #fff;
    font-family: "Inter";
    font-size: 60px;
    font-weight: 700;
    line-height: 59px;
}
.auth__description {
    max-width: 488px;
    color: rgba(229, 229, 229, 0.64);
    font-size: 20px;
    line-height: 26px;
}
.auth__background {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.auth__input-block {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 14px 25px;
    border-radius: 16px;
    border: 1px solid var(--Linear, #3e6cf4);
    background: #090d1e;
}
.auth__input-block__hr {
    height: 44px;
    width: 1px;
    background-color: #3e6cf4;
}
.auth__input {
    color: #fff;
    font-size: 24px;
    line-height: 26px;
}
.auth__login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    padding: 16px 60px;
    border-radius: 14px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.auth__login-button:hover {
    background: linear-gradient(90deg, #4976fb 0%, #517cff 50.5%, #3e6cf4 100%);
    box-shadow: 0px 8px 20px rgba(81, 124, 255, 0.3);
    transform: scale(1.05);
}

.auth__login-button:active {
    transform: scale(0.98);
    box-shadow: 0px 4px 12px rgba(81, 124, 255, 0.4);
}

.orders {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 80px;
    padding: 0 16px;
    width: 100%;
}
.orders__table {
    padding: 24px 0 27px;

    max-width: 1440px;
    width: 100%;

    border-radius: 32px;
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}
.orders__title-block {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 24px;
}
.orders__title {
    padding: 10px;
    text-align: center;
    color: rgba(229, 229, 229, 0.95);
    font-size: 20px;
    font-weight: 500;
}
.orders__table-block {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 5px 0;
}
.orders__table-item {
    padding: 10px;
    text-align: center;
    color: #fbfbfba3;
    font-size: 20px;
    line-height: 26px;
}
.orders__status-cancelled {
    color: rgba(255, 50, 50, 0.64);
}
.orders-hr {
    width: 100%;
    max-width: calc(100% - 61px);
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    flex-shrink: 0;
}
.orders__status-executed {
    color: rgba(255, 168, 47, 0.64);
}
.orders__status-done {
    color: rgba(75, 224, 75, 0.64);
}
.change-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding: 0 16px;
    width: 100%;
}

.change-payment__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px;
    max-width: 1440px;
    width: 100%;
    border-radius: 32px;
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}

.change-payment__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.change-payment__title {
    color: #fff;
    text-align: center;
    font-family: "Inter";
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
}

.change-payment__desctiption {
    color: rgba(229, 229, 229, 0.64);
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}

.change-payment__blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.change-payment__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 260px;
    width: 100%;
    padding: 20px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(103deg, rgba(227, 228, 255, 0.07) 1.18%, rgba(204, 221, 242, 0.07) 98.82%);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    text-align: center;
}

.change-payment__block:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(62, 108, 244, 0.15);
    border-color: rgba(82, 122, 255, 0.25);
}

.change-payment__block.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(90deg, #3e6cf4, #4976fb, #517cff, #4976fb, #3e6cf4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.change-payment__block-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
}

.change-payment__block-title {
    color: #ffffff;
    font-family: "Inter";
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.change-payment__block-text {
    color: rgba(229, 229, 229, 0.7);
    font-size: 14px;
    line-height: 20px;
}

.change-payment__buttons {
    display: flex;
    gap: 16px;
}
.change-payment__back {
    padding: 21px;
    border-radius: 13px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
}
.change-payment__pay {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 60px;
    width: fit-content;
    
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    
    border-radius: 13px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(62, 108, 244, 0.2);
    
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.change-payment__pay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.change-payment__pay:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 108, 244, 0.3);
}

.change-payment__pay:hover::before {
    left: 100%;
}

.change-payment__pay:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(62, 108, 244, 0.2);
}

.change-payment__pay img {
    transition: transform 0.3s ease;
}

.change-payment__pay:hover img {
    transform: translateX(3px);
}

.change-payment__pay.loading {
    cursor: not-allowed;
    opacity: 0.7;
}

.change-payment__pay.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.change-payment__pay.loading span {
    visibility: hidden;
}

.buying-steps__sell-link {
  margin-top: 20px;
  display: inline-block;
  text-align: center;
  padding: 12px 20px;

  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  border-radius: 12px;
  background: linear-gradient(90deg, #3e6cf4 0%, #7648ff 100%);
  box-shadow: 0 4px 15px rgba(62, 108, 244, 0.3);
  transition: all 0.3s ease;
}

.buying-steps__sell-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 108, 244, 0.4);
}



.recent-purchases {
  display: flex;
  flex-direction: column;
  gap: 32px;

  max-width: 1472px;
  width: 100%;
  padding: 0 16px;
  margin-top: 80px;
  overflow: hidden;
}

.recent-purchases__title {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.recent-purchases__blocks {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.recent-purchases__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  padding: 24px 20px;
  min-width: 162px;
  border-radius: 20px;

  background: linear-gradient(135deg, #4257f5 0%, #7a4bff 100%);
  box-shadow: 0 4px 12px rgba(123, 78, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-purchases__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(123, 78, 255, 0.45);
}

.recent-purchases__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.recent-purchases__amount {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.recent-purchases__amount::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('public/shop-icon.svg');
  background-size: cover;
  background-position: center;
}

.recent-purchases__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  word-break: break-word;
}


.payment__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 36px;

    position: absolute;
    top: 32px;
    left: 36px;

    border-radius: 29px;
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}
.payment__menu-item {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 51px;
    height: 51px;

    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.1);
}
.payment__menu-item.active {
    background-color: #3e6cf4;
}
.recent-purchases__text {
    color: rgba(229, 229, 229, 0.64);
    font-size: 12px;
    line-height: 19px;
}
.gamepass-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    padding: 0 16px;
    width: 100%;
}
.gamepass-price__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    padding: 40px 40px 62px;
    max-width: 1440px;
    width: 100%;

    position: relative;

    border-radius: 32px;
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}
.gamepass-price__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.gamepass-price__title {
    text-align: center;
    color: #fff;
    font-family: "Inter";
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
}
.gamepass-price__description {
    text-align: center;
    color: rgba(229, 229, 229, 0.64);
    font-size: 20px;
    line-height: 22px;
}
.gamepass-price__create {
    padding: 12px 42px;
    color: #3e6cf4;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    
    border-radius: 13px;
    border: 1px solid #3e6cf4;
    background: #0c0e18;
    
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gamepass-price__create::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(62, 108, 244, 0.1),
        transparent
    );
    transition: 0.5s;
}

.gamepass-price__create:hover {
    background: rgba(62, 108, 244, 0.05);
}

.gamepass-price__create:hover::before {
    left: 100%;
}

.gamepass-price__create:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(62, 108, 244, 0.1);
}
.gamepass-price__block {
    width: auto;
    height: 500px;
    position: relative;
    aspect-ratio: 16/9; 
    border-radius: 12px;
    overflow: hidden;
}

.gamepass-price__block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .gamepass-price__block {
        margin: 0 auto;
        width: calc(100% - 30px); 
    }
}
.gamepass-price__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gamepass-price__back,
.gamepass-price__to-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;

    color: #fff;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    background-size: 200% auto;
    box-shadow: 0 2px 10px rgba(62, 108, 244, 0.2);

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;

    max-width: 100%;
    width: auto; /* ! Важно: не 100% */
}


.gamepass-price__to-pay:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 108, 244, 0.3);
}

.gamepass-price__to-pay:hover::before {
    left: 100%;
}

.gamepass-price__to-pay:active {
    transform: translateY(1px);
    box-shadow: 0 1px 6px rgba(62, 108, 244, 0.2);
}


.choose-character {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    padding: 0 16px;
    width: 100%;
}
.choose-character__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    padding: 40px 40px 62px;
    max-width: 1440px;
    width: 100%;

    position: relative;

    border-radius: 32px;
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}
.choose-character__blocks {
    display: flex;
    gap: 40px;
    margin-left: auto;
}
.choose-character__block {
    display: flex;
    flex-direction: column;
    gap: 40px;

    width: 560px;
}
.choose-character__title-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.choose-character__title {
    color: #fff;
    font-family: "Inter";
    font-size: 32px;
    font-weight: 600;
    line-height: 34px;
}
.choose-character__description {
    color: rgba(229, 229, 229, 0.64);
    font-size: 20px;
    line-height: 22px;
}
.choose-character__hr {
    height: 450px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.33);
}
.choose-character__characters-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.choose-character__character-skelet {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 10px 24px;

    color: #fbfbfb;
    font-family: "Inter";
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;

    border-radius: 12px;
    border: 1px solid var(--Linear, #3e6cf4);
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}
.choose-character__character-skelet__hr {
    height: 44px;
    width: 1px;
    background-color: #3e6cf4;
}
.choose-character__character__block {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px;

    border-radius: 12px;
    background: linear-gradient(
        103deg,
        rgba(227, 228, 255, 0.05) 1.18%,
        rgba(204, 221, 242, 0.05) 98.82%
    );
}
.choose-character__character__left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.choose-character__characters-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.choose-character__character__image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
}
.choose-character__character__title-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.choose-character__character__title {
    color: #fbfbfb;
    font-family: "Inter";
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
}
.choose-character__character__description {
    color: rgba(229, 229, 229, 0.64);
    font-size: 12px;
    line-height: 14px;
}
.choose-character__character__checkbox {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 11px 8px;

    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 9px;
}
.choose-character__character__checkbox svg {
    fill: #8a8a8a;
}
.choose-character__character__checkbox.active {
    background-color: #3e6cf4;
}
.choose-character__character__checkbox.active svg {
    fill: #fff;
}
.choose-character__buttons {
    display: flex;
    gap: 16px;
    margin-top: 86px;
}
.choose-character__back {
    padding: 21px;
    border-radius: 13px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
}
.choose-character__continue {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 60px;
    width: fit-content;
    
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    
    border-radius: 13px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(62, 108, 244, 0.2);
    
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.choose-character__continue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.choose-character__continue:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 108, 244, 0.3);
}

.choose-character__continue:hover::before {
    left: 100%;
}

.choose-character__continue:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(62, 108, 244, 0.2);
}

.choose-character__continue img {
    transition: transform 0.3s ease;
}

.choose-character__continue:hover img {
    transform: translateX(3px);
}
.buying {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    padding: 0 16px;
    width: 100%;
}

.buying__container {
    display: flex;
    gap: 40px;
    padding: 32px 40px;
    max-width: 1440px;
    width: 100%;

    border-radius: 32px;
    background: linear-gradient(
        103deg,
        rgba(66, 99, 255, 0.08) 1.18%,
        rgba(151, 71, 255, 0.08) 98.82%
    );
    box-shadow: 0 8px 30px rgba(62, 108, 244, 0.08);
}

.buying-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 36px 36px 120px;
    max-width: 410px;

    border-radius: 32px;
    background: linear-gradient(
        103deg,
        rgba(66, 99, 255, 0.08) 1.18%,
        rgba(151, 71, 255, 0.08) 98.82%
    );
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.04);
}

.buying-steps__title {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
}

.buying-stepts__blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buying-stepts__block {
    display: flex;
    align-items: center;
    gap: 20px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.buying-steps__text {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
}

.buying-right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.buying-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
}

.buying__amounts {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.buying__amount-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 15px;
    min-width: 120px;
    width: 100%;

    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;

    border-radius: 15px;
    background: linear-gradient(
        103deg,
        rgba(66, 99, 255, 0.12) 1.18%,
        rgba(151, 71, 255, 0.12) 98.82%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.buying__amount-block:hover {
    background: linear-gradient(
        103deg,
        rgba(66, 99, 255, 0.18) 1.18%,
        rgba(151, 71, 255, 0.18) 98.82%
    );
    box-shadow: 0 4px 12px rgba(66, 99, 255, 0.25);
}

.buying__exchange-calc {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 16px;

    background: linear-gradient(103deg,
        rgba(66, 99, 255, 0.08) 1.18%,
        rgba(151, 71, 255, 0.08) 98.82%);
    box-shadow: 0 6px 20px rgba(62, 108, 244, 0.08);
    backdrop-filter: blur(6px);
}

.buying__exchange-calc__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buying__exchange-calc__title,
.buying__input-nickname__title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
}

.buying__exchange-calc__input-block,
.buying__input-nickname__input-block {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    position: relative;

    border-radius: 12px;
    background: linear-gradient(103deg,
        rgba(66, 99, 255, 0.08) 1.18%,
        rgba(151, 71, 255, 0.08) 98.82%);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.buying__exchange-calc__input-block:hover,
.buying__input-nickname__input-block:hover {
    background: linear-gradient(103deg,
        rgba(66, 99, 255, 0.12) 1.18%,
        rgba(151, 71, 255, 0.12) 98.82%);
}

.buying__exchange-calc__input-block:focus-within,
.buying__input-nickname__input-block:focus-within {
    border-color: #517cff;
    box-shadow: 0 0 0 3px rgba(81, 124, 255, 0.2);
    background: linear-gradient(103deg,
        rgba(66, 99, 255, 0.14) 1.18%,
        rgba(151, 71, 255, 0.14) 98.82%);
}

.buying__exchange-calc__input,
.buying__input-nickname__input {
    width: 100%;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    padding-right: 48px;
    background: none;
    border: none;
    outline: none;
}

.buying__input-nickname__input {
    padding-left: 60px;
}

.buying__exchange-calc__currency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(145deg, #3e6cf4, #4976fb);
    box-shadow: 0 4px 10px rgba(81, 124, 255, 0.3);
}

.buying__input-nickname__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buying__input-nickname__image {
    position: absolute;
    top: 12px;
    left: 12px;
}

.buying__button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 60px;
    width: fit-content;

    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: "Inter", sans-serif;

    border-radius: 13px;
    background: linear-gradient(90deg, #3c5aff 0%, #7648ff 50%, #9b34f9 100%);
    background-size: 200% auto;
    box-shadow: 0 4px 20px rgba(93, 72, 255, 0.25);

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.buying__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.buying__button:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 72, 255, 0.35);
}

.buying__button:hover::before {
    left: 100%;
}

.buying__button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(93, 72, 255, 0.2);
}

.buying__button img {
    transition: transform 0.3s ease;
}

.buying__button:hover img {
    transform: translateX(3px);
}


footer {
    display: flex;
    flex-direction: column;
    max-width: 1472px;
    padding: 0 16px;
    width: 100%;
}
.footer__main {
    margin-top: 140px;
    padding-bottom: 186px;
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__left {
    display: flex;
    align-items: center;
    gap: 90px;
}
.footer__logo-block {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-size: 24px;
    font-weight: 600;
}
.footer__logo {
    width: 48px;
    height: 48px;
    background-image: url('../public/logo.svg'); 
}
.footer__menu {
    display: flex;
    align-items: center;
    gap: 100px;
}
.footer__menu-item a {
    color: #e2e2e2;
    font-size: 20px;
}
.footer__support-button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 60px;

    color: #fff;
    font-size: 20px;
    font-weight: 600;

    border-radius: 14px;
    background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
}
.footer__hr {
    margin: 38px 0 26px;
    border-bottom: 1px solid #282828;
}
.footer__copyright {
    margin-right: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.footer__info-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 38px;
}
.footer__info-menu-item a {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer__info-menu-item__text {
    color: #949494;
    font-size: 16px;
}

.footer__legal {
    margin-top: 20px;
    color: #949494;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

@media (max-width: 1440px) {
    .header__left {
        gap: 60px;
    }
    .header__logo {
        width: 36px;
        height: 36px;
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
    }
    
    .header__logo-text {
        font-size: 20px;
    }
    .header__menu-list {
        gap: 60px;
    }
    .header__right {
        gap: 32px;
    }
    .header__icons-menu {
        gap: 8px;
    }
    .header__icons-menu-item {
        width: 32px;
        height: 32px;
    }
    .header__language-button {
        gap: 8px;
        font-size: 16px;
        line-height: 14px;
        padding: 12px;
        border-radius: 12px;
    }
    .header__login-button {
        gap: 8px;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        padding: 10px 32px;
        border-radius: 12px;
    }
    .greeting__block {
        gap: 32px;
        margin-top: 0;
        padding: 100px 16px 120px;
    }
    .greeting__background {
        height: 607px;
    }
    .greeting__characters {
        position: absolute;
        right: -160px;
        z-index: -1;
    }
    .greeting__price {
        padding: 10px 36px;
        font-size: 18px;
        line-height: 24px;
    }
    .greeting__title {
        font-size: 44px;
        line-height: 48px;
    }
    .greeting__description {
        font-size: 18px;
        line-height: 20px;
    }
    .greeting__button {
        gap: 8px;
        padding: 12px 32px;
        font-size: 18px;
        font-weight: 500;
    }
    .greeting__characters {
        bottom: -100px;
        width: 807px;
        height: 640px;
    }
    .meet {
        padding: 70px 16px 60px;
    }
    .meet__container {
        justify-content: center;
    }
    .meet__image {
        display: none;
    }
    .meet__content {
        align-items: center;
        gap: 36px;
    }
    .meet__title {
        font-size: 44px;
        line-height: 48px;
        text-align: center;
    }
    .meet__description {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
    .meet__buttons {
        gap: 16px;
    }
    .meet__buy-button {
        gap: 8px;
        padding: 12px 40px;
        font-size: 18px;
    }
    .meet__discord-button {
        gap: 8px;
        padding: 12px 40px;
        font-size: 18px;
    }
    .script {
        gap: 44px;
        padding: 100px 16px 90px;
    }
    .script__title-block {
        gap: 28px;
    }
    .script__title {
        font-size: 32px;
        font-weight: 700;
        line-height: 36px;
    }
    .script__description {
        font-size: 18px;
        line-height: 22px;
    }
    .script__block {
        gap: 20px;
        padding: 36px 24px;
    }
    .script__block-nubmer {
        padding: 8px 12px;
        font-size: 28px;
        line-height: 32px;
    }
    .script__block-title {
        font-size: 24px;
        line-height: 28px;
    }
    .script__block-description {
        font-size: 16px;
        line-height: 20px;
    }
    .payment__menu {
        flex-direction: row;
        gap: 12px;
        padding: 24px;
        left: 50%;
        transform: translateX(-50%);
    }
    .gamepass-price__container {
        gap: 32px;
        padding: 160px 28px 62px;
    }
    .gamepass-price__title-block {
        gap: 24px;
    }
    .gamepass-price__title {
        font-size: 32px;
        line-height: 34px;
    }
    .gamepass-price__description {
        font-size: 18px;
        line-height: 20px;
    }
    .gamepass-price__create {
        padding: 12px 28px;
        font-size: 18px;
    }
    .gamepass-price__buttons {
        gap: 12px;
    }
    .gamepass-price__to-pay {
        padding: 12px 40px;
        font-size: 18px;
    }
    .choose-character {
        margin-top: 60px;
    }
    .choose-character__container {
        gap: 32px;
        padding: 160px 32px 52px;
    }
    .choose-character__blocks {
        gap: 32px;
        margin-left: 0;
        width: 100%;
    }
    .choose-character__block {
        gap: 32px;
        width: 100%;
    }
    .choose-character__title-block {
        gap: 16px;
    }
    .choose-character__title {
        font-size: 28px;
        line-height: 30px;
    }
    .choose-character__description {
        font-size: 18px;
        line-height: 20px;
    }
    .choose-character__hr {
        display: none;
    }
    .choose-character__characters-left {
        gap: 20px;
    }
    .choose-character__character-skelet {
        gap: 16px;
        font-size: 20px;
        line-height: 22px;
    }
    .choose-character__character__block {
        padding: 12px;
    }
    .choose-character__character__left {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .choose-character__characters-right {
        gap: 32px;
    }
    .choose-character__character__image {
        width: 40px;
        height: 40px;
    }
    .choose-character__character__title-block {
        gap: 8px;
    }
    .choose-character__character__title {
        font-size: 20px;
        line-height: 22px;
    }
    .choose-character__buttons {
        gap: 12px;
        margin-top: 56px;
    }
    .choose-character__back {
        padding: 13px 21px;
    }
    .choose-character__continue {
        padding: 12px 40px;
        font-size: 18px;
    }
    .buying {
        margin-top: 60px;
    }
    .buying__container {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 24px 28px;
    }
    .buying-steps {
        gap: 32px;
        padding: 24px 24px 60px;
        width: 100%;
        max-width: none;
        height: min-content;
    }
    .buying-steps__title {
        font-size: 24px;
        line-height: 26px;
    }
    .buying-stepts__blocks {
        gap: 16px;
    }
    .buying-stepts__block {
        gap: 20px;
        font-size: 18px;
        line-height: 20px;
    }
    .buying-steps__text {
        font-size: 18px;
        line-height: 20px;
    }
    .buying-right {
        width: 100%;
        gap: 28px;
    }
    .buying-title {
        color: #fff;
        font-family: "Inter";
        font-size: 32px;
        font-weight: 700;
        line-height: 35px;
    }
    .buying__amounts {
        display: flex;
        gap: 12px;
        width: 100%;
        overflow: scroll;
    }
    .buying__amount-block {
        padding: 12px;
        min-width: 100px;
        font-size: 16px;
        line-height: 18px;
    }
    .buying__exchange-calc {
        display: flex;
        gap: 12px;
        padding: 24px;
    }
    .buying__exchange-calc__block {
        gap: 16px;
        width: 100%;
    }
    .buying__exchange-calc__title {
        font-size: 18px;
        line-height: 20px;
    }
    .buying__exchange-calc__input {
        padding-bottom: 3px;
        font-size: 24px;
        line-height: 24px;
    }
    .buying__input-nickname__block {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .buying__input-nickname__title {
        font-size: 18px;
        line-height: 20px;
    }
    .buying__input-nickname__input-block {
        gap: 8px;
    }
    .buying__input-nickname__input {
        padding: 5px 0 5px 60px;
        font-size: 24px;
        line-height: 24px;
    }
    .buying__button {
        gap: 8px;
        padding: 12px 40px;
        font-size: 18px;
    }
    footer {
        display: flex;
        flex-direction: column;
        max-width: 1472px;
        padding: 0 16px;
        width: 100%;
    }
    .footer__main {
        margin-top: 80px;
        padding-bottom: 100px;
    }
    .footer__left {
        gap: 50px;
    }
    .footer__logo-block {
        gap: 10px;
        font-size: 20px;
    }
    .footer__logo {
        width: 36px;
        height: 36px;
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
    }
    .footer__menu {
        gap: 60px;
    }
    .footer__menu-item a {
        font-size: 18px;
    }
    .footer__support-button {
        gap: 10px;
        padding: 12px 36px;
        font-size: 18px;
        font-weight: 500;
    }
    .footer__hr {
        margin: 28px 0 20px;
    }
    .footer__copyright {
        margin-right: 12px;
    }
    .footer__info-menu {
        gap: 12px 24px;
    }
    .footer__info-menu-item a {
        gap: 10px;
    }
}

@media (max-width: 1120px) {
    .header__left {
        gap: 40px;
    }
    .header__menu-list {
        gap: 40px;
    }
    .header__right {
        gap: 24px;
    }
    .advantages__title {
        font-size: 32px;
        line-height: 36px;
    }
    .advantages__description {
        font-size: 18px;
        line-height: 22px;
    }
    .advantages {
        padding: 60px 16px;
        gap: 40px;
    }
}

@media (max-width: 1060px) {
    .header__pc {
        display: none;
    }
    .header__mobile {
        display: block !important;
    }
    .header__menu-list {
        gap: 28px;
        flex-direction: column;
    }
    .header__icons-menu {
        margin-top: 40px;
        justify-content: center;
    }
    .header-menu__buttons-block {
        display: flex;
    }
    .header__buttons {
        display: none;
    }
    .greeting__background {
        height: 599px;
    }
    .greeting__characters {
        top: 320px;
        width: 655px;
        height: 520px;
    }
    .greeting__block {
        gap: 28px;
        padding: 60px 16px 80px;
    }
    .greeting__background {
        height: 464px;
    }
    .greeting__characters {
        position: absolute;
        right: -160px;
        z-index: -1;
    }
    .greeting__price {
        padding: 8px 28px;
        font-size: 16px;
        line-height: 20px;
    }
    .greeting__title {
        font-size: 32px;
        line-height: 36px;
    }
    .greeting__description {
        font-size: 16px;
        line-height: 18px;
    }
    .greeting__button {
        padding: 10px 24px;
        font-size: 16px;
    }
    .faq {
        gap: 44px;
    }
    .faq__title-block {
        gap: 24px;
    }
    .faq__category {
        padding: 12px 40px;
        font-size: 20px;
        line-height: 24px;
    }
    .faq__title {
        font-size: 32px;
        line-height: 36px;
    }
    .faq__description {
        font-size: 18px;
        line-height: 22px;
    }
    .faq__blocks {
        gap: 12px;
    }
    .faq-question {
        gap: 24px;
        padding: 20px 28px 20px 24px;
        font-size: 20px;
        line-height: 24px;
    }
    .faq-answer {
        padding: 0;
        font-size: 18px;
        line-height: 24px;
    }
    .faq-answer.open {
        padding: 24px 36px 24px 28px;
    }
    .auth {
        gap: 48px;
        margin-top: 100px;
    }
    .auth__title-block {
        gap: 24px;
    }
    .auth__title {
        font-size: 40px;
        line-height: 44px;
    }
    .auth__description {
        font-size: 18px;
        line-height: 20px;
    }
    .auth__background {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .auth__input-block {
        gap: 20px;
        padding: 14px 20px;
    }
    .auth__input-block__hr {
        height: 44px;
        width: 1px;
        background-color: #3e6cf4;
    }
    .auth__input {
        font-size: 20px;
        line-height: 22px;
    }
    .auth__login-button {
        font-size: 18px;
        line-height: 20px;
        padding: 12px 40px;
    }
    .orders__table-item,
    .orders__title {
        min-width: 200px;
    }
    .orders__table {
        overflow: scroll;
    }

    .orders__title {
        font-size: 18px;
    }
    .orders__table-item {
        font-size: 18px;
    }
    .orders-hr {
        display: none;
    }
    .change-payment {
        margin-top: 60px;
    }
    .change-payment__container {
        gap: 30px;
        padding: 30px;
    }
    .change-payment__title-block {
        gap: 28px;
    }
    .change-payment__title {
        font-size: 32px;
        line-height: 36px;
    }
    .change-payment__desctiption {
        font-size: 18px;
        line-height: 20px;
    }
    .change-payment__blocks {
        gap: 16px 32px;
    }
    .change-payment__block {
        gap: 16px;
        padding: 24px 18px;
    }
    .change-payment__block-logo {
        width: 48px;
        height: 48px;
    }
    .change-payment__block-title {
        font-size: 28px;
        line-height: 26px;
    }
    .change-payment__block-text {
        font-size: 18px;
        line-height: 20px;
    }
    .change-payment__buttons {
        gap: 12px;
    }
    .change-payment__back {
        padding: 17px;
    }
    .change-payment__pay {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 16px 60px;
        width: fit-content;
        
        text-align: center;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        
        border-radius: 13px;
        background: linear-gradient(90deg, #3e6cf4 0%, #4976fb 50.5%, #517cff 100%);
        background-size: 200% auto;
        box-shadow: 0 4px 15px rgba(62, 108, 244, 0.2);
        
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .change-payment__pay::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
        transition: 0.5s;
    }

    .change-payment__pay:hover {
        background-position: right center;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(62, 108, 244, 0.3);
    }

    .change-payment__pay:hover::before {
        left: 100%;
    }

    .change-payment__pay:active {
        transform: translateY(1px);
        box-shadow: 0 2px 10px rgba(62, 108, 244, 0.2);
    }

    .change-payment__pay img {
        transition: transform 0.3s ease;
    }

    .change-payment__pay:hover img {
        transform: translateX(3px);
    }
    .footer__support-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    .footer__top {
        gap: 24px 36px;
        flex-wrap: wrap;
    }
}

@media (max-width: 960px) {
    .choose-character__blocks {
        flex-direction: column;
    }
    .choose-character__container {
        padding: 160px 24px 40px;
    }
    .buying__exchange-calc {
        flex-direction: column;
    }
    .buying__container {
        padding: 24px 16px;
    }
}

@media (max-width: 860px) {
    .greeting__characters {
        right: -240px;
        width: 554px;
        height: 440px;
    }
}

@media (max-width: 792px) {
    .footer__top {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .advantages__blocks {
        gap: 12px;
    }
    .advantages__block {
        gap: 16px;
        padding: 32px 24px;
    }
    .advantages__block-image {
        width: 40px;
        height: 40px;
    }
    .advantages__block-amount {
        font-size: 24px;
        font-weight: 600;
        line-height: 28px;
    }
    .advantages__block-title {
        font-size: 18px;
        line-height: 22px;
    }
    .advantages-info__blocks {
        gap: 12px;
    }
    .advantages-info__block {
        gap: 12px;
        padding: 44px 0 44px 0;
    }
    .advantages-info__block__image {
        width: 52px;
        height: 52px;
    }
    .advantages-info__block__text-block {
        gap: 8px;
    }
    .advantages-info__block__amount {
        font-size: 24px;
        line-height: 28px;
    }
    .advantages-info__block__period {
        font-size: 16px;
        line-height: 20px;
    }
    .meet__content {
        gap: 24px;
    }
    .meet__buttons {
        flex-direction: column;
    }
    .meet__discord-button {
        justify-content: center;
    }
    .meet__title {
        font-size: 36px;
        line-height: 40px;
    }
    .meet__description {
        font-size: 16px;
        line-height: 20px;
    }
    .script__blocks {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .orders {
        margin-top: 40px;
    }
    .gamepass-price__block {
        width: 280px;
        height: 200px;
    }
    .gamepass-price__back {
        padding: 13px 21px;
    }
    .gamepass-price__buttons {
        flex-direction: column;
    }
    .gamepass-price__amount {
        font-size: 18px;
        line-height: 22px;
        padding: 4px 10px;
    }
}

@media (max-width: 660px) {
    .greeting__characters {
        display: none;
    }
    .greeting__title-br {
        display: none;
    }
    .greeting__block {
        gap: 24px;
        padding: 40px 16px 60px;
    }
    .greeting__price {
        padding: 8px 16px;
    }
    .faq-question {
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
    }
}

@media (max-width: 567px) {
    .footer__left {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.back-btn {
    padding: 21px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.back-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    border-color: rgba(255, 77, 77, 0.3);
}

.back-btn:active {
    transform: translateX(0);
    background: rgba(255, 77, 77, 0.15);
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 77, 77, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.5s;
}

.back-btn:hover::before {
    transform: translateX(100%);
}

.continue-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(90deg, #2a4bb1 0%, #3459c2 50.5%, #3c62d6 100%);
    transform: none;
    pointer-events: none;
}

.continue-btn.disabled:hover {
    background-position: initial;
    transform: none;
    box-shadow: 0 4px 15px rgba(62, 108, 244, 0.2);
}

.step-section {
    display: none;
}

.step-section:first-of-type {
    display: flex;
}

.captcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.change-payment__pay.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(90deg, #2a4bb1 0%, #3459c2 50.5%, #3c62d6 100%);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(14, 14, 18, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
}

.notification.success {
    border-left: 4px solid #3e6cf4;
}

.notification.error {
    border-left: 4px solid #ff4d4d;
}

.notification.show {
    transform: translateX(0);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -4;
    width: 100%;
    height: 828px;
    background: #ffffff;
}

@media (max-width: 1440px) {
    #particles-js {
        height: 607px;
    }
}

@media (max-width: 1060px) {
    #particles-js {
        height: 599px;
    }
}

@media (max-width: 1060px) {
    #particles-js {
        height: 464px;
    }
}
