/* base  */
html {
    scroll-behavior: auto;
}
body,
html {
    overflow-x: hidden;
    scroll-behavior: auto !important;
    position: relative;
}
body {
    position: relative;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #020010;
    color: #e5e5e5;
}
::placeholder {
  color: #51515175;
}
::-webkit-input-placeholder {
  color: #51515175;
}
::-moz-placeholder {
  color: #51515175;
}
:-ms-input-placeholder {
  color: #51515175;
}
:-moz-placeholder {
  color: #51515175;
}
a {
    display: inline-block;
}
.container {
    max-width: 1464px;
    padding: 0 15px;
    margin: 0 auto;
}
.wrapper {
    overflow: hidden;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.space-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 38px;
}
.roadmap-space-button {
    display: none;
}
/* gradient-button */
.gradient-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px 50px;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-clip: border-box;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    background: -o-radial-gradient(var(--x) var(--y), circle, #7a3bff 5px, transparent 20%);
    background: radial-gradient(circle at var(--x) var(--y), #7a3bff 5px, transparent 20%);
    overflow: hidden;
}
.gradient-button::after {
    position: absolute;
    content: '';
    background-color: #07021a;
    top: 1px;
    left: 1px;
    width: 99%;
    height: 96%;
    border-radius: 30rem;
}
.gradient-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-radial-gradient(var(--x) var(--y), circle, #7a3bff 20px, transparent 24%);
    background: radial-gradient(circle at var(--x) var(--y), #7a3bff 20px, transparent 24%);
    z-index: -1;
    -webkit-filter: blur(0.5rem);
    filter: blur(0.5rem);
    border-radius: 30rem;
}
.gradient-button-text {
    z-index: 20;
    position: inherit;
}

.gradient-button i {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 59, 255, 0.3);
    border-radius: inherit;
}

/* rotating-gradient-btn */
.rotating-gradient-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 10px;
    padding: 17px 76px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: inset 0 0 16px 0 rgba(113, 78, 189, 0.72), 0 0 53px 0 rgba(122, 59, 255, 0.25);
    box-shadow: inset 0 0 16px 0 rgba(113, 78, 189, 0.72), 0 0 53px 0 rgba(122, 59, 255, 0.25);
    --gradient-angle: 180deg;
    background: -o-linear-gradient(var(--gradient-angle), #7a3bff, #33176f);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-angle)), color-stop(#7a3bff), to(#33176f));
    background: linear-gradient(var(--gradient-angle), #7a3bff, #33176f);
}

.rounded-button {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: max-content;
    border-radius: 10px;
    padding: 15px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    border: 1px solid #FFFFFF4D;
    width: 100%;
    margin-top: 20px;
    transition: border 0.4s;
}

.rounded-button:hover {
    border: 1px solid #7a3bff;
}

.space-button-border-left::before,
.space-button-border-left::after,
.space-button-border-right::before,
.space-button-border-right::after {
    display: inline-block;
    width: 29.5px;
    height: 29.5px;
    position: absolute;
}
.space-button-border-left::before {
    content: url('../images/custom-el.svg');
    left: 10px;
    top: 19px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.space-button-border-left::after {
    content: url('../images/custom-el.svg');
    left: 9px;
    bottom: 57px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.space-button-border-right::before {
    content: url('../images/custom-el.svg');
    right: 10px;
    top: 19px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.space-button-border-right::after {
    content: url('../images/custom-el.svg');
    right: 9px;
    bottom: 57px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* text-content */
.text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}
.text-content__top {
    font-weight: 400;
    font-size: 20px;
}
.text-content__title {
    font-weight: 600;
    font-size: 48px;
    text-align: center;
}
.text-content__description {
    text-align: center;
}

/* space-animation */
.space-animation {
    position: relative;
    width: 500px;
    height: 220px;
    margin: 0 auto;
}
.space-animation__inner {
    position: absolute;
    left: 1px;
    top: -10px;
    right: 0;
    bottom: 0;
}

/* gray-btn */
.gray-btn {
    padding: 22px 80px;
    font-family: 'Chakra Petch SemiBold', sans-serif;
    background: #c3c3c3;
    border: 1px solid #c3c3c3;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

.faq {
    margin-top: 141px;
}
.faq-title {
    display:inline-block;
    padding: .3em 18px .3em .4em;
    font-weight: 600;
    font-size: 20px;
}
.faq-title:after {  
  content: "+";
  /*margin-right: .3em;*/
  position: absolute;
  right: 10px;
}
.faq-item .faq-desc {
    display: grid; 
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
}
.faq-item.active .faq-desc {
    grid-template-rows: 1fr;
}
.faq-item .faq-desc > div {
    overflow: hidden;
}
.faq-item.active > .faq-title {
    color: #7a3bff;
}
.faq-item.active > .faq-title:after {
    content: "–";
}
.faq-item p {
    padding: 0 45px 0.2em 0.5em;
    color: #ffffffc7;
    font-size: 16px;
    line-height: 19px;
}
.faq-item p:last-child {
    padding: 0 45px 1em 0.5em;
}
.faq-title:focus {
  outline:0;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.3), inset 0 0 2px rgba(0,0,0,0.3);
}
.faq-item {
    display: block;
    position: relative;
    background: #8484841c;
    padding: 5px;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-list__wrapper {
    margin-top: 67px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-list__wrapper .faq-list {
    width: 100%;
    max-width: 600px
}

.stage {
    margin-top: 141px;
}

.stage-list__wrapper {
    margin-top: 67px;
}
.stage-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex-flow: row wrap;
    list-style: none;
}
.stage-list::before {
    content: "";
    width: var(--stages-progress);
    height: 5px;
    top: 56px;
    background: linear-gradient(to right, #040115, #7a3bff);
    position: absolute;
    z-index: 101;
}
.stage-list::after {
    content: "";
    width: 100%;
    height: 5px;
    top: 56px;
    left: var(--stages-progress);
    background: linear-gradient(to right, #7a3bff, #040115);
    position: absolute;
    filter: grayscale(1);
    opacity: 0.6;
    z-index: 100;
}
.stage-item {
    position: relative;
    width: 200px;
    text-align: center;
    flex: 1 1 auto;
}
.stage-item .stage-title {
    font-size: 26px;
    font-weight: 600;
}
.stage-item .stage-period {
    margin-top: 5px;
    font-size: 14px;
    color: #979797;
    font-weight: 600;
}
.stage-item .stage-desc {
    margin: 55px 35px 0;
    background: #020010;
    border: 1px solid rgb(66, 34, 132);
    border-radius: 10px;
    padding: 10px;
    position: relative;
    -webkit-box-shadow: 2px 2px 0px 0px rgba(122, 59, 255, 0.3);
    box-shadow: 2px 2px 0px 0px rgba(122, 59, 255, 0.3);
}
.stage-item .stage-desc::before {
    position: absolute;
    content: "";
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgb(66, 34, 132);
}
.stage-item + .stage-item::before {
    content: "";
    position: absolute;
    left: -1px;
    background: linear-gradient(135deg, #2b2b2b 60%, #311a62 100%);
    top: 46px;
    width: 4px;
    height: 25px;
    z-index: 110;
    filter: grayscale(1);
}
.stage-item + .stage-item.active::before {
    filter: none;
    background: linear-gradient(135deg, #7a3bff 60%, #311a62 100%);
}
.stage-item + .stage-item.completed::before {
    filter: none;
    background: linear-gradient(135deg, #7a3bff 60%, #311a62 100%);
}

/* media - hover  */
@media (min-width: 1024px) {
    /* main */
    .main-content__social a:hover {
        color: #7a3bff;
    }
    .main-content__social a:hover path {
        fill: #7a3bff;
    }

    /* about-list  */
    .about-list li:hover::before,
    .about-list li:hover:nth-child(n + 5)::before {
        opacity: 0;
    }

    /* rotating-gradient-btn  */
    .rotating-gradient-btn:hover {
        -webkit-animation: rotate-gradient 5s linear infinite;
        animation: rotate-gradient 5s linear infinite;
    }
    @property --gradient-angle {
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
    }
    @-webkit-keyframes rotate-gradient {
        0% {
            --gradient-angle: 180deg;
        }
        50% {
            --gradient-angle: 360deg;
        }
        100% {
            --gradient-angle: 540deg;
        }
    }
    @keyframes rotate-gradient {
        0% {
            --gradient-angle: 180deg;
        }
        50% {
            --gradient-angle: 360deg;
        }
        100% {
            --gradient-angle: 540deg;
        }
    }

    /* team */
    .team-slide__image img {
        -webkit-transition: -webkit-transform 0.8s ease-in-out;
        transition: -webkit-transform 0.8s ease-in-out;
        -o-transition: transform 0.8s ease-in-out;
        transition: transform 0.8s ease-in-out;
        transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
    }
    .team-slide:hover .team-slide__image img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    /* footer */
    .footer-logo:hover {
        color: #7a3bff;
    }
    .footer-social a:hover path,
    .footer-social a:hover g rect {
        fill: #7a3bff;
    }
    .footer-buy:hover {
        opacity: 1;
    }
    .footer-link:hover {
        color: rgba(255, 255, 255, 1);
    }
}

/* header */
.header {
    padding: 81px 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}
.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 84%;
    letter-spacing: 0.5em;
    color: #e5e5e5;
}
.header-logo img {
    width: 61px;
    height: 61px;
}
.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 64.8px;
    margin: 4px 11px 0px 0px;
}
.header-nav a {
    position: relative;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    padding-bottom: 4px;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #7a3bff;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.header-nav a:hover::after {
    opacity: 1;
}
.mobile-button {
    display: none;
    width: 32px;
    height: 27px;
}
.mobile-button svg {
    width: 100%;
    height: 100%;
}

/* main */
.main {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 108vw;
    background-position-y: 453px;
}
.main-content {
    position: relative;
    /*min-height: 100vh;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 360px;
}
.main-content::before {
    content: url('../images/ellipse-bg-1.svg');
    position: absolute;
    top: -600px;
    left: -800px;
    z-index: -1;
}
.firefox .main-content::before {
    opacity: 0.5;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.main-content::after {
    content: url(../images/ellipse-bg-2.svg);
    position: absolute;
    top: -450px;
    right: -612px;
    z-index: -1;
}
.firefox .main-content::after {
    opacity: 0.5;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.main-content__info {
    font-family: 'Montserrat', sans-serif;
    max-width: 686px;
}
.main-content__info-subtitle {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 16px;
}
.main-content__info-title {
    max-width: 686px;
    font-size: 54px;
    line-height: 90%;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    color: transparent;
    background: -o-linear-gradient(64deg, #999 0%, #d9d9d9 50%, #999 100%);
    background: linear-gradient(26deg, #999 0%, #d9d9d9 50%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
}
.main-content__info-title.animate::before {
    content: attr(data-heading);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    mix-blend-mode: screen;
    background-size: 300%;
    -webkit-animation: shine 2.6s ease-in-out forwards;
    animation: shine 2.6s ease-in-out forwards;
}
.main-content__info-title span {
    position: relative;
    display: inline-block;
    background: -o-linear-gradient(64deg, #33176f 0%, #7a3bff 50%, #33176f 100%);
    background: linear-gradient(26deg, #33176f 0%, #7a3bff 50%, #33176f 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.main-content__info-title span::before {
    content: attr(data-heading);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(64deg, #33176f 0%, #7a3bff 50%, #33176f 100%);
    background: linear-gradient(26deg, #33176f 0%, #7a3bff 50%, #33176f 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
@-webkit-keyframes shine {
    0% {
        background-position: 100%;
    }
    100% {
        background-position: -50%;
    }
}
@keyframes shine {
    0% {
        background-position: 100%;
    }
    100% {
        background-position: -50%;
    }
}
.main-content__description {
    font-family: 'Raleway', sans-serif;
    line-height: 118%;
    max-width: 586px;
    padding-right: 184px;
    margin-top: 41px;
}
.main-content__description strong {
    color: #7a3bff;
}
.main-content__buy {
    display: none;
    font-family: 'Chakra Petch', sans-serif;
    margin-top: -128px;
    width: 540px;
    border: 1px solid #7A3BFFAD;
    border-radius: 30px;
    background: #0a0618;
    padding: 40px;
}
.main-content__buy strong {
    color: #7a3bff;
}
.main-content__buy .rotating-gradient-btn {
    margin-top: 37px;
    width: 100%
}
.modal-dialog {
    width: 85%;
    padding: 30px 20px 20px;
    border-radius: 15px;
    text-align: center;
    background: #210F44;
}

.modal-dialog .modal-title {
    font-size: 18px;
}

.modal-dialog .modal-desc {
    font-size: 16px;
    margin-top: 15px;
}

.modal-dialog .modal-body {
    margin-top: 20px;
}

.modal-dialog .modal-body input {
    background: #140b2d;
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 16px;
}
.modal-dialog .modal-body input::placeholder {
    color: #ffffff5e;
}
.modal-dialog .modal-body input::-webkit-input-placeholder {
    color: #ffffff5e;
}
.modal-dialog .modal-body input::-moz-placeholder {
    color: #ffffff5e;
}
.modal-dialog .modal-body input:-ms-input-placeholder {
    color: #ffffff5e;
}
.modal-dialog .modal-body input:-moz-placeholder {
    color: #ffffff5e;
}

.modal-dialog .modal-body .rotating-gradient-btn {
    margin-top: 20px;
    padding: 12px;
}

.live-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 41px;
    font-size: 20px;
    font-weight: 600;
    color: #4BD666;
    z-index: 101;
    position: relative;
}
.live-header .live-item {
    background: #4BD6660D;
    border-radius: 10px;
    padding: 11.06px 31.6px;
    display: flex;
    align-items: center;
    gap: 12px
}
.live-item .live-status {
    width:10px;
    height: 10px;
    background: #4BD666;
    border-radius: 50%;
}

.live-item.status-new, .live-item.status-expired {
    background: #A0A0A00D;
    color: #AAA;
}
.live-item.status-new .live-status, .live-item.status-expired .live-status {
    background: #AAA;
}

.live-item.status-preparing {
    background: #4060D00D;
    color: #4B6ED6;
}
.live-item.status-preparing .live-status {
    background: #4B6ED6;
}

.live-item.status-cancel {
    background: #D6B34B0D;
    color: #ff9800;
}
.live-item.status-cancel .live-status {
    background: #ff9800;
}

.live-item.status-waiting, .live-item.status-confirming {
    background: #4BD6660D;
    color: #4BD666;
}
.live-item.status-waiting .live-status, .live-item.status-confirming .live-status {
    background: #4BD666;
}

.live-item.status-error, .live-item.status-error_receive_address, .live-item.status-error_sending {
    background: #D64B4B0D;
    color: #D64B4B;
}
.live-item.status-error .live-status, .live-item.status-error_receive_address .live-status, .live-item.status-error_sending .live-status {
    background: #D64B4B;
}

.presale-title {
    margin-top: 37px;
    font-size: 64px;
    font-weight: 600;
    line-height: 58px;
}
.current-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 37px;
    line-height: 18px;
    font-size: 20px;
    font-weight: 600;
}
.receive-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
}
.price-title, .address-title, .wallet-pay-title {
    color: #FFFFFF4D;
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
}
.address-title span {
    font-size: 14px;
    word-break: break-all;
}
.receive-title {
    height: 15.5px;
}
.price-title span, .receive-title span, .promocode-title span, .recipient-title span, .address-title span, .wallet-pay-title span {
    color: #ffffff;
    margin-left: 15px;
}
.send-title {
    margin-top: 37px;
    line-height: 18px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.select-currency {
    margin-top: 14px;
    background: #D9D9D908;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.select-currency input {
    width: auto;
    font-size: 22px;
    color: #ffffff;
    flex: 2;
}
.select-currency .currency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 18px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 10px;
    -webkit-transition: background-color 300ms ease;
    -ms-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
}
.select-currency .currency:hover {
    cursor: pointer;
    /*background: #0a0618;*/
    background: #D9D9D912;
}
.select-currency .coin {
    height: 25px
}
.select-currency .arrow {
    height: 20px
}
.receive-title {
    margin-top: 14px;
    line-height: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF4D;
}
.receive-title div {
    display: inline-block;
}
.recipient-title {
    margin-top: 14px;
    line-height: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF4D;
}
.promocode-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
    line-height: 18px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.promocode {
    margin-top: 14px;
    background: #D9D9D908;
    border-radius: 10px;
}
.promocode input {
    width: auto;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    flex: 2;
}
.promocode input:disabled {
    color: #7A3BFF;
}
.promocode .promocode-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promocode .promocode-input svg {
    height: 25px;
    width: 25px;
    cursor: pointer;
}
.select-currency, .promocode {
    padding: 15px 10px 15px 15px;
}
.main-content__social {
    position: absolute;
    right: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    padding-top: 29px;
}
.main-content__social li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.main-content__social li:first-child {
    -ms-flex-item-align: anchor-center;
    -ms-grid-row-align: anchor-center;
    align-self: anchor-center;
}
.main-content__social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    color: #9097a6;
}
.main-content__social path {
    -webkit-transition: fill 0.4s ease-in-out;
    -o-transition: fill 0.4s ease-in-out;
    transition: fill 0.4s ease-in-out;
}
.main-content__social span {
    font-family: 'Raleway', sans-serif;
    color: inherit;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
}
.main-content__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    width: 100%;
}
main .main-content .main-additionally {
    display: none;
}
main.buy-active .main-content .main-additionally {
    display: block;
}
.main-additionally {
    width: 100%;
}
.main-additionally__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 141%;
    text-align: center;
    color: #fff;
    margin-bottom: 37px;
    letter-spacing: 0.03rem;
}
.main-additionally__swiper {
    overflow: visible;
}
.main-additionally__swiper .swiper-wrapper {
    margin: 0 77px;
    width: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.main-additionally__slide {
    opacity: 0.3;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
}
.main-additionally__slide img {
    height: 100%;
}
.main-space-button {
    margin-top: 95px;
}
.main-svg-lines {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.main-svg-line {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.main-svg-line-1 {
    -webkit-transform: translateX(34px);
    -ms-transform: translateX(34px);
    transform: translateX(34px);
}
.main-svg-line-2 {
    -webkit-transform: translateY(134px) translateX(-88px);
    -ms-transform: translateY(134px) translateX(-88px);
    transform: translateY(134px) translateX(-88px);
}
.main-svg-line-3 {
    -webkit-transform: scaleX(-1) translateX(-88px) translateY(134px);
    -ms-transform: scaleX(-1) translateX(-88px) translateY(134px);
    transform: scaleX(-1) translateX(-88px) translateY(134px);
}
.main-svg-line-4 {
    -webkit-transform: scaleX(-1) translateX(34px);
    -ms-transform: scaleX(-1) translateX(34px);
    transform: scaleX(-1) translateX(34px);
}

/* about */
.about {
    position: relative;
    margin-top: 141px;
}
.about::before {
    content: url('../images/ellipse-bg-2.svg');
    position: absolute;
    top: -180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}
.firefox .about::before {
    opacity: 0.5;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.about-list__wrapper {
    position: relative;
    margin-top: 67px;
    -webkit-transition: max-height 3s ease-in-out;
    -o-transition: max-height 3s ease-in-out;
    transition: max-height 3s ease-in-out;
}
.about-list__wrapper::before {
    content: url('../images/about-list.svg');
    position: absolute;
    left: -243.758px;
    top: 50.56%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.about-list__wrapper::after {
    content: url('../images/about-list.svg');
    position: absolute;
    right: -243.758px;
    top: 49.4%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.about-list {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
}
.about-list::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 15px;
    width: 300px;
    background: rgba(122, 59, 255, 0.1);
    z-index: -1;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    border-radius: 200%;
    -webkit-animation: about-list 4s linear infinite;
    animation: about-list 4s linear infinite;
}

.about-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    padding: 15px 35px 30px 35px;
    min-height: 215px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-right: 1.6px solid transparent;
    -o-border-image: -o-linear-gradient(top, rgba(79, 79, 79, 0.2), rgba(181, 181, 181, 0.3)) 1;
    border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(79, 79, 79, 0.2)), to(rgba(181, 181, 181, 0.3))) 1;
    border-image: linear-gradient(to bottom, rgba(79, 79, 79, 0.2), rgba(181, 181, 181, 0.3)) 1;
    z-index: 1;
}
.about-list li:nth-child(n + 5) {
    -o-border-image: -o-linear-gradient(top, rgba(181, 181, 181, 0.3), rgba(79, 79, 79, 0.2)) 1;
    border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(181, 181, 181, 0.3)), to(rgba(79, 79, 79, 0.2))) 1;
    border-image: linear-gradient(to bottom, rgba(181, 181, 181, 0.3), rgba(79, 79, 79, 0.2)) 1;
}
.about-list li:nth-child(4),
.about-list li:nth-child(8) {
    border-right: none;
}
.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: -o-linear-gradient(top, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0.6) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(217, 217, 217, 0)), to(rgba(217, 217, 217, 0.6)));
    background: linear-gradient(to bottom, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0.6) 100%);
    opacity: 0.06;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.about-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: -o-linear-gradient(top, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0.6) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(217, 217, 217, 0)), to(rgba(217, 217, 217, 0.6)));
    background: linear-gradient(to bottom, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0.6) 100%);
    opacity: var(--after-opacity, 0);
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}
@media (min-width: 992px) {
    .about-list li:nth-child(n + 5)::before {
        background: -o-linear-gradient(top, rgba(217, 217, 217, 0.6) 0%, rgba(217, 217, 217, 0) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(217, 217, 217, 0.6)), to(rgba(217, 217, 217, 0)));
        background: linear-gradient(to bottom, rgba(217, 217, 217, 0.6) 0%, rgba(217, 217, 217, 0) 100%);
    }
}
.about-list li:active::before,
.about-list li:active:nth-child(n + 5)::before {
    opacity: 0;
}
.about-list h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 11px;
}
.about-list p {
    opacity: 0.7;
}
.about-list__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 1.5px;
    background: #4f4f4f;
    opacity: 0.4;
    overflow: hidden;
    z-index: 15;
}
.about-list__line::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 280px;
    height: 2px;
    background: -o-radial-gradient(circle, #8349ff 36px, transparent 90%);
    background: radial-gradient(circle, #8349ff 36px, transparent 90%);
    opacity: 1;
    -webkit-animation: about-list 4s linear infinite;
    animation: about-list 4s linear infinite;
    z-index: 15;
}

@-webkit-keyframes about-list {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes about-list {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* tokenomics */
.tokenomics {
    margin-top: 141px;
}
.tokenomics-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 39px;
}
.tokenomic-btn {
    min-width: 148px;
    padding: 18px 24px;
    font-size: 12px;
}
#diagram {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
}
.tokenomics-diagram {
    margin-top: 67px;
    position: relative;
    /*padding: 39px 0 54px 20px;*/
}
.tokenomics-diagram::before {
    content: url('../images/ellipse-bg-1.svg');
    position: absolute;
    top: -900px;
    left: -800px;
    z-index: -1;
}
.firefox .tokenomics-diagram::before {
    opacity: 0.4;
    -webkit-filter: blur(400px);
    filter: blur(400px);
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}
.tokenomics-diagram::after {
    content: url(../images/ellipse-bg-2.svg);
    position: absolute;
    top: -280px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}
.firefox .tokenomics-diagram::after {
    opacity: 0.5;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.tokenomics-diagram__center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    padding: 0 0 16px 16px;
}
.tokenomics-diagram__center-name {
    font-weight: 400;
    font-size: 16px;
}
.tokenomics-diagram__center-sum {
    font-weight: 700;
    font-size: 32px;
}
.tokenomics-diagram__elem {
    position: absolute;
}
.tokenomics-diagram__elem {
    position: absolute;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 29px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.tokenomics-diagram__elem span {
    color: rgba(255, 255, 255, 0.5);
}
.tokenomics-diagram__elems {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.4;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.tokenomics-diagram__elems.active {
    opacity: 1;
}
.tokenomics-diagram__elem::before {
    content: '';
    position: absolute;
    background: #fff;
    width: auto;
    height: 1px;
}
.tokenomics-diagram__elem::after {
    content: '';
    position: absolute;
    height: 1px;
    background: #fff;
}
.tokenomics-diagram__elem-1 {
    left: 242px;
    top: 158px;
}
.tokenomics-diagram__elem-1::before {
    left: -72px;
    right: 0;
    bottom: 40px;
}
.tokenomics-diagram__elem-1::after {
    left: -121px;
    bottom: 60px;
    width: 58px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tokenomics-diagram__elem-2 {
    left: 60px;
    top: 194px;
}
.tokenomics-diagram__elem-2::before {
    left: -19px;
    right: 0;
    bottom: 38px;
}
.tokenomics-diagram__elem-2::after {
    left: -60.5px;
    bottom: 57.6px;
    width: 51px;
    -webkit-transform: rotate(51deg);
    -ms-transform: rotate(51deg);
    transform: rotate(51deg);
}
.tokenomics-diagram__elem-3 {
    right: 231px;
    top: 151px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.tokenomics-diagram__elem-3::before {
    left: 0;
    right: -126px;
    bottom: 38px;
}
.tokenomics-diagram__elem-3::after {
    right: -149px;
    bottom: 48px;
    width: 28px;
    -webkit-transform: rotate(-49deg);
    -ms-transform: rotate(-49deg);
    transform: rotate(-49deg);
}
.tokenomics-diagram__elem-4 {
    right: 233px;
    top: -35px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.tokenomics-diagram__elem-4::before {
    left: 0;
    right: -41px;
    bottom: 38px;
}
.tokenomics-diagram__elem-5 {
    right: 132px;
    top: -295px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.tokenomics-diagram__elem-5::before {
    left: 0;
    right: -41px;
    bottom: 38px;
}
.tokenomics-diagram__elem-5::after {
    right: -100.5px;
    bottom: 13.5px;
    width: 70px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tokenomics-diagram__elem-6 {
    right: 291px;
    top: -211px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.tokenomics-diagram__elem-6::before {
    left: 0;
    bottom: 38px;
    right: -133px;
}
.tokenomics-diagram__elem-6::after {
    right: -159.5px;
    bottom: 28.5px;
    width: 30px;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}
.tokenomics-diagram__elem-7 {
    left: 242px;
    top: -227px;
}
.tokenomics-diagram__elem-7::before {
    left: -71px;
    right: 0;
    bottom: 38px;
}
.tokenomics-diagram__elem-7::after {
    left: -100px;
    bottom: 25px;
    width: 35px;
    -webkit-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

/* gamefi */
.gamefi {
    margin-top:141px;
}
.gamefi-inner {
    position: relative;
}
.gamefi-content {
    position: relative;
    margin-top: 66px;
}
.gamefi-content::after {
    content: url(../images/ellipse-bg-2.svg);
    position: absolute;
    top: 126px;
    left: -50%;
    z-index: -1;
}
.firefox .gamefi-content::after {
    opacity: 0.5;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.gamefi-btn {
    position: absolute;
    bottom: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.gamefi-content__image {
    width: 100%;
    height: 668px;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 20px;
}
.gamefi-content__image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.gamefi-lines {
    position: absolute;
    left: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
}
.gamefi-line {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.gamefi-line-1 {
    right: 1180px;
    bottom: -249px;
}
.gamefi-line-2 {
    right: 1180px;
    top: -409px;
    -webkit-transform: rotate(180deg) scaleX(-1);
    -ms-transform: rotate(180deg) scaleX(-1);
    transform: rotate(180deg) scaleX(-1);
}
.gamefi-line-3 {
    left: 1179px;
    top: -409px;
    -webkit-transform: scaleX(-1) scaleY(-1);
    -ms-transform: scaleX(-1) scaleY(-1);
    transform: scaleX(-1) scaleY(-1);
}
.gamefi-line-4 {
    left: 1180px;
    bottom: -252px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
/* roadmap */
.roadmap {
    margin-top: 141px;
}
.roadmap-grid {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 735px;
    grid-template-columns: auto 735px;
    margin-top: 67px;
}
.roadmap-grid::after {
    content: url(../images/ellipse-bg-1.svg);
    position: absolute;
    top: -700px;
    right: -623px;
    z-index: -1;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
.firefox .roadmap-grid::after {
    opacity: 0.4;
    -webkit-filter: blur(400px);
    filter: blur(400px);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
.roadmap-list {
    color: #fff;
}
.roadmap-list__item {
    position: relative;
    padding: 0px 20px 0px 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 35px;
    overflow: hidden;
}
.roadmap-list__item-content {
    padding-top: 4px;
    margin-top: -12px;
}
/*.roadmap-list__item--1 {
    overflow: visible;
}*/
/*.roadmap-list__item--1::after {
    content: '';
    position: absolute;
    left: 48px;
    top: 56px;
    height: 430px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-transition: height 3s ease-in-out;
    -o-transition: height 3s ease-in-out;
    transition: height 3s ease-in-out;
}*/
/*.roadmap-list__item--1.active-line::after {
    height: 334px;
}
.roadmap-list__item--2 {
    min-height: 285px;
}
.roadmap-list__item--2::after {
    content: '';
    position: absolute;
    left: 48px;
    top: 56px;
    height: 1px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-transition: height 3s ease-in-out;
    -o-transition: height 3s ease-in-out;
    transition: height 3s ease-in-out;
}
.roadmap-list__item--2.active-line::after {
    height: 100%;
}
.roadmap-list__item--2,
.roadmap-list__item--3 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: opacity 3s ease-in-out, -webkit-transform 3s ease-in-out;
    transition: opacity 3s ease-in-out, -webkit-transform 3s ease-in-out;
    -o-transition: opacity 3s ease-in-out, transform 3s ease-in-out;
    transition: opacity 3s ease-in-out, transform 3s ease-in-out;
    transition: opacity 3s ease-in-out, transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
}
.roadmap-list__item--2.active,
.roadmap-list__item--3.active {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}*/
.roadmap-list__item--3 .roadmap-list__item-content {
    padding-top: 0px;
}
.roadmap-list__item-num {
    font-family: 'Montserrat', sans-serif;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 99999;
    position: relative;
}
.roadmap-list__item.completed .roadmap-list__item-num {
    color: #7a3bff;
    border: 1px solid #7a3bff;
}
.roadmap-list__item-date {
    font-family: 'Chakra Petch SemiBold', sans-serif;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 0;
    line-height: 42px;
}
/*.roadmap-list__item--3 .roadmap-list__item-date {
    margin-bottom: 32px;
}*/
.roadmap-list__item-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 165%;
    margin-bottom: 17px;
    color: #aaa;
    max-width: 400px;
}
/*.roadmap-list__item--3 .roadmap-list__item-title {
    margin-bottom: 21px;
}*/
.roadmap-animation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 0 77px -62px;
}
.roadmap-animation__logo {
    position: relative;
    width: 166px;
    height: 166px;
    border-radius: 36px;
    -webkit-box-shadow: 0 3px 198px 0 rgba(88, 75, 255, 0.74), 0 3px 15px 0 rgba(84, 57, 255, 0.25), 0 3px 24px 0 rgba(50, 71, 255, 0.46), 0 2px 3px 0 rgba(221, 86, 255, 0.25), inset 0 -4px 22px 0 rgba(39, 132, 255, 0.55), inset 0 -4px 4px 0 rgba(202, 77, 255, 0.25);
    box-shadow: 0 3px 198px 0 rgba(88, 75, 255, 0.74), 0 3px 15px 0 rgba(84, 57, 255, 0.25), 0 3px 24px 0 rgba(50, 71, 255, 0.46), 0 2px 3px 0 rgba(221, 86, 255, 0.25), inset 0 -4px 22px 0 rgba(39, 132, 255, 0.55), inset 0 -4px 4px 0 rgba(202, 77, 255, 0.25);
    font-weight: 700;
    font-size: 64px;
    line-height: 112%;
    letter-spacing: -0.02em;
    text-align: center;
    background: -o-linear-gradient(311deg, #622cd5 0%, #7144d2 50.96%, #5b29c7 100%);
    background: linear-gradient(139deg, #622cd5 0%, #7144d2 50.96%, #5b29c7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 63px 0 rgba(98, 44, 213, 0.72);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    --gradient-rotation: 0deg;
    z-index: 1;
}
.roadmap-animation__logo span::before {
    content: 'FT';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.roadmap-animation__logo::after {
    content: '';
    position: absolute;
    width: 370px;
    height: 370px;
    background: -o-linear-gradient(bottom, rgba(88, 75, 255, 1) 0%, rgba(255, 255, 255, 0) 36%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(88, 75, 255, 1)), color-stop(36%, rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgba(88, 75, 255, 1) 0%, rgba(255, 255, 255, 0) 36%);
    border-radius: 50%;
    -webkit-filter: blur(65px);
    filter: blur(65px);
    -webkit-animation: rotate-around-square 5.5s linear infinite;
    animation: rotate-around-square 5.5s linear infinite;
    will-change: transform;
    z-index: 15;
}
@-webkit-keyframes rotate-around-square {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate-around-square {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.roadmap-animation__logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 35.5714px;
    padding: 1px;
    background: -o-linear-gradient(var(--gradient-rotation), rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-rotation)), color-stop(0%, rgba(237, 237, 237, 0)), to(rgba(237, 237, 237, 1)));
    background: linear-gradient(var(--gradient-rotation), rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 1) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: 20;
}
.roadmap-animation__lines {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 166px;
    height: 166px;
}
.roadmap-animation__lines::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #020010;
    border-radius: 36px;
}
.roadmap-animation__line {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    z-index: -1;
}
.roadmap-animation__line-1 {
    left: 134px;
    top: -27px;
}
.roadmap-animation__line-2 {
    top: -17px;
    left: 163px;
}
.roadmap-animation__line-3 {
    bottom: 5px;
    left: 162px;
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}
.roadmap-animation__line-4 {
    left: 133px;
    bottom: -45px;
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}
.roadmap-animation__line-5 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 335px;
    right: -224px;
}
.roadmap-animation__line-6 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 271px;
    right: -121px;
}
.roadmap-animation__line-7 {
    -webkit-transform: rotate(90deg) scaleY(-1);
    -ms-transform: rotate(90deg) scaleY(-1);
    transform: rotate(90deg) scaleY(-1);
    top: 365px;
    right: -80px;
}
.roadmap-animation__line-8 {
    -webkit-transform: rotate(90deg) scaleY(-1);
    -ms-transform: rotate(90deg) scaleY(-1);
    transform: rotate(90deg) scaleY(-1);
    top: 241px;
    right: 23px;
}
.roadmap-animation__line-9 {
    -webkit-transform: scaleX(-1) scaleY(-1);
    -ms-transform: scaleX(-1) scaleY(-1);
    transform: scaleX(-1) scaleY(-1);
    right: 129px;
    bottom: -45px;
}
.roadmap-animation__line-10 {
    -webkit-transform: scaleX(-1) scaleY(-1);
    -ms-transform: scaleX(-1) scaleY(-1);
    transform: scaleX(-1) scaleY(-1);
    right: 159px;
    bottom: 5px;
}
.roadmap-animation__line-11 {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    right: 159px;
    bottom: 99px;
}
.roadmap-animation__line-12 {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    right: 129px;
    bottom: 149px;
}
.roadmap-animation__line-13 {
    right: -50px;
    top: -208px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.roadmap-animation__line-14 {
    right: -7px;
    top: -184px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.roadmap-animation__line-15 {
    left: -82px;
    top: -238px;
    -webkit-transform: rotate(-90deg) scaleY(-1);
    -ms-transform: rotate(-90deg) scaleY(-1);
    transform: rotate(-90deg) scaleY(-1);
}
.roadmap-animation__line-16 {
    left: 23px;
    top: -155px;
    -webkit-transform: rotate(-90deg) scaleY(-1);
    -ms-transform: rotate(-90deg) scaleY(-1);
    transform: rotate(-90deg) scaleY(-1);
}

.border-button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 9px 27px 11px 26px;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #fff;
    min-width: 225px;
    margin: 53px 0 40px;
}

/* team */
.team {
    margin-top: 141px;
    padding: 0;
}
.team-content {
    position: relative;
    margin-top: 67px;
}
.team-content::before {
    content: url('../images/ellipse-bg-1.svg');
    position: absolute;
    top: -909px;
    left: -528px;
    z-index: -1;
}
.firefox .team-content::before {
    opacity: 0.4;
    -webkit-filter: blur(400px);
    filter: blur(400px);
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    top: -1400px;
    left: -1000px;
}
.team-slide {
    font-family: 'Chakra Petch SemiBold', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    width: 297px;
}

.team-slide__image {
    border-radius: 20px;
    width: 100%;
    height: 297px;
    overflow: hidden;
}
.team-slide__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}
.team-slide__name {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}
.team-slide__status {
    font-weight: 600;
    text-align: center;
    opacity: 0.6;
}
.more-button {
    position: relative;
    display: none;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 53px auto 0;
    padding-left: 6px;
    z-index: 1;
    -webkit-transition: color 0.6s ease-in-out;
    -o-transition: color 0.6s ease-in-out;
    transition: color 0.6s ease-in-out;
}
.more-button:active {
    color: #7a3bff;
}
.more-button path {
    -webkit-transition: fill 0.6s ease-in-out;
    -o-transition: fill 0.6s ease-in-out;
    transition: fill 0.6s ease-in-out;
}
.more-button:active path {
    fill: #7a3bff;
}
.more-button.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.more-button svg {
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.more-button.active-show svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* footer  */
.footer {
    padding: 81px 0;
    color: #fff;
}
.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-logo {
    font-family: 'Chakra Petch SemiBold', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 75%;
    letter-spacing: 0.31em;
    text-align: center;
    color: inherit;
    -webkit-transition: color 0.8s ease-in-out;
    -o-transition: color 0.8s ease-in-out;
    transition: color 0.8s ease-in-out;
}
.footer-logo:active {
    color: #7a3bff;
}
.footer-buy {
    padding-right: 10px;
    font-size: 17px;
    line-height: 165%;
    text-align: center;
    opacity: 0.75;
    color: inherit;
    -webkit-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
}
.footer-buy:active {
    opacity: 1;
}
.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}
.footer-social path,
.footer-social g rect {
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.footer-social a:active path,
.footer-social a:active g rect {
    fill: #7a3bff;
}
.footer-bottom {
    padding-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 39px;
    font-size: 15px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.75);
}
.footer-copy {
    text-align: center;
}
.footer-link--terms {
    font-size: 14px;
    line-height: 171%;
}
.footer-link {
    color: inherit;
    -webkit-transition: color 0.6s ease-in-out;
    -o-transition: color 0.6s ease-in-out;
    transition: color 0.6s ease-in-out;
}
.footer-link:active {
    color: rgba(255, 255, 255, 1);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 350px;
    height: 100%;
    background: #020010;
    z-index: 101;
    overflow: hidden;
    -webkit-transition: right 0.7s ease-in-out;
    -o-transition: right 0.7s ease-in-out;
    transition: right 0.7s ease-in-out;
}
.mobile-menu::before {
    content: url(../images/ellipse-bg-1.svg);
    position: absolute;
    top: -500px;
    left: -634px;
    z-index: -1;
    width: 100px;
    height: 100px;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease-in-out;
    -o-transition: opacity 0.8s ease-in-out;
    transition: opacity 0.8s ease-in-out;
}
.frosted-glass {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100svh;
    background: rgba(87, 87, 87, 0.36);
    -webkit-backdrop-filter: blur(1px) saturate(160%);
    backdrop-filter: blur(1px) saturate(160%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 0;
    z-index: -100;
    -webkit-transition: opacity 0.8s ease, height 0.4s ease-in-out;
    -o-transition: opacity 0.8s ease, height 0.4s ease-in-out;
    transition: opacity 0.8s ease, height 0.4s ease-in-out;
}
.frosted-glass.active {
    width: calc(100% - 350px);
    -webkit-animation: frosted-glass 2.5s ease forwards;
    animation: frosted-glass 2.5s ease forwards;
}
@-webkit-keyframes frosted-glass {
    0% {
        z-index: 100;
        opacity: 0;
    }
    100% {
        z-index: 103;
        opacity: 1;
    }
}
@keyframes frosted-glass {
    0% {
        z-index: 100;
        opacity: 0;
    }
    100% {
        z-index: 103;
        opacity: 1;
    }
}
.mobile-menu.active:before {
    opacity: 1;
}
.mobile-menu.active {
    right: 0%;
}
.mobile-menu__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100svh;
    padding: 63px 25px;
    width: 350px;
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    z-index: 110;
    -webkit-transition: right 0.7s ease-in-out, height 0.4s ease-in-out;
    -o-transition: right 0.7s ease-in-out, height 0.4s ease-in-out;
    transition: right 0.7s ease-in-out, height 0.4s ease-in-out;
    background: #02001075;
}
.mobile-menu.active ~ .mobile-menu__content {
    right: 0;
}
.mobile-menu-lines {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}
.mobile-menu-lines.active {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 102;
}
.mobile-menu-line {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.mobile-menu-line-1 {
    -webkit-transform: translateY(134px) translateX(-43px);
    -ms-transform: translateY(134px) translateX(-43px);
    transform: translateY(134px) translateX(-43px);
}
.mobile-menu-line-2 {
    -webkit-transform: scaleX(-1) translateX(-43px) translateY(134px);
    -ms-transform: scaleX(-1) translateX(-43px) translateY(134px);
    transform: scaleX(-1) translateX(-43px) translateY(134px);
}

.mobile-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    font-size: 32px;
    line-height: 84%;
    letter-spacing: 0.5em;
    color: #e5e5e5;
    margin-bottom: 20px;
}
.mobile-logo img {
    width: 61px;
    height: 61px;
}
.mobile-menu__list a {
    display: block;
    padding: 10px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}
.mobile-menu__socials {
    /*display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;*/
    display: flex;
    gap: 24px;
    align-items: center;
}
.mobile-menu__socials a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}
.mobile-menu__socials svg {
    /*-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);*/
}
.mobile-menu__socials span {
    font-family: 'Raleway', sans-serif;
    color: rgb(144, 151, 166);
    -webkit-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
}
html.no-scroll {
    overflow: hidden;
}
html {
    scroll-behavior: smooth;
}
.main-line-gradient,
.roadmap-line-gradient-3s,
.roadmap-line-gradient-4s,
.roadmap-line-gradient-5s {
    will-change: transform, opacity;
}

/* loading */
.loading {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 0, 16, 0.55);
    -webkit-backdrop-filter: blur(1px) saturate(160%);
    backdrop-filter: blur(1px) saturate(160%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.loading img {
    width: 61px;
    height: 61px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity: 0.7;
    -webkit-animation: loading 3s ease-in-out infinite;
    animation: loading 3s ease-in-out infinite;
    -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
    transition: opacity 1s ease, -webkit-transform 1s ease;
    -o-transition: transform 1s ease, opacity 1s ease;
    transition: transform 1s ease, opacity 1s ease;
    transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

.loading.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

.loading.active img {
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: scale(3);
        transform: scale(3);
    }
    50% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
    100% {
        -webkit-transform: scale(3);
        transform: scale(3);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: scale(3);
        transform: scale(3);
    }
    50% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
    100% {
        -webkit-transform: scale(3);
        transform: scale(3);
    }
}

@media (max-width: 1440px) {
    /* base  */
    .container {
        max-width: 1310px;
    }

    /* main */
    .main {
        background-position-y: 440px;
        background-size: 98vw;
    }
    .main-content {
        padding-top: 264px;
    }
    .main-additionally__swiper .swiper-wrapper {
        margin: 0;
    }
    .main-content__description {
        max-width: 523px;
        padding-right: 176px;
    }
    .main-content__buy {
        margin-top: -85px;
        width: 500px;
        padding: 35px;
        border-radius: 25px;
    }

    .stage, .about, .tokenomics, .gamefi, .roadmap, .faq, .team {
        margin-top: 126px;
    }

    .stage-list__wrapper, .tokenomics-diagram, .roadmap-grid, .faq-list__wrapper, .team-content {
        margin-top: 45px;
    }

    .about-list__wrapper {
        margin-top: 0;
    }

    .live-header {
        height: 30px;
        font-size: 16px;
    }
    .live-header .live-item {
        padding: 7px 25px;
    }
    .presale-title {
        margin-top: 25px;
        font-size: 48px;
        line-height: 40px;
    }
    .current-price, .send-title, .promocode-title, .receive-address {
        margin-top: 25px;
        font-size: 16px;
        line-height: 14px;
    }
    .price-title {
        font-size: 16px;
    }
    .price-title span, .receive-title span, .promocode-title span, .recipient-title span, .address-title span {
        margin-left: 12px;
    }
    .select-currency, .promocode {
        padding: 12px 8px 12px 12px;
    }
    .select-currency input, .promocode input {
        font-size: 18px;
    }
    .select-currency .currency {
        font-size: 14px;
    }
    .select-currency .coin {
        height: 20px
    }
    .select-currency .arrow {
        height: 17px
    }
    .receive-title {
        margin-top: 10px;
        line-height: 10px;
        font-size: 12px;
    }
    .recipient-title {
        margin-top: 10px;
        line-height: 10px;
        font-size: 12px;
    }
    .main-content__buy .rotating-gradient-btn {
        margin-top: 27px;
        font-size: 14px;
        padding: 16px 76px;
    }
    .main-svg-line-2 {
        -webkit-transform: translateY(134px) translateX(-43px);
        -ms-transform: translateY(134px) translateX(-43px);
        transform: translateY(134px) translateX(-43px);
    }
    .main-svg-line-3 {
        -webkit-transform: scaleX(-1) translateX(-43px) translateY(134px);
        -ms-transform: scaleX(-1) translateX(-43px) translateY(134px);
        transform: scaleX(-1) translateX(-43px) translateY(134px);
    }
    .main-svg-line-4 {
        -webkit-transform: scaleX(-1) translateX(24px);
        -ms-transform: scaleX(-1) translateX(24px);
        transform: scaleX(-1) translateX(24px);
    }
    .main-space-button {
        margin-top: 102px;
    }
    .main-content__social {
        right: 0px;
        gap: 24px;
    }

    /* header */
    .header {
        padding: 66px 0;
    }
    .header-nav ul {
        gap: 63px;
        margin: 4px 15px 0px 0px;
    }

    /* about */
    .about::before {
        top: -58px;
    }
    .about-list li {
        font-size: 14px;
    }
    .about-list h4 {
        font-size: 16px;
    }
    .about-list__wrapper::before,
    .about-list__wrapper::after {
        content: none;
    }

    /* tokenomics */
    .tokenomics-diagram::before {
        top: -500px;
    }

    /* space-animation */
    .space-animation__inner {
        left: -5px;
        top: -8px;
    }

    /* gamefi */
    .gamefi-content {
        margin-top: 72px;
    }
    .gamefi-line-1 {
        right: 1104px;
        bottom: -517px;
    }
    .gamefi-line-2 {
        right: 1104px;
        top: -144px;
    }
    .gamefi-line-3 {
        left: 1104px;
        top: -146px;
    }
    .gamefi-line-4 {
        left: 1104px;
        bottom: -513px;
    }

    /* roadmap */
    .roadmap {
        padding: 0;
    }

    /* team */
    .team-content::before {
        top: -583px;
        left: -586px;
    }

    /* footer  */
    .footer {
        padding-bottom: 79px;
    }
}
@media (max-width: 1280px) {
    /* space-button */
    .space-button-border-left::before {
        left: 35px;
        top: 25px;
    }
    .space-button-border-left::after {
        left: 35px;
        bottom: 65px;
    }
    .space-button-border-right::before {
        right: 35px;
        top: 25px;
    }
    .space-button-border-right::after {
        right: 35px;
        bottom: 65px;
    }

    /* header */
    .header-nav ul {
        gap: 30px;
    }
    .header-logo {
        gap: 15px;
    }

    /* main */
    .main-content__info {
        max-width: 50%;
    }
    .main-content__info-subtitle {
        font-size: 13px;
    }
    .main-content__info-title {
        max-width: 520px;
        font-size: 42px;
    }
    .main-content__description {
        max-width: 450px;
        padding-right: 100px;
    }

    /* gradient-button */
    .gradient-button {
        padding: 14px 38px;
    }

    /* about */
    .about-list li {
        padding: 15px 25px 25px 25px;
    }

    /* tokenomics */
    #diagram {
        height: 45vw;
        width: 45vw;
        margin: 0 auto;
    }
    .tokenomics-diagram {
        padding: 1.9vw 0 3.2vw 0.7vw;
    }
    .tokenomics-diagram__elem span {
        font-size: 1.8vw;
    }
    .tokenomics-diagram__elem {
        font-size: 1.4vw;
        gap: 1vw;
    }
    .tokenomics-diagram__elem-2 {
        left: 6.5vw;
        top: 16.7vw;
    }
    .tokenomics-diagram__elem-2::before {
        left: -5.2vw;
        bottom: 2.7vw;
    }
    .tokenomics-diagram__elem-2::after {
        left: -8.9vw;
        bottom: 4.4vw;
        width: 4.5vw;
    }
    .tokenomics-diagram__elem-1 {
        left: 17vw;
        top: 12.93vw;
    }
    .tokenomics-diagram__elem-1::before {
        left: -4.4vw;
        bottom: 2.7vw;
    }
    .tokenomics-diagram__elem-1::after {
        left: -7.8vw;
        bottom: 4.1vw;
        width: 4vw;
    }
    .tokenomics-diagram__elem-3 {
        right: 15.5vw;
        top: 15vw;
    }
    .tokenomics-diagram__elem-3::before {
        right: -3.95vw;
        bottom: 2.7vw;
    }
    .tokenomics-diagram__elem-3::after {
        right: -8.3vw;
        bottom: 4.7vw;
        width: 5.3vw;
    }
    .tokenomics-diagram__elem-4 {
        right: 19.2vw;
        top: -1vw;
    }
    .tokenomics-diagram__elem-4::before {
        right: -3.4vw;
        bottom: 2.7vw;
    }
    .tokenomics-diagram__elem-5 {
        right: 9.7vw;
        top: -23.3vw;
    }
    .tokenomics-diagram__elem-5::before {
        right: -2.3vw;
        bottom: 2.7vw;
    }
    .tokenomics-diagram__elem-5::after {
        right: -7.4vw;
        bottom: 0.6vw;
        width: 6vw;
    }
    .tokenomics-diagram__elem-6 {
        right: 23.8vw;
        top: -18.5vw;
    }
    .tokenomics-diagram__elem-6::before {
        bottom: 2.75vw;
        right: -9.98vw;
    }
    .tokenomics-diagram__elem-6::after {
        right: -14.1vw;
        bottom: 1.2vw;
        width: 4.7vw;
    }
    .tokenomics-diagram__elem-7 {
        left: 20vw;
        top: -16.4vw;
    }
    .tokenomics-diagram__elem-7::before {
        left: -5.37vw;
        bottom: 2.8vw;
    }
    .tokenomics-diagram__elem-7::after {
        left: -8vw;
        bottom: 1.6vw;
        width: 3.2vw;
    }
    .tokenomics-diagram__center {
        padding: 0 0 1vw 0.5vw;
        font-size: 1.7vw;
        gap: 0.8vw;
    }
    .tokenomics-diagram__center-name {
        font-size: 1.7vw;
    }
    .tokenomics-diagram__center-sum {
        font-size: 2.5vw;
    }

    /* roadmap */
    .roadmap-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .main-content__info {
        max-width: 55%;
    }
    .main-content__buy {
        margin-top: -55px;
        width: 400px;
        padding: 25px;
        border-radius: 17px;
    }
    .live-header {
        height: 20px;
        font-size: 14px;
    }
    .live-header .live-item {
        padding: 5px 17px;
    }
    .presale-title {
        margin-top: 23px;
        font-size: 35px;
        line-height: 30px;
    }
    .current-price, .send-title, .promocode-title, .receive-address {
        margin-top: 23px;
        font-size: 14px;
        line-height: 12px;
    }
    .price-title span, .receive-title span, .promocode-title span, .recipient-title span, .address-title span {
        margin-left: 10px;
    }
    .select-currency, .promocode {
        padding: 10px 5px 10px 10px;
    }
    .select-currency input, .promocode input {
        font-size: 16px;
    }
    .select-currency .currency {
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 8px;
    }
    .select-currency .coin {
        height: 17px
    }
    .select-currency .arrow {
        height: 15px
    }
    .receive-title {
        margin-top: 8px;
        line-height: 8px;
        font-size: 10px;
    }
    .recipient-title {
        margin-top: 8px;
        line-height: 8px;
        font-size: 10px;
    }
    .main-content__buy .rotating-gradient-btn {
        margin-top: 27px;
        font-size: 12px;
        padding: 12px 76px;
        border-radius: 8px;
    }
}

@media (max-width: 1077px) {
    .main-content__description {
        max-width: 362px;
        padding-right: 80px;
        font-size: 13px;
    }
    .main-space-button {
        margin-top: 36px;
    }
}

@media (max-width: 991px) {
    /* header */
    .header-nav {
        display: none;
    }
    .header .gradient-button {
        display: none;
    }
    .mobile-button {
        display: inline-block;
    }
    .header-logo {
        width: 255px;
        height: 61px;
    }

    /* main */
    .main-content__info {
        max-width: 100%;
    }
    .main-content__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .main {
        background-image: none !important;
    }

    /* about */
    .about-list {
        -ms-grid-columns: 1fr 6px 1fr;
        grid-template-columns: repeat(2, 1fr);
        -webkit-column-gap: 6px;
        -moz-column-gap: 6px;
        column-gap: 6px;
    }
    .about-list__line {
        display: none;
    }
    .about-list li {
        padding: 15px 35px 30px 35px;
        border-right: none;
        min-height: 150px;
    }
    .about-list::before {
        content: none;
    }

    /* roadmap */
    .roadmap-animation {
        display: none;
    }
    .roadmap-grid {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .main-content__buy {
        margin: 65px auto 0;
        width: 100%;
        max-width: 450px;
    }
    .price-title span, .receive-title span, .promocode-title span, .recipient-title span, .address-title span {
        margin-left: 7px;
    }
}

@media (max-width: 768px) {
    /* gray-btn */
    .gray-btn {
        padding: 15px 65px;
        border-radius: 15px;
        font-size: 18px;
    }

    /* main */
    .main-content__info-title {
        max-width: 494px;
        font-size: 40px;
    }
    .main-content__social {
        display: none;
    }

    /* about */
    .about-list {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 0;
    }

    /* roadmap */
    .roadmap-list__item-date {
        font-size: 30px;
    }

    /* text-content */
    .text-content__top {
        font-size: 15px;
    }
    .text-content__title {
        font-size: 40px;
    }
    .text-content {
        font-size: 15px;
    }

    /* gamefi */
    .gamefi-content__image {
        height: 500px;
    }

    /* footer  */
    .footer {
        padding: 47px 0;
    }
    .footer-top {
        padding-bottom: 54px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
    .footer-buy {
        padding: 0;
        font-size: 16px;
    }
    .footer-social {
        gap: 30px;
    }
    .footer-bottom {
        padding-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 23px;
        font-size: 14px;
    }
    .footer-copy {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-top: 7px;
    }
    .stage, .about, .tokenomics, .gamefi, .roadmap, .faq, .team {
        margin-top: 90px;
    }
    .stage-list__wrapper, .tokenomics-diagram, .roadmap-grid, .faq-list__wrapper, .team-content {
        margin-top: 15px;
    }
}
@media (max-width: 500px) {
    /* about */
    .about::before {
        -webkit-transform: scale(0.7) translateX(-83%);
        -ms-transform: scale(0.7) translateX(-83%);
        transform: scale(0.7) translateX(-83%);
        top: -700px;
        left: 85%;
    }

    /* tokenomics */
    #diagram {
        height: 51vw;
        width: 51vw;
        margin: 0 auto;
    }

    .tokenomics-diagram {
        padding: 39px 0 54px 11px;
    }
    .tokenomics-diagram::after {
        top: -980px;
    }
    .tokenomics-diagram__elem span {
        font-size: 2.5vw;
    }
    .tokenomics-diagram__elem {
        font-size: 1.8vw;
        gap: 2vw;
    }
    .tokenomics-diagram__elem-2 {
        left: 9vw;
        top: 16.8vw;
    }
    .tokenomics-diagram__elem-2::before {
        left: -5.35vw;
        bottom: 4vw;
    }
    .tokenomics-diagram__elem-2::after {
        left: -9.05vw;
        bottom: 5.75vw;
        width: 4.6vw;
    }
    .tokenomics-diagram__elem-1 {
        left: 18.7vw;
    }
    .tokenomics-diagram__elem-1::before {
        bottom: 4vw;
    }
    .tokenomics-diagram__elem-1::after {
        left: -7.7vw;
        bottom: 5.4vw;
    }
    .tokenomics-diagram__elem-3 {
        right: 17.5vw;
        top: 16vw;
    }
    .tokenomics-diagram__elem-3::before {
        right: -5vw;
        bottom: 3.9vw;
    }
    .tokenomics-diagram__elem-3::after {
        right: -10.3vw;
        bottom: 6.4vw;
        width: 6.5vw;
    }
    .tokenomics-diagram__elem-4 {
        right: 19.5vw;
        top: -1vw;
    }
    .tokenomics-diagram__elem-4::before {
        right: -2.5vw;
        bottom: 3.9vw;
    }
    .tokenomics-diagram__elem-5 {
        right: 8vw;
        top: -27.9vw;
    }
    .tokenomics-diagram__elem-5::before {
        left: 0;
        right: -0.6vw;
        bottom: 3.9vw;
    }
    .tokenomics-diagram__elem-5::after {
        right: -6.3vw;
        bottom: 1.5vw;
        width: 6.9vw;
    }
    .tokenomics-diagram__elem-6 {
        right: 24vw;
        top: -19.5vw;
    }
    .tokenomics-diagram__elem-6::before {
        bottom: 4vw;
        right: -10vw;
    }
    .tokenomics-diagram__elem-6::after {
        right: -12.3vw;
        bottom: 3.2vw;
        width: 2.7vw;
    }
    .tokenomics-diagram__elem-7 {
        left: 23vw;
        top: -20vw;
    }
    .tokenomics-diagram__elem-7::before {
        left: -8vw;
        bottom: 4vw;
    }
    .tokenomics-diagram__elem-7::after {
        left: -9.6vw;
        bottom: 3.2vw;
        width: 2vw;
    }
    .tokenomics-diagram__center {
        padding: 0 0 3vw 2.5vw;
        font-size: 2.7vw;
    }
    .tokenomics-diagram__center-name {
        font-size: 2.7vw;
    }
    .tokenomics-diagram__center-sum {
        font-size: 3.5vw;
    }

    /* space-animation */
    .space-animation {
        width: 100%;
        padding-bottom: 50px;
    }

    .modal-dialog {
        width: 92%;
        padding: 20px 15px;
    }

    .modal-dialog .modal-body input {
        background: #140b2d;
        padding: 10px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* header  */
    .header {
        padding: 68px 0;
    }
    .mobile-button {
        width: 25px;
        height: 20px;
    }

    /* main */
    .main {
        background-image: none !important;
    }
    .main-content__info-subtitle {
        font-size: 12px;
    }
    .main-content__info-title {
        font-size: 32px;
        line-height: 90%;
        max-width: 336px;
    }
    .main-content__description {
        max-width: 311px;
        padding-right: 0;
        margin-top: 32px;
        font-size: 14px;
        line-height: 114%;
    }
    .main-content {
        padding-top: 190px;
        min-height: auto;
    }
    .main-content::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -582px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .main-content::before {
        top: -716px;
        left: -820px;
    }
    .main-svg-line-2 {
        -webkit-transform: translateY(-50px) translateX(-44px);
        -ms-transform: translateY(-50px) translateX(-44px);
        transform: translateY(-50px) translateX(-44px);
    }
    .main-svg-line-3 {
        -webkit-transform: translateY(-50px) translateX(45px) scaleX(-1);
        -ms-transform: translateY(-50px) translateX(45px) scaleX(-1);
        transform: translateY(-50px) translateX(45px) scaleX(-1);
    }

    /* about */
    .about-list__wrapper {
        /*max-height: 985px;*/
        overflow: hidden;
    }
    .about-list li {
        margin: 0 10px;
        line-height: 131%;
    }
    .about-list h4 {
        margin-bottom: 13px;
    }

    /* tokenomics */
    .tokenomics-buttons {
        gap: 30px;
    }
    .tokenomic-btn {
        min-width: 114px;
        padding: 12px 15px;
    }
    .tokenomics-diagram {
        padding: 2.4vw 0 5.9vw 2.7vw;
        margin-bottom: 34px;
    }

    /* space-button */
    .space-button-border-right::before {
        right: 13px;
        top: 34px;
        -webkit-transform: rotate(-90deg) scale(0.7);
        -ms-transform: rotate(-90deg) scale(0.7);
        transform: rotate(-90deg) scale(0.7);
    }
    .space-button-border-right::after {
        right: 12px;
        bottom: 84px;
        -webkit-transform: rotate(0deg) scale(0.7);
        -ms-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
    }
    .space-button-border-left::before {
        left: 13px;
        top: 34px;
        -webkit-transform: rotate(180deg) scale(0.7);
        -ms-transform: rotate(180deg) scale(0.7);
        transform: rotate(180deg) scale(0.7);
    }
    .space-button-border-left::after {
        left: 13px;
        bottom: 84px;
        -webkit-transform: rotate(90deg) scale(0.7);
        -ms-transform: rotate(90deg) scale(0.7);
        transform: rotate(90deg) scale(0.7);
    }

    /* gamefi */
    .gamefi-content {
        margin-top: 40px;
    }
    .gamefi-content::after {
        top: -1000px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    /* roadmap */
    .roadmap-grid::after {
        content: url(../images/ellipse-bg-2.svg);
        top: -900px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        right: auto;
    }
    .roadmap-list__item-num {
        width: 40px;
        height: 40px;
    }
    .roadmap-list__item {
        gap: 15px;
        padding: 0;
    }
    /*.roadmap-list__item--1::after {
        left: 20px;
        top: 40px;
    }*/
    .roadmap-list__item-date {
        font-size: 22px;
        /*margin-bottom: 22px;*/
        line-height: 26px;
    }
    .roadmap-list__item {
        font-size: 13px;
    }
    .roadmap-list__item .border-button {
        display: none;
    }
    .roadmap-grid {
        margin-top: -2px;
    }
    .roadmap-list__item-content {
        padding-top: 1px;
        margin-top: 0;
    }
    /*.roadmap-list__item--1 {
        min-height: 203px;
    }
    .roadmap-list__item--1::after {
        height: 261px;
    }
    .roadmap-list__item--1.active-line::after {
        height: 165px;
    }
    .roadmap-list__item--2::after {
        left: 20px;
        top: 39px;
    }
    .roadmap-list__item--2 {
        min-height: 234px;
    }*/
    .roadmap-space-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 48px;
        margin-bottom: -55px;
    }

    /* text-content */
    .text-content__top {
        font-size: 15px;
    }
    .text-content__title {
        font-size: 36px;
    }
    .text-content {
        padding: 0 10px;
        font-size: 13px;
    }

    /* space-animation */
    .space-animation__inner {
        left: -2px;
        top: 36px;
    }

    /* team */
    .team-content {
        margin-top: 6px;
    }
    .team-content::before {
        content: url(../images/ellipse-bg-2.svg);
        top: -800px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        right: auto;
    }
    .team-slider__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 28px;
        /*max-height: 1033px;*/
        -webkit-transition: max-height 3s ease-in-out;
        -o-transition: max-height 3s ease-in-out;
        transition: max-height 3s ease-in-out;
    }
    .team-slide {
        width: 100%;
    }
    .team-slide__image {
        width: 199px;
        height: 199px;
        margin: 0 auto 14px;
    }
    .team-slide__image img {
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    /* footer */
    .footer {
        position: relative;
    }
    .footer::after {
        content: url(../images/ellipse-bg-2.svg);
        position: absolute;
        top: -500px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        right: auto;
        z-index: -100;
    }
    .footer .container {
        padding: 0 12px;
    }
    .footer-logo {
        padding-left: 10px;
    }
    .footer-top {
        padding-bottom: 48px;
    }
    .footer-buy {
        font-size: 15px;
        line-height: 153%;
    }
    .footer-bottom {
        padding-top: 24px;
        font-size: 13px;
        line-height: 162%;
    }
    .footer-link--terms {
        font-size: 13px;
        line-height: 162%;
    }

    /* mobile-menu */
    .mobile-menu-line-1 {
        -webkit-transform: translateY(-50px) translateX(-44px);
        -ms-transform: translateY(-50px) translateX(-44px);
        transform: translateY(-50px) translateX(-44px);
    }
    .mobile-menu-line-2 {
        -webkit-transform: translateY(-50px) translateX(45px) scaleX(-1);
        -ms-transform: translateY(-50px) translateX(45px) scaleX(-1);
        transform: translateY(-50px) translateX(45px) scaleX(-1);
    }
    .mobile-menu__socials svg {
        /*width: 20px;
        height: 20px;*/
    }
    .mobile-menu__socials span {
        font-size: 14px;
    }
    .mobile-menu__list a {
        /*font-size: 14px;*/
    }
    .mobile-logo {
        font-size: 28px;
    }
    .mobile-logo img {
        width: 54px;
        height: 54px;
    }

    /* loading */
    .loading img {
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }
    .loading.active img {
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }

    @-webkit-keyframes loading {
        0% {
            -webkit-transform: scale(2);
            transform: scale(2);
        }
        50% {
            -webkit-transform: scale(1.5);
            transform: scale(1.5);
        }
        100% {
            -webkit-transform: scale(2);
            transform: scale(2);
        }
    }

    @keyframes loading {
        0% {
            -webkit-transform: scale(2);
            transform: scale(2);
        }
        50% {
            -webkit-transform: scale(1.5);
            transform: scale(1.5);
        }
        100% {
            -webkit-transform: scale(2);
            transform: scale(2);
        }
    }
}
@media (max-width: 400px) {
    /* mobile-menu */
    .mobile-menu {
        width: 80%;
    }

    /* frosted-glass */
    .frosted-glass.active {
        width: calc(100% - 80%);
    }

    .mobile-menu__content {
        width: 80%;
    }

    .main-content__buy {
        padding: 20px;
        border-radius: 15px;
    }
    .live-header {
        font-size: 12px;
    }
    .presale-title {
        font-size: 23px;
    }
    .current-price, .send-title, .promocode-title, .receive-address {
        font-size: 12px;
        line-height: 10px;
    }
    .price-title {
        font-size: 14px;
    }
    .price-title span, .receive-title span, .promocode-title span, .recipient-title span, .address-title span {
        margin-left: 5px;
    }
    .select-currency input, .promocode input {
        font-size: 14px;
    }
    .select-currency .currency {
        font-size: 10px;
    }
    .receive-title {
        font-size: 8px;
    }
    .recipient-title {
        font-size: 8px;
    }
    .main-content__buy .rotating-gradient-btn {
        font-size: 10px;
    }
}
@media (max-width: 360px) {
    /* header */
    .header {
        padding: 30px 0;
    }
    .header-logo {
        font-size: 28px;
    }
    .header-logo img {
        width: 45px;
        height: 45px;
    }

    .space-button-border-right::before {
        right: 0px;
    }
    .space-button-border-right::after {
        right: 0px;
    }
    .space-button-border-left::before {
        left: 0;
    }
    .space-button-border-left::after {
        left: 0;
    }

    /* main */
    .main-content {
        padding-top: 130px;
    }

    .main-content__buy {
        padding: 12px;
        border-radius: 12px;
    }
    .price-title span, .receive-title span, .promocode-title span, .recipient-title span, .address-title span {
        margin-left: 3px;
    }
    .select-currency input {
        flex: 1;
        width: 50%;
    }
}

.space-circle-1 {
    -webkit-animation: space-circle-1 6s linear infinite;
    animation: space-circle-1 6s linear infinite;
}

@-webkit-keyframes space-circle-1 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(0, 40px);
        transform: translate(0, 40px);
        opacity: 0;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes space-circle-1 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(0, 40px);
        transform: translate(0, 40px);
        opacity: 0;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
.space-circle-2 {
    -webkit-animation: space-circle-2 6s linear infinite;
    animation: space-circle-2 6s linear infinite;
}
@-webkit-keyframes space-circle-2 {
    30% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.15;
    }
    40% {
        -webkit-transform: translate(120px, -85px);
        transform: translate(120px, -85px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(70px, 75px);
        transform: translate(70px, 75px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.15;
    }
}
@keyframes space-circle-2 {
    30% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.15;
    }
    40% {
        -webkit-transform: translate(120px, -85px);
        transform: translate(120px, -85px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(70px, 75px);
        transform: translate(70px, 75px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.15;
    }
}

.space-circle-3 {
    -webkit-animation: space-circle-3 6s linear infinite;
    animation: space-circle-3 6s linear infinite;
}
@-webkit-keyframes space-circle-3 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.62;
    }
    30% {
        -webkit-transform: translate(-71px, -18px);
        transform: translate(-71px, -18px);
        opacity: 1;
    }
    60% {
        -webkit-transform: translate(-451px, -40px);
        transform: translate(-451px, -40px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.62;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.62;
    }
}
@keyframes space-circle-3 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.62;
    }
    30% {
        -webkit-transform: translate(-71px, -18px);
        transform: translate(-71px, -18px);
        opacity: 1;
    }
    60% {
        -webkit-transform: translate(-451px, -40px);
        transform: translate(-451px, -40px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.62;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.62;
    }
}

.space-circle-4 {
    -webkit-animation: space-circle-4 6s linear infinite;
    animation: space-circle-4 6s linear infinite;
}
@-webkit-keyframes space-circle-4 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.88;
    }
    35% {
        -webkit-transform: translate(-316px, -112px);
        transform: translate(-316px, -112px);
        opacity: 0.5;
    }
    60% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.88;
    }
}
@keyframes space-circle-4 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.88;
    }
    35% {
        -webkit-transform: translate(-316px, -112px);
        transform: translate(-316px, -112px);
        opacity: 0.5;
    }
    60% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0.88;
    }
}

.space-circle-5 {
    -webkit-animation: space-circle-5 6s linear infinite;
    animation: space-circle-5 6s linear infinite;
}
@-webkit-keyframes space-circle-5 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    40% {
        -webkit-transform: translate(-273px, 193px);
        transform: translate(-273px, 193px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(-287px, 193px);
        transform: translate(-287px, 193px);
        opacity: 0.15;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes space-circle-5 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    40% {
        -webkit-transform: translate(-273px, 193px);
        transform: translate(-273px, 193px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(-287px, 193px);
        transform: translate(-287px, 193px);
        opacity: 0.15;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
.space-circle-6 {
    -webkit-animation: space-circle-6 6s linear infinite;
    animation: space-circle-6 6s linear infinite;
}
@-webkit-keyframes space-circle-6 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    40% {
        -webkit-transform: translate(-236px, -113px);
        transform: translate(-236px, -113px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(-252px, -113px);
        transform: translate(-252px, -113px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes space-circle-6 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    40% {
        -webkit-transform: translate(-236px, -113px);
        transform: translate(-236px, -113px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(-252px, -113px);
        transform: translate(-252px, -113px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
.space-circle-7 {
    -webkit-animation: space-circle-7 6s linear infinite;
    animation: space-circle-7 6s linear infinite;
}
@-webkit-keyframes space-circle-7 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    40% {
        -webkit-transform: translate(62px, -36px);
        transform: translate(62px, -36px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(50px, -29px);
        transform: translate(50px, -29px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes space-circle-7 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    30% {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
        opacity: 0;
    }
    40% {
        -webkit-transform: translate(62px, -36px);
        transform: translate(62px, -36px);
        opacity: 0;
    }
    60% {
        -webkit-transform: translate(50px, -29px);
        transform: translate(50px, -29px);
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
.space-circle-1,
.space-circle-2,
.space-circle-3,
.space-circle-4,
.space-circle-5,
.space-circle-6,
.space-circle-7 {
    will-change: transform, opacity;
    transform-box: fill-box;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

#ten {
    position: absolute;
    width: 0px;
    height: 0px;
    border-radius: 100%;
    display: none;
    pointer-events: none;

    background: -o-radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);

    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);

    -webkit-box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8), 0 0 30px 15px rgba(255, 255, 255, 0.6), 0 0 60px 30px rgba(255, 255, 255, 0.3);

    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8), 0 0 30px 15px rgba(255, 255, 255, 0.6), 0 0 60px 30px rgba(255, 255, 255, 0.3);

    -webkit-filter: blur(1px) drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));

    filter: blur(1px) drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));

    -webkit-animation: pulse 2s infinite alternate ease-in-out;

    animation: pulse 2s infinite alternate ease-in-out;
    opacity: 0.3;
    z-index: 10;
    -webkit-transform: scale(3.5);
    -ms-transform: scale(3.5);
    transform: scale(3.5);
}

/* IE11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #ten {
        background: white;
        filter: progid:DXImageTransform.Microsoft.Glow(Color=white,Strength=15)
            progid:DXImageTransform.Microsoft.Blur(pixelradius=10);
    }
}

/* svg  */
.blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0.3;
    will-change: filter;
}
.roadmap-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0.3;
    will-change: filter;
}

.d-none {
    display: none !important;
}

main.buy-active .main-content__description {
    display: none;
}
main.buy-active .space-button {
    display: none;
}
main.buy-active .roadmap .space-button {
    display: none;
}
main.buy-active .main-content__flex + .main-additionally {
    display: none;
}
main.buy-active .main-content__social {
    display: none;
}
main.buy-active .main-content__flex .main-additionally {
    display: block;
    margin-top: 61px;
}
main.buy-active .main-content__flex .main-additionally .main-additionally__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 25.2px;
    text-align: left;
    color: #E5E5E5;
    margin-bottom: 25.5px;
}
main.buy-active .main-content__flex .main-additionally .main-additionally__swiper {
    overflow: hidden;
}
main.buy-active .main-content__flex .main-additionally .swiper-wrapper {
    margin: 0;
    width: 100%;
}
main.buy-active .main-content__buy {
    display: block;
    position: relative;
    overflow: hidden;
}
.main-content__buy .backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0a0618d9;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backdrop.modal-address {
    z-index: 102;
}

.main-content__buy .spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #00000000;
    border-top: 5px solid #7a3bff;
    border-radius: 50%;
    animation: spin 1.25s linear infinite;
}
.main-content__buy .spinner-min {
    width: 13px;
    height: 13px;
    border: 2px solid #00000000;
    border-top: 2px solid #7a3bff;
    border-radius: 50%;
    animation: spin 1.25s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.gradient-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 7px;
    padding: 3px 7px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    border: 1px solid #7A3BFFAC;
    gap: 3px;
    font-size: 14px;
}
.gradient-btn:hover {
    -webkit-animation: rotate-gradient 5s linear infinite;
    animation: rotate-gradient 5s linear infinite;
}
.qr-code {
    margin-top: 20px
}
.qr-code img {
    display: block;
    margin: 0 auto;
    width: 200px
}
.qr-code img.qr-icon {
    width: 20px;
    margin: 0;
}

.qr-code .hide-button {
    margin-top: 20px;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #D9D9D908;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #FFFFFF4D;
}

.wallet-pay {
    margin-top: 20px;
}

.ext-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9D9D908;
    gap: 5px;
    border: 1px solid #FFFFFF4D;
    margin-top: 20px;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 10px;
}
.ext-button img {
    height: 20px;
}
.copy, .ext-button {
    cursor: pointer;
}
.text-hide {
    height: 18px;
    background: #ffffff;
    border-radius: 3px;
    animation: fade 1.5s infinite alternate;
}

@keyframes fade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.2;
  }
}

.main-content__buy .rotating-gradient-btn.disabled {
    filter: grayscale(1);
    opacity: 0.5;
    cursor: initial;
}

@media(max-width: 991px) {
    #connect-button {
        display: none;
    }
}

.shadow-button {
    border-radius: 50px;
    padding: 5px 7px;
    border: 1px solid rgba(122, 59, 255, 0.3);
    cursor: pointer;
    -webkit-box-shadow: 2px 2px 0px 0px rgba(122, 59, 255, 0.3);
    box-shadow: 2px 2px 0px 0px rgba(122, 59, 255, 0.3);
}
.close-menu {
    position: absolute;
    top: 10px;
    padding: 7px;
    cursor: pointer;
}
.close-menu img {
    width: 27px;
}

@media(max-width: 1180px) {
    .stage-list {
        margin-top: 28px;
    }
    .stage-item {
        width: 100px;
    }
    .stage-item .stage-title {
        font-size: 20px;
    }
    .stage-item .stage-period {
        font-size: 12px;
    }
    .stage-list::before, .stage-list::after {
        top: 42px;
        height: 3px;
    }
    .stage-item + .stage-item::before {
        width: 2px;
        top: 34px;
        height: 20px;
    }
    .stage-item .stage-desc {
        margin: 38px 15px 0;
        padding: 5px;
        font-size: 12px;
        border-radius: 7px;
    }
}

@media(max-width: 768px) {
    .stage-list {
        margin-top: 15px;
    }
    .stage-item {
        width: 50px;
    }
    .stage-item .stage-title {
        font-size: 16px;
    }
    .stage-item .stage-period {
        font-size: 10px;
    }
    .stage-list::before, .stage-list::after {
        top: 30px;
        height: 3px;
    }
    .stage-item + .stage-item::before {
        width: 2px;
        top: 22px;
        height: 20px;
    }
    .stage-item .stage-desc {
        margin: 28px 10px 0;
        padding: 3px;
        font-size: 10px;
        border-radius: 5px;
    }
}

@media(max-width: 650px) {
    .stage-list__wrapper {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .stage-list {
        flex-wrap: nowrap;
        min-width: 650px;
        padding: 0 20px;
    }
    .stage-item {
        width: 140px;
        flex-shrink: 0;
    }
    .stage-item .stage-title {
        font-size: 14px;
    }
    .stage-item .stage-period {
        font-size: 10px;
    }
    .stage-item .stage-desc {
        margin: 35px 10px 0;
        padding: 8px;
        font-size: 10px;
    }

    .stage-list__wrapper::-webkit-scrollbar {
        height: 6px;
    }
    .stage-list__wrapper::-webkit-scrollbar-track {
        background: rgba(122, 59, 255, 0.1);
        border-radius: 3px;
    }
    .stage-list__wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #7a3bff, #311a62);
        border-radius: 3px;
    }
    .stage-list__wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to right, #8a4bff, #412a72);
    }
}

@media(max-width: 1280px) {
    .faq-list__wrapper {
        gap: 20px
    }
    .faq-list__wrapper .faq-list {
        max-width: 500px
    }
}

@media(max-width: 1049px) {
    .faq-list__wrapper {
        gap: 0
    }
    .faq-list__wrapper .faq-list {
        max-width: 100%
    }
    .faq-title {
        font-size: 18px;
    }
    .faq-item p {
        font-size: 14px;
    }
}

.roadmap-list__item:not(:last-child) .roadmap-list__item-num::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 150px;
    border-left: 2px dashed #ffffff;
    opacity: 0.6;
}
.roadmap-list__item.completed .roadmap-list__item-num::after {
    border-left: 2px dashed #7a3bff;
}