body {
    background: #06000D;
    max-width: 1440px;
    margin: 0 auto;
}

.page {
    font-family: 'Roboto', sans-serif;
    background: #06000D;
    color: #DADADA;
    padding: 0 40px;
}

    @media screen and (max-width: 989px) {
.page {
        padding: 0 16px
}
    }

    @media screen and (min-width: 768px) and (max-width: 1180px) {
.page {
        padding: 0 40px
}
    }

    .page h2 {
        margin: 0;
        margin-bottom: 20px;
    }

    @media screen and (max-width: 989px) {

    .page h2 {
            margin-bottom: 12px
    }
        }

    @media screen and (min-width: 768px) and (max-width: 1180px) {

    .page h2 {
            margin-bottom: 20px
    }
        }

.container {
    margin: 0 auto;
}

.container .description {
        color: rgba(255, 255, 255, 0.60);
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 20px;
        margin: 0;
        margin-bottom: 80px;
    }

@media screen and (max-width: 989px) {

.container .description {
            margin-bottom: 40px;
            font-size: 14px;
            line-height: 20px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.container .description {
            margin-bottom: 80px;
            font-size: 18px;
            line-height: 24px
    }
        }

.loginButton {
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    background: #555;
    color: #DADADA;
    font-size: 14px;
    height: 20px;
    font-weight: 700;
    line-height: 20px;
    transition: background-color 60ms ease-out;
}

.loginButton:hover {
        background-color: #303030;
    }

@media screen and (max-width: 989px) {

.loginButton {
        padding: 6px 12px;
        border-radius: 4px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.loginButton {
        padding: 10px 16px;
        border-radius: 6px
}
    }

.signUpButton {
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    background: #965BFA;
    color: #FFF;
    font-size: 14px;
    height: 20px;
    font-weight: 700;
    line-height: 20px;
    transition: background-color 60ms ease-out;
}

.signUpButton:hover {
        background-color: #8943fd;
    }

@media screen and (max-width: 989px) {

.signUpButton {
        padding: 6px 12px;
        border-radius: 4px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.signUpButton {
        padding: 10px 16px;
        border-radius: 6px
}
    }

.startEarningButton {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    background: #965BFA;
    height: 20px;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    transition: background-color 60ms ease-out;
    z-index: 3;
    align-self: flex-start;
}

.startEarningButton:hover {
        background-color: #8943fd;
    }

@media screen and (max-width: 989px) {

.startEarningButton {
        padding: 10px 16px;
        align-self: center
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.startEarningButton {
        padding: 14px 20px;
        align-self: center
}
    }

.getStartedNowButton {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    background: #965BFA;
    height: 20px;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    transition: background-color 60ms ease-out;
    z-index: 3;
}

.getStartedNowButton:hover {
        background-color: #8943fd;
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    margin: 0 auto;
}

.headerLogo {
    width: 181px;
    height: 30px;
}

@media screen and (max-width: 989px) {

.headerLogo {
        width: 145px;
        height: 24px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.headerLogo {
        width: 181px;
        height: 30px
}
    }

.navs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

@media screen and (max-width: 989px) {

.navs {
        display: none
}
    }


.navActions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.heroContent {
    max-width: 1200px;
    min-height: 400px;
    border-radius: 20px;
    background: linear-gradient(101deg, #380059 0%, #1B002A 100%);
    padding: 40px 80px 80px 80px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

@media screen and (max-width: 989px) {

.heroContent {
        padding: 40px 16px 0px 16px;
        flex-direction: column;
        max-height: 454px;
        align-items: center
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroContent {
        padding: 40px 40px 0px 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-height: 750px
}
    }

.heroContentLeft {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

@media screen and (max-width: 989px) {

.heroContentLeft {
        gap: 12px;
        align-items: center
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroContentLeft {
        gap: 32px;
        position: relative;
        top: 176px;
        align-items: center
}
    }

.heroContentLeft h1 {
        color: rgba(255, 255, 255, 0.80);
        font-size: 56px;
        font-weight: 700;
        line-height: 64px;
        margin: 0;
        align-self: flex-start;
        width: 720px;
        max-width: calc(100vw - 240px);
    }

@media screen and (max-width: 989px) {

.heroContentLeft h1 {
            font-size: 24px;
            line-height: 32px;
            text-align: center;
            width: 100%;
            max-width: 100%;
            align-self: stretch
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroContentLeft h1 {
            font-size: 56px;
            line-height: 64px;
            text-align: center;
            width: 720px;
            max-width: calc(100vw - 160px);
            align-self: center
    }
        }

.heroContentRight {
    position: relative;
}

.heroContentRight .gradient {
        position: absolute;
        width: 1000px;
        height: 1000px;
        border-radius: 1000px;
        border: 1px solid #000;
        background: conic-gradient(from 180deg at 50% 50%, #DB4DE8 0deg, #F26A20 122.88461208343506deg, #1C86DC 232.9423427581787deg);
        filter: blur(100px);
        -webkit-filter: blur(100px);
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        will-change: transform;
        right: -450px;
        top: 240px;
    }

@media screen and (max-width: 989px) {

.heroContentRight .gradient {
            right: -270px;
            top: 0
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroContentRight .gradient {
            right: -385px;
            top: 240px
    }
        }

.heroContentRight .phone {
        background-image: url('./images/phone.webp');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 394px;
        height: 679px;
        position: absolute;
        right: -20px;
        top: 80px;
        z-index: 2;
    }

@media screen and (max-width: 989px) {

.heroContentRight .phone {
             position: relative;
             width: 261px;
             height: 449px;
             right: 10px;
             top: 20px;
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroContentRight .phone {
            width: 394px;
            height: 679px;
            position: relative;
            right: 8px;
            top: 100px;
    }
        }

.heroContentRight .coin {
        background-image: url('./images/coin.webp');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 109px;
        height: 109px;
        position: absolute;
        right: 280px;
        top: -70px;
        z-index: 3;
        display: block;
    }

@media screen and (max-width: 989px) {

.heroContentRight .coin {
            display: none
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroContentRight .coin {
            display: none
    }
        }

.heroSubtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

@media screen and (max-width: 989px) {

.heroSubtitle {
        font-size: 14px;
        line-height: 20px;
        text-align: center
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroSubtitle {
        font-size: 18px;
        line-height: 24px;
        text-align: center
}
    }

.heroAction {
    padding: 14px 20px;
    z-index: 2;
}

@media screen and (max-width: 989px) {

.heroAction {
        padding: 10px 16px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroAction {
        padding: 14px 20px
}
    }

.heroInfo {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 989px) {

.heroInfo {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-content: center;
        gap: 12px 4px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.heroInfo {
         display: flex;
         flex-direction: row;
         justify-content: space-around;
         align-items: center;
         flex-wrap: wrap
}
    }

.infoCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.infoCard h3 {
        margin: 0;
        color: rgba(255, 255, 255, 0.80);
        font-size: 36px;
        font-weight: 700;
        line-height: 48px;
    }

@media screen and (max-width: 989px) {

.infoCard h3 {
            font-size: 24px;
            line-height: 32px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.infoCard h3 {
            font-size: 36px;
            line-height: 48px
    }
        }

.infoCard p {
        margin: 0;
        color: rgba(255, 255, 255, 0.60);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }

@media screen and (max-width: 989px) {

.infoCard p {
            font-size: 18px
    }
        }

.section {
    padding-top: 160px;
}

@media screen and (max-width: 989px) {

.section {
        padding-top: 80px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.section {
        padding-top: 160px
}
    }

.section h2 {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
}

@media screen and (max-width: 989px) {

.section h2 {
        font-size: 24px;
        line-height: 32px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.section h2 {
        font-size: 42px;
        line-height: 52px
}
    }

.cardsGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1180px) {

.cardsGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
}
    }

@media screen and (max-width: 989px) {

.cardsGrid {
        grid-template-columns: 1fr;
        gap: 8px
}
    }

.card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(38, 26, 43, 0.70);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (max-width: 989px) {

.card {
        border-radius: 12px;
        gap:  16px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.card {
        border-radius: 20px;
        gap: 20px
}
    }

.card h3 {
        margin: 0;
        color: rgba(255, 255, 255, 0.80);
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
    }

@media screen and (max-width: 989px) {

.card h3 {
            font-size: 14px;
            line-height: 20px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.card h3 {
            font-size: 18px;
            line-height: 24px
    }
        }

.card p {
        color: rgba(255, 255, 255, 0.60);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        margin: 0;
        margin-top: 8px;
    }

@media screen and (max-width: 989px) {

.card p {
            font-size: 14px;
            line-height: 20px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.card p {
            font-size: 18px;
            line-height: 24px
    }
        }

.card .icon {
        padding: 12px;
        border-radius: 12px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

@media screen and (max-width: 989px) {

.card .icon {
            padding: 8px;
            width: 20px;
            height: 20px;
            border-radius: 8px;

    }

    .card .icon img {
                width: 20px;
                height: 20px;
            }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.card .icon {
        width: 32px;
        height: 32px;
    }


.card .icon img {
            width: 32px;
            height: 32px;
        }
    }


.commissionBlock {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(38, 26, 43, 0.70);
    backdrop-filter: blur(10px);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 989px) {

.commissionBlock {
        padding: 16px;
        border-radius: 12px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.commissionBlock {
        padding: 40px;
        border-radius: 20px
}
    }

.commissionBlock h2 {
        margin: 0 0 12px;
    }

.commissionInfo {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding: 20px 0;
}

@media screen and (max-width: 989px) {

.commissionInfo {
        padding: 12px 0
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.commissionInfo {
        padding: 20px 0
}
    }

.commissionInfo:first-child {
        padding-top: 0;
    }

.commissionInfo:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.commissionInfo .title {
        color: rgba(255, 255, 255, 0.60);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        margin: 0;
    }

@media screen and (max-width: 989px) {

.commissionInfo .title {
            font-size: 14px;
            line-height: 20px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.commissionInfo .title {
            font-size: 18px;
            line-height: 24px
    }
        }

.commissionInfo .description {
        color: rgba(255, 255, 255, 0.80);
        text-align: right;
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
        margin: 0;
    }

@media screen and (max-width: 989px) {

.commissionInfo .description {
            font-size: 14px;
            line-height: 20px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.commissionInfo .description {
            font-size: 18px;
            line-height: 24px
    }
        }

.faqList {
    margin-top: 80px;
    display: grid;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 80px;
}

@media screen and (max-width: 989px) {

.faqList {
        gap: 8px;
        margin-top: 40px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.faqList {
        gap: 12px;
        margin-top: 80px
}
    }

.faqItem {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(38, 26, 43, 0.70);
}

@media screen and (max-width: 989px) {

.faqItem {
        padding: 16px;
        border-radius: 12px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.faqItem {
        padding: 20px;
        border-radius: 20px
}
    }

.faqSummary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    outline: none;
    line-height: 24px;
}

@media screen and (max-width: 989px) {

.faqSummary {
        font-size: 14px;
        line-height: 20px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.faqSummary {
        font-size: 18px;
        line-height: 24px
}
    }

.faqSummary::-webkit-details-marker {
    display: none;
}

.faqIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0A0A0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faqIconPlus,
.faqIconMinus {
    position: absolute;
    transition: opacity 0.2s ease-in-out;
    width: 24px;
    height: 24px;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.faqIconPlus {
    opacity: 1;
}

.faqIconMinus {
    opacity: 0;
}

.faqItem[open] .faqIconPlus {
    opacity: 0;
}

.faqItem[open] .faqIconMinus {
    opacity: 1;
}

.faqContent {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

@media screen and (max-width: 989px) {

.faqContent {
        font-size: 14px;
        line-height: 20px;
        margin-top: 8px
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.faqContent {
        font-size: 18px;
        line-height: 24px
}
    }

.faqContent p {
        margin: 0 0 12px 0;
    }

.faqContent p:last-child {
            margin-bottom: 0;
        }

.faqContent strong {
        color: rgba(255, 255, 255, 0.80);
    }

.faqContent a {
        color: #965BFA;
        text-decoration: underline;
        transition: color 60ms ease-out;
    }

.faqContent a:hover {
            color: #8943fd;
        }

.faqContent ul, .faqContent ol {
        margin: 12px 0 12px 24px;
        padding: 0;
    }

.faqContent ul li, .faqContent ol li {
            margin: 0 0 8px 0;
        }

.faqContent ul li:last-child, .faqContent ol li:last-child {
                margin-bottom: 0;
            }

.faqContent ul ul, .faqContent ul ol, .faqContent ol ul, .faqContent ol ol {
            margin: 8px 0 8px 24px;
        }

.faqItem p {
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

@media screen and (max-width: 989px) {

.faqItem p {
        font-size: 14px;
        line-height: 20px;
        margin: 8px 0 0
}
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.faqItem p {
        font-size: 18px;
        line-height: 24px;
        margin: 12px 0 0
}
    }

.ctaSection {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(101deg, #380059 0%, #1B002A 100%);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 160px;

    @media screen and (max-width: 989px) {
        margin-top: 80px;
    }

    @media screen and (min-width: 768px) and (max-width: 1180px) {
        margin-top: 160px;
    }
}

.ctaBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.ctaBlock h2 {
        color: rgba(255, 255, 255, 0.80);
        text-align: center;
        font-family: Roboto;
        font-size: 42px;
        font-weight: 700;
        line-height: 52px;
        margin: 0;
        z-index: 2;
    }

@media screen and (max-width: 989px) {

.ctaBlock h2 {
            font-size: 24px;
            line-height: 32px
    }
        }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.ctaBlock h2 {
            font-size: 42px;
            line-height: 52px
    }
        }

.ctaBlock p {
        color: rgba(255, 255, 255, 0.60);
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        margin: 0;
        z-index: 2;
    }

.ctaBlock .coin {
        background-image: url('./images/coin.webp');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 109px;
        height: 109px;
        position: absolute;
        left: 197px;
        top: -34px;
        z-index: 1;
    }

.ctaBlock .smallCoin {
        background-image: url('./images/coin.webp');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 64px;
        height: 64px;
        position: absolute;
        right: 270px;
        bottom: 52px;
        z-index: 1;
    }

@media screen and (min-width: 768px) and (max-width: 1180px) {

.ctaBlock .smallCoin {
            right: 70px
    }
        }

@media screen and (max-width: 989px) {

.ctaBlock .smallCoin {
            right: 40px
    }
        }

.ctaBlock .gradient {
        position: absolute;
        width: 1000px;
        height: 1000px;
        border-radius: 1000px;
        border: 1px solid #000;
        background: conic-gradient(from 180deg at 50% 50%, #DB4DE8 0deg, #F26A20 122.88461208343506deg, #1C86DC 232.9423427581787deg);
        filter: blur(100px);
        top: 120px;
        z-index: 1;
    }

.ctaBlock {
    margin-top: 14px;
}

.footer {
    padding: 60px 0 40px;
}

.footerBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgb(69, 80, 108, 92%);
}

.footerLogo {
    width: 145px;
    height: 24px;
}

.footerLinks {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.link {
    color: #A0A0A0;
    text-decoration: none;
}

.link:hover {
        transition: color 60ms ease-out;
        color: #965BFA;
    }

.notFoundSection {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    min-height: calc(100vh - 70px);
}

.notFoundContainer {
    width: 100%;
    min-height: inherit;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.notFoundContent {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    width: 100%;
    gap: 20px;
    min-height: inherit;
    padding: 56px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(38, 26, 43, 0.70);
    backdrop-filter: blur(10px);
}

.notFoundContent::before {
    display: none;
}

.notFoundContent > * {
    position: relative;
    z-index: 1;
}

.notFoundCode {
    position: relative;
    width: 100%;
    max-width: 292px;
    margin-bottom: 4px;
}

.notFoundImage {
    display: block;
    width: 100%;
    max-width: 252px;
    margin: 0 auto;
}

.notFoundDigit {
    position: absolute;
    bottom: 0;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 10px 32px rgba(150, 91, 250, 0.35);
}

.notFoundDigitLeft {
    left: 0;
}

.notFoundDigitRight {
    right: 0;
}

.notFoundTitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.notFoundDescription {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.notFoundButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 240px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    background: #965BFA;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    white-space: normal;
    transition: background-color 60ms ease-out;
}

.notFoundButton:hover {
    background-color: #8943fd;
}

@media screen and (max-width: 989px) {
    .notFoundSection {
        padding-top: 12px;
        min-height: calc(100vh - 64px);
    }

    .notFoundContainer {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
    }

    .notFoundContent {
        min-height: inherit;
        padding: 40px 20px;
        gap: 16px;
    }

    .notFoundCode {
        max-width: 232px;
        margin-bottom: 8px;
    }

    .notFoundImage {
        max-width: 208px;
    }

    .notFoundDigit {
        font-size: 90px;
    }

    .notFoundTitle {
        font-size: 28px;
        line-height: 36px;
    }

    .notFoundDescription {
        font-size: 16px;
        line-height: 24px;
    }

    .notFoundButton {
        max-width: 320px;
    }
}

@media screen and (max-width: 768px) {
    .notFoundContent {
        border-radius: 0;
    }
}

.termsContainer {
    max-width: 900px;
}

.termsContent {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(38, 26, 43, 0.70);
    backdrop-filter: blur(10px);
    padding: 40px;
}

@media screen and (max-width: 989px) {
    .termsContent {
        padding: 20px;
        border-radius: 12px;
    }
}

.termsContent h1 {
    color: rgba(255, 255, 255, 0.80);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 0 8px 0;
}

@media screen and (max-width: 989px) {
    .termsContent h1 {
        font-size: 24px;
        line-height: 32px;
    }
}

.termsContent h2 {
    color: rgba(255, 255, 255, 0.80);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 40px 0 16px 0;
    text-align: left;
}

@media screen and (max-width: 989px) {
    .termsContent h2 {
        font-size: 20px;
        line-height: 28px;
        margin-top: 32px;
    }
}

.termsContent h3 {
    color: rgba(255, 255, 255, 0.80);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin: 32px 0 12px 0;
}

@media screen and (max-width: 989px) {
    .termsContent h3 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 24px;
    }
}

.termsContent p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 16px 0;
}

@media screen and (max-width: 989px) {
    .termsContent p {
        font-size: 14px;
        line-height: 20px;
    }
}

.termsContent ul,
.termsContent ol {
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 16px 24px;
    padding: 0;
}

@media screen and (max-width: 989px) {
    .termsContent ul,
    .termsContent ol {
        font-size: 14px;
        line-height: 20px;
        margin-left: 20px;
    }
}

.termsContent li {
    margin: 0 0 8px 0;
}

.termsContent li:last-child {
    margin-bottom: 0;
}

.termsContent ul ul,
.termsContent ul ol,
.termsContent ol ul,
.termsContent ol ol {
    margin: 8px 0 8px 24px;
}

.termsContent strong {
    color: rgba(255, 255, 255, 0.80);
}

.termsContent a {
    color: #965BFA;
    text-decoration: underline;
    transition: color 60ms ease-out;
}

.termsContent a:hover {
    color: #8943fd;
}

/* Add manual indentation using classes */
.termsContent .indent-1 {
    padding-left: 24px;
}

.termsContent .indent-2 {
    padding-left: 48px;
}

.termsContent .indent-3 {
    padding-left: 72px;
}
