* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Orbitron", sans-serif;
    background: #030407;
}

header {
    padding: 50px 32px 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}
header nav,
footer nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-left ul li {
    position: relative;
}

.nav-left ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 120%;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-left ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: transparent;
    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}
.nav-right {
    display: flex;
    gap: 24px;
}

.social-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.3s ease;
}

.telegram-icon {
    background-image: url("icon-telegram.svg");
}

.twitter-icon {
    background-image: url("icon-twitter.svg");
}

.instagram-icon {
    background-image: url("icon-instagram.svg");
}

.telegram-icon:hover {
    background-image: url("icon-telegram-color.svg");
}

.twitter-icon:hover {
    background-image: url("icon-twitter-color.svg");
}

.instagram-icon:hover {
    background-image: url("icon-instagram-color.svg");
}

/* Hover effects */
.nav-left ul li a:hover {
    color: #f0f0f0;
}

.nav-left ul li a:hover::after {
    width: 35%;
}

.nav-left ul li:nth-child(1) a:hover::after {
    background: #69f1ff;
}

.nav-left ul li:nth-child(2) a:hover::after {
    background: #9a80ff;
}

.nav-left ul li:nth-child(3) a:hover::after {
    background: #dd6eff;
}

.nav-right {
    display: flex;
    gap: 24px;
}

.nav-right a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-right a:hover {
    opacity: 1;
}

.logo {
    z-index: 2;
}

.logo img {
    width: 266px;
    gap: 14.471px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 149px;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-title {
    color: #fff;
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    line-height: 120%; /* 76.8px */
    text-transform: uppercase;
    margin-top: 140px;
    width: 1144px;
    margin-bottom: 64px;
    z-index: 1;
}
.background-spot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 504px;
    height: 504px;
    flex-shrink: 0;
    border-radius: 130px;
    background: linear-gradient(135deg, #00e8ff 14.65%, #c300ff 85.39%);
    filter: blur(163px);
    transform: translate(-50%, -50%);
    z-index: 0;
}
.contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.launch-button {
    border-radius: 24px;
    background: #fff;
    backdrop-filter: blur(4px);
    display: flex;
    width: 358px;
    padding: 24px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #121826;
    text-align: center;
    text-wrap: nowrap;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.32px;
    z-index: 1;
}
.launch-button:hover {
    background: #121826;
    color: #fff;
    backdrop-filter: blur(4px);
    /* transform: scale(1.05); */
    width: 370px;
}

.hero-image {
    position: relative;
    margin-top: 64px;
    z-index: 1;
}

.partners {
    display: flex;
    width: 100%;
    margin-top: 180px;
    justify-content: space-between;
    align-items: center;
}

.partners img {
    margin: 0 10px;
    height: 30px;
}

.introduction-section {
    position: relative;
    overflow: hidden;
}

.introduction-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    max-width: 556px;
    z-index: 1;
}

.secondary-title {
    color: #fff;
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 120%;
    text-transform: uppercase;
}

.simple-text {
    color: #7b849b;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    margin-bottom: 48px;
    font-weight: 600;
    line-height: 140%;
}

.button-group {
    display: flex;
    gap: 16px;
}

.try-button {
    border-radius: 24px;
    background: #ffffff;
    backdrop-filter: blur(4px);
    color: #121826;
    display: flex;
    padding: 24px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.32px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.try-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.phone-image {
    max-width: 100%;
    height: auto;
}
.background-spot {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 504px;
    height: 504px;
    flex-shrink: 0;
    border-radius: 130.471px;
    background: linear-gradient(135deg, #00e8ff 14.65%, #c300ff 85.39%);
    filter: blur(163px);
    z-index: 0;
}
.background-spot.intro-spot {
    right: -420px;
    left: unset;
}
.background-spot.intro-spot.left {
    right: unset;
    left: 0;
}
.section-spacing-top {
    padding-top: 200px;
}
.section-spacing-bottom {
    padding-bottom: 200px;
}

.section-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    flex: 1;
}

.subheading {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: auto auto;
    gap: 32px;
    width: 100%;
}

.feature-item img {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
}

.feature-item p {
    color: #7b849b;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.phone-preview {
    flex: 1;
    display: flex;
    position: relative;
    z-index: 1;
    max-width: 28rem;
    width: 100%;
}
.phone-preview.right {
    justify-content: flex-end;
}
.text-padding-left {
    padding-left: 120px;
}
.text-padding-right {
    padding-right: 120px;
}
.phone-preview img {
    max-width: 100%;
    height: auto;
}

#staking .phone-preview {
    border-radius: 40px;
    padding: 20px;
}

.features-section {
    position: relative;
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.phone-preview,
.wallet-features {
    flex: 1;
}

.phone-preview img {
    max-width: 100%;
    height: auto;
}

.wallet-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
    width: 100%;
}

.subheading {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    line-height: 120%; /* 48px */
    text-transform: uppercase;
    margin-bottom: 28px;
}

.feature-text {
    flex: 1;
}

.subtitle {
    color: #f0f0f0;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 28px */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.list-text {
    color: #7b849b;
    font-family: Nunito, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}
.tranding-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.staking-section {
    position: relative;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.partners .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 57px;
    row-gap: 27px;
    overflow: hidden;
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guide-number {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 32px;
}

.guide-title {
    color: #f0f0f0;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 140%; /* 33.6px */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.guide-description {
    color: #7b849b;
    text-align: center;
    font-family: Nunito, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}
.faq-section {
    margin-bottom: 200px;
}

.section-title {
    color: #f0f0f0;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #12182666;
    border-radius: 32px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 21px;
    background-color: transparent;
    border: none;
    color: #f0f0f0;
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header svg {
    width: 70px;
    height: 70px;
    color: #f0f0f0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 24px;
}
.accordion-header .icon-minus {
    display: none;
}

.icon-plus,
.icon-minus {
    height: 24px;
    width: 24px;
    min-width: 24px;
    min-height: 24px;
}

.accordion-item.active .accordion-header .icon-plus {
    display: none;
}

.accordion-item.active .accordion-header .icon-minus {
    display: block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 24px 24px 24px;
}
.accordion-content p {
    color: #7b849b;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.accent-link {
    color: #00e8ff;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.telegram {
    background-image: url("icon-telegram.svg");
}

.social-icon.twitter {
    background-image: url("icon-twitter.svg");
}

.crypto-journey {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 64px;
    color: white;
    border-radius: 80px;
    background: linear-gradient(135deg, #6076ff 14.65%, #c300ff 85.39%);
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
    margin-bottom: 200px;
}
.crypto-journey-content {
    max-width: 100%;
    width: 754px;
    z-index: 2;
    position: relative;
}
.crypto-journey h2 {
    color: #f0f0f0;
    font-family: Orbitron, sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 140%; /* 72.8px */
    text-transform: uppercase;
    margin-bottom: 24px;
}
.crypto-journey p {
    color: #fff;
    font-family: Nunito, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    margin-bottom: 64px;
    width: 575px;
}

.crypto-journey-image {
    border-radius: 20px 10px 0 0;
    position: absolute;
    right: -101px;
    top: 355px;
    transform: translateY(-50%);
    width: 45%;
    z-index: 1;
}
.crypto-journey-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

footer {
    margin-bottom: 95px;
    padding: 20px 32px;
    background-color: transparent;
}

.subtitle-box {
    max-width: 736px;
    margin-bottom: 120px;
}
.subtitle-box.how {
    margin-bottom: 80px;
}

.memepad-section {
    margin: 0 auto;
}

.memepad-section .text-content {
    margin: 0 auto;
    text-align: center;
}

.tokens-preview {
    display: flex;
    justify-content: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.tokens-preview img {
    max-width: 200%;
    height: auto;
}

/* ROADMAP */
.roadmap-section .container {
    margin: 0 auto;
    text-align: center;
}

.roadmap-container {
    max-width: 754px;
    width: 100%;
    height: 1000px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.roadmap-stem {
    display: block;
    height: 935px;
    width: 16px;
    border-radius: 8px;
    margin: 0 auto;
    position: absolute;
    z-index: 5;
    left: calc(50% - 50px);
    transform: translateX(-50%);

    background: linear-gradient(153.48deg, #00e8ff 17.76%, #5e78ff 51.21%, #c300ff 87.45%);
}

.roadmap-stem .background-spot {
    background: linear-gradient(135deg, rgba(0, 232, 255, 0.25) 14.65%, rgba(195, 0, 255, 0.25) 85.39%);
}

.roadmap-step-block {
    color: #fff;
    text-align: left;
    width: max-content;
    position: relative;
    width: 210px;
}

.roadmap-step-block:nth-child(odd) {
    left: 50%;
    transform: translateX(-50%);
}

.roadmap-step-block:nth-child(even) {
    right: 50%;
    transform: translateX(50%);
}

.roadmap-step-block::before {
    content: "";
    height: 4px;
    width: 180px;
    position: absolute;
    border-radius: 0 8px 8px 0;
    top: 15px;
    background: #00e8ff;
}

.roadmap-step-block:nth-of-type(2)::before {
    background: #5f77ff;
}

.roadmap-step-block:nth-of-type(3)::before {
    background: #3ca1ff;
}

.roadmap-step-block:nth-of-type(4)::before {
    background: #5f77ff;
}

.roadmap-step-block:nth-child(odd)::before {
    left: -210px;
}

.roadmap-step-block:nth-child(even)::before {
    left: 140px;
}

/* -------------- */
.roadmap-title {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 33.6px;
    text-transform: uppercase;
}
.roadmap-subtitle {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    text-align: left;

    display: flex;
    align-items: center;
    gap: 5px;
}

.roadmap-subtitle__done {
    color: #02bc7d;
}

.roadmap-subtitle__in-progress {
    color: #c300ff;
}

.roadmap-list {
    margin-top: 11px;
}

.roadmap-list li {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    text-align: left;
    margin-bottom: 5px;
    margin-left: 20px;
    position: relative;
    display: inline-block;
}

.roadmap-list li::after {
    content: "•";
    color: #fff;
    position: absolute;
    left: -15px;
}

.roadmap-list li.highlighted::before {
    content: "";
    width: calc(100% + 40px);
    height: 100%;
    position: absolute;
    left: -25px;
    z-index: -1;
    border-radius: 34px;
    background: #7c0d8e;
}

/* Tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
        width: 90%;
    }

    .partners {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .text-content {
        padding: 40px;
    }

    .features-content {
        flex-direction: column;
    }

    .wallet-features {
        max-width: 100%;
        padding: 20px;
        margin-bottom: 64px;
    }

    .phone-preview {
        margin-top: 40px;
        order: 2;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .crypto-journey {
        padding: 70px;
        max-width: 1024px;
    }

    .crypto-journey-content,
    .crypto-journey p {
        width: 100%;
        max-width: 550px;
    }

    .crypto-journey h2 {
        font-size: 40px;
    }

    .crypto-journey-image {
        width: 100%;
        margin-top: 40px;
        transform: none;
        top: 56px;
        left: 600px;
    }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
    header nav,
    footer nav {
        gap: 12px;
    }

    .nav-left ul {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 80px 8px;
    }

    .hero-title {
        font-size: 32px;
    }

    .secondary-title {
        font-size: 30px;
    }
    .button-group {
        flex-direction: column-reverse;
    }

    .background-spot.intro-spot {
        right: -680px;
    }
    .background-spot.intro-spot.left {
        width: 260px;
        height: 240px;
    }
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        font-size: 16px;
    }
    .crypto-journey {
        padding: 25px;
        padding-bottom: 0;
        border-radius: 40px;
        margin-bottom: 60px;
        flex-direction: column;
    }

    .crypto-journey-image {
        left: 395px;
        text-align: center;
        margin-top: 40px;
        transform: none;
        position: static;
        margin-bottom: -11px;
    }
    .crypto-journey h2 {
        font-size: 36px;
    }

    /* roadmap */
    .roadmap-container {
        width: 390px;
        position: relative;
    }

    .roadmap-stem {
        left: 0px;
        transform: translateX(0);
    }

    .roadmap-stem .background-spot.left {
        left: 70px;
        background: linear-gradient(135deg, rgb(0 232 255 / 61%) 14.65%, rgb(195 0 255 / 86%) 85.39%);
    }

    .roadmap-step-block {
        left: 25% !important;
        transform: translate(-25%) !important;
    }

    .roadmap-step-block::before {
        width: 100px;
        left: -120px !important;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    /* General adjustments */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    /* Header and navigation */
    header {
        padding: 20px 16px;
        position: relative;
    }

    header nav,
    footer nav {
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }

    .logo {
        order: -1;
    }

    .logo img {
        width: 160px;
    }

    .hero {
        padding: 80px 16px 0px;
    }

    .hero-title {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 32px;
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    .background-spot {
        max-width: 420px;
        width: 100%;
        height: 340px;
    }

    .partners {
        margin-top: 60px;
    }
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .partners img {
        height: auto;
        width: 180px;
        max-width: 80%;
    }

    .section-spacing-top {
        padding-top: 80px;
    }

    .section-spacing-bottom {
        padding-bottom: 120px;
    }

    .introduction-section .container,
    .section-content,
    .features-content {
        flex-direction: column;
    }

    .text-content,
    .wallet-features {
        max-width: 100%;
        padding: 26px 30px 0;
    }

    .feature-list {
        grid-template-columns: auto;
        text-align: center;
    }

    .secondary-title {
        font-size: 28px;
        text-align: center;
    }
    .subtitle-box {
        margin-bottom: 60px;
    }

    .simple-text {
        padding: 10px;
        font-size: 14px;
        text-align: center;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .try-button {
        width: 70%;
        padding: 20px 32px;
        font-size: 14px;
    }

    .subheading {
        font-size: 24px;
        text-align: center;
    }

    .subtitle {
        font-size: 18px;
    }

    .phone-preview {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
    .phone-preview.right {
        justify-content: center;
    }
    #staking .phone-preview {
        padding: 0;
    }
    .phone-preview img {
        max-width: 80%;
        height: auto;
    }

    /* How to use section */
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guide-card {
        padding: 20px;
    }

    .guide-title {
        font-size: 20px;
    }

    .accordion-item {
        padding: 12px;
    }

    .accordion-header {
        padding: 16px;
    }

    .accordion-content {
        padding: 0;
    }

    .reverse {
        flex-direction: column-reverse;
    }
    .section-spacing-bottom {
        padding-bottom: 80px;
    }
    .crypto-journey {
        /* padding: 25px;
        padding-bottom: 0;
        border-radius: 40px;
        margin-bottom: 60px;
        flex-direction: column; */
    }

    .crypto-journey h2 {
        font-size: 28px;
    }

    .crypto-journey p {
        font-size: 14px;
        margin-bottom: 32px;
        width: 100%;
    }

    .crypto-journey-image {
        /* position: static;
        width: 100%;
        margin-top: 56px;
        right: 0; */
    }

    footer {
        margin-bottom: 40px;
        padding: 20px 16px;
    }

    footer nav {
        flex-direction: column-reverse;
    }

    /* roadmap */
    .roadmap-stem {
        left: 50px;
    }

    .roadmap-step-block::before {
        width: 50px;
        left: -70px !important;
    }
}
