@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



.green {
    color: rgb(53, 166, 53);
}

.red {
    color: rgb(190, 31, 31);
}


.click {
    cursor: pointer;
}


body {
    background-color: #000;
    color: white;
    font-family: 'Inter', sans-serif;
    font-family: 'Ubuntu', sans-serif;
    opacity: 0;
    animation: fadeBodyIn 1s forwards;
    min-width: 350px;
}


@keyframes fadeBodyIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.showMenu {
    animation-name: menuIn;
}

.hideMenu {
    animation-name: menuOut;
}




@keyframes menuIn {
    from {
        left: -550px;
    }

    to {
        left: 0;
    }
}


@keyframes menuOut {
    from {
        left: 0;
    }

    to {
        left: -550px;
    }
}








.menu-container {
    position: fixed;
    top: 0;
    left: -550px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color: rgb(8, 8, 8);
    color: #fff;
    z-index: 99;
    animation-duration: .4s;
    animation-fill-mode: forwards;
}



.exit-site-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    margin-top: 5px;
    padding-inline: 20px;
}

.exit-btn {
    border: 1px solid grey;
    outline: none;
    cursor: pointer;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


.menu-container>div:last-child {
    width: 100%;
    height: calc(100vh - 74px);
    display: flex;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    gap: 28px;
}



.menu-container>div:last-child a {
    width: 100%;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    border-radius: 7px;
    font-size: 14px;
    transition: padding .3s;
}


.menu-container>div a:hover {
    padding: 1px;
    border: 1px solid rgb(108, 108, 108);
}

.menu-container>div a>span:first-child {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(22, 22, 22, 0.361);
    display: flex;
    justify-content: center;
    align-items: center;
}


span.last {
    margin-left: auto;
}



#main-pg {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, #000), url(../images/earth.AVIF);
    background-repeat: no-repeat;
    background-position: left 1%;
    background-size: auto;
    animation: floatBg 20s ease-in-out infinite;
}




@keyframes floatBg {
    0% {
        background-position: left 1% top 1%;
    }

    50% {
        background-position: left 10% top 10%;
    }

    100% {
        background-position: left 1% top 1%;
    }
}



.main-pg-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-inline: 1.2rem;
    gap: 2rem;
}


.main-pg-header img {
    margin-right: auto;
}


.main-pg-header > a {
    background-color: rgb(255, 255, 255);
    padding: 6px 9px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: black;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s;
}


.main-pg-header > a:hover {
    background-color: rgb(17, 17, 17);
    color: white;
}

.header-links {
    width: fit-content;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    list-style: none;
}


.header-links li a {
    text-decoration: none;
    color: white;
    transition: all .5s;
}


.header-links li a:hover {
    color: black;
    background-color: white;
    padding: 5px 10px;
    border-radius: 10px;
}

.text-highlight {
    color: white;
    width: 100%;
    max-width: 600px;
    padding-inline: 1rem;
    margin-block: 4rem 11rem;
    font-size: 2.4rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.5px;
    line-height: 50px;
    opacity: .9;
    text-align: center;
    margin-inline: auto;
    background-color: #00000000;
    backdrop-filter: blur(5px);
    border-radius: 10px;
}


.downloads {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
    margin-top: 4rem;
}


.downloads>a {
    text-decoration: none;
    color: white;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 5px;
    padding-right: 10px;
    gap: 1px;
    border: 1px solid rgb(127, 127, 127);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}



.downloads>a:last-child {
    gap: 9px;
    padding-left: 10px;
}

.downloads>a>span:last-child {
    display: flex;
    flex-direction: column;
}


.downloads>a>span:last-child span:first-child {
    opacity: .7;
    font-size: 10px;
}

.downloads>a>span:last-child span:last-child {
    font-size: 15px;
    opacity: .9;
}





.scrolling-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}


.scrolling-wrapper::before,
.scrolling-wrapper::after {
    width: 80px;
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}


.scrolling-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgb(0, 0, 0, 1) 5%, transparent);
}

.scrolling-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgb(0, 0, 0, 1) 5%, transparent);
}

.scrolling-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollTrack 10s linear infinite;
}

.scrolling-track img {
    height: 60px;
    object-fit: contain;
}

@keyframes scrollTrack {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}





.coinlist-div {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin: 4rem auto;
    border: 1px solid rgb(88, 88, 88);
    border-radius: 15px;
    background-color: rgb(11, 11, 11);
    background: linear-gradient(to bottom, rgb(3, 3, 3), rgb(23, 23, 23));


    background: linear-gradient(to bottom, rgb(12, 12, 12), rgb(29, 29, 29));
}

.coinlist-head {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 15px;
    font-size: 13px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-bottom: 1px solid rgb(31, 31, 31);

    border-bottom: 1px solid rgb(48, 48, 48);
}

.coinlist-head > span:first-child {
    margin-right: auto;
    color: rgb(193, 193, 193);
}


.ap {
    color: grey;
}


.coinlist-coins {
    padding-top: 10px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coin-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(31, 31, 31);
    padding: 7px 20px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid rgb(48, 48, 48);
}


.coin-info:last-child {
    border-bottom: none;
}




.coin-info-1st-lane {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.coin-info-1st-lane > span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 12px;
    gap: 3px;
}


.coin-info-2nd-lane {
    font-size: 14px;
}


.coin-info-3rd-lane {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}


.coin-info-3rd-lane > span {
    font-size: 13px;
}


.dec {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: -20px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgb(88, 88, 88);
    border-radius: 15px;
}

.dec2 {
    bottom: -40px;
}




/* === SECTION WRAPPER === */

section.abouts-main {
    padding-inline: 20px;
}

.abouts-main h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-block: 90px 60px;
    color: white;
    position: relative;
}

.abouts-main h3::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8400ff, #ff0080);
    background: linear-gradient( 90deg, red, green, blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}


.abouts-main .abouts-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}


.aboutt {
    opacity: 1;
    flex: 1 1 calc(20% - 20px);
    min-width: 300px;
    margin-inline: auto;
}


/* === COUNT BADGE === */
.aboutt .count {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8400ff, #ff0080);
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 30px;
    margin-inline: auto;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(132, 0, 255, 0.4);
    box-shadow: 0 4px 5px rgba(255, 255, 255, 0.17);
    transition: transform 0.3s ease;
}

.aboutt:hover .count {
    transform: scale(1.1);
}


/* === CARD CONTAINER === */
.aboutt .about {
    border: 1px solid rgb(19, 19, 19);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(7, 7, 7);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutt:hover .about {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* === IMAGE AREA === */
.about > div.for-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.about > div.for-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.9), rgba(0, 0, 0, 0));
}

.about > div.for-img:hover {
    transform: scale(1.02);
}

.about .for-img-1 {
    background-image: url(/images/maxim-hopman-fiXLQXAhCfk-unsplash.jpg);
}

.about .for-img-2 {
    background-image: url(/images/fabio-oyXis2kALVg-unsplash.jpg);
}

.about .for-img-3 {
    background-image: url(/images/clark-tibbs-oqStl2L5oxI-unsplash.jpg);
}

.about .for-img-4 {
    background-image: url(/images/photo-1639322537228-f710d846310a.avif);
}

.about .for-img-5 {
    background-image: url(/images/behnam-norouzi-RDXcFY5g5O4-unsplash.jpg);
}

/* === TEXT AREA === */
.about span {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
}

.about span p:first-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0080;
    color: white;
}

.about span p:last-child {
    font-size: 15px;
    opacity: 0.85;
    line-height: 20px;
}









section.api-section {
    width: 100%;
    margin: 50px auto;
    padding-inline: 20px;
}


section.api-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}


.for-phone {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}


.for-phone > div {
    flex: 1 1 100px;
}

.for-phone .api-packet {
    display: flex;
    flex-direction: column;
}


.api-packet .api {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid rgb(33, 33, 33);
    border-radius: 15px;
    padding: 7px 10px 10px 0;
    gap: 3px;
    margin-bottom: 20px;
}

.api img {
    border-radius: 15px;
}


.api div {
    margin-top: 15px;
}

.api div p:first-child {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: 600;
}


.api div p:last-child {
    font-size: 15px;
    line-height: 20px;
}

.api a {
    text-decoration: none;
    align-self: flex-end;
    background-color: rgb(23, 23, 23);
    padding: 9px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


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


.phone span {
        font-size: 2.3rem;
        font-weight: 600;
}


.api-doc-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 1px solid rgb(24, 24, 24);
    padding: 17px 10px;
    border-radius: 15px;
    background-color: rgb(9, 9, 9);
}

.api-doc-div p:first-child {
    font-size: 25px;
    font-weight: 600;
}

.api-doc-div p:nth-child(2) {
    font-size: 15px;
    line-height: 20px;
    max-width: 380px;
    font-weight: lighter;
    text-align: center;
}

.api-doc-div a {
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    margin-top: 10px;
}


.partners-div {
    padding-bottom: 30px;
    background-image: url(/images/IMG_0331.GIF);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.partners-div::after {
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, black, transparent);
    content: "";
    position: absolute;
    bottom: 0;
}

.partners-div h3 {
    font-size: 30px;
    margin-bottom: 30px;
    padding-left: 20px;
}

.partners {
    display: flex;
    width: 100%;
    overflow-x: scroll;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-left: 20px;
}


.partner {
    border: 1px solid rgb(25, 25, 25);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    min-width: 280px;
    scroll-snap-align: center;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
}

.partner p:first-child {
    font-size: 25px;
    font-weight: 600;
}

.partner a {
    justify-self: flex-end;
    align-self: flex-end;
    margin-top: 80px;
    text-decoration: none;
    background-color: rgb(23, 23, 23);
    padding: 9px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.align-btns {
    width: 100%;
    margin-block: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}


.align-btns svg {
    background-color: rgb(11, 11, 11);
    border-radius: 50%;
    padding: 7px;
    cursor: pointer;
    transition: all 1s;
}


.align-btns svg:hover {
    transform: scale(1.1);
}


.join-us {
    width: 90%;
    max-width: 1100px;
    margin-top: 30px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border: 1px solid rgb(43, 43, 43);
    border-radius: 15px;
    padding: 20px 30px;
    background-color: rgb(30, 30, 30);
}

.join-us span:first-child {
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
}


.join-us span:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.join-us span:last-child a {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    text-decoration: none;
}



.faq {
    max-width: 1100px;
    padding: 30px 20px;
    border-top: 1px solid rgb(17, 17, 17);
    margin-inline: auto;
}


.faq h3 {
    font-size: 25px;
    margin-bottom: 20px;
}


.question {
    border-bottom: 1px solid rgb(31, 31, 31);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.ques {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ques span:first-child {
    font-size: 16px;
    font-weight: 500;
}


.ques span:last-child {
    display: flex;
}

.answer {
    font-size: 14px;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    line-height: 20px;
    font-weight: lighter;
    display: block;
    transition: all 0.3s ease;
}

.answer.show {
    transform: scaleY(1);
    max-height: 1000px;
}


.the-most {
    max-width: 1100px;
    border: 1px solid rgb(17, 17, 17);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-inline: 20px;
    padding-block: 20px;
    gap: 20px;
    border-radius: 15px;
    background-image: url(/images/zsun-fu-b4D7FKAghoE-unsplash.jpg);
    background-size: cover;
}

.the-most p {
    font-size: 23px;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 1px black;
}


.the-most a {
    text-decoration: none;
    background-color: white;
    color: black;
    padding: 8px 100px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px black;
}



footer {
    margin-top: 30px;
    border-top: 1px solid rgb(16, 16, 16);
    background-color: rgb(17, 17, 17);
    padding: 50px 20px;
    position: relative;
}


footer::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    background: linear-gradient(to top, black, transparent);
}

footer p:first-child {
    text-align: center;
    font-size: 14px;
}



.f-downloads {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.f-downloads>a {
    text-decoration: none;
    color: white;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 5px;
    padding-right: 10px;
    gap: 1px;
    border: 1px solid rgb(127, 127, 127);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.f-downloads>a:last-child {
    gap: 9px;
    padding-left: 10px;
}

.f-downloads>a>span:last-child {
    display: flex;
    flex-direction: column;
}


.f-downloads>a>span:last-child span:first-child {
    opacity: .7;
    font-size: 10px;
}

.f-downloads>a>span:last-child span:last-child {
    font-size: 15px;
    opacity: .9;
}


.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.links a {
    padding-right: 10px;
    border-right: 1px solid rgb(50, 50, 50);
    color: rgb(163, 163, 163);
    font-size: 12px;
}

.links a:last-child {
    border-right: none;
}



footer p.last {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    color: #898989;
}




@media (min-width: 730px) {

    .menu-container {
        display: none;
    }

    .main-pg-header svg.activate-menu {
        display: none;
    }

    .header-links {
        display: flex;
    }

    .text-highlight {
        font-size: 3rem;
        margin-inline: 2.3rem;
        line-height: 60px;
    }

    .downloads {
        margin-left: 2.5rem;
    }

}




@media (min-width: 900px) {
    
    .main-pg-header {
        padding-inline: 2.5rem;
    }

    .text-highlight {
        font-size: 2.5rem;
        max-width: 400px;
        line-height: 60px;
        margin-block: 3rem 8rem;
    }

    .downloads {
        margin-left: 3.2rem;
    }


    .coinlist-div {
        position: fixed;
        top: 40px;
        right: 30px;
        max-width: 400px;
        background: none;
        background-color: rgba(0, 0, 0, 1);
    }

}


@media (min-width: 1100px) {


    #main-pg {
        background-size: cover;
    }

    .text-highlight {
        margin-left: 3.5rem;
        font-size: 3.4rem;
        max-width: 650px;
        line-height: 4.4rem;
        margin-block: 3rem 6rem;
    }


    .downloads {
        margin-left: 3.5rem;
        margin-top: 1rem;
    }


    .coinlist-div {
        top: 50px;
        right: 50px;
        max-width: 500px;
    }





    section.api-section h3 {
        font-size: 2rem;
    }


    .abouts-main .abouts-div {
        gap: 15px;
    }

    
    .aboutt {
        min-width: 200px;
    }


    .partners-div h3 {
        font-size: 35px;
        margin-bottom: 30px;
        text-align: center;
    }


    .partners {
        padding-left: 0px;
        gap: 10px;
        padding-inline: 15px;
    }

    .partner {
        max-width: 320px;
        margin: 0 auto;
    }


    .align-btns {
        display: flex;
    }

    .the-most {
        margin-inline: auto;
    }


}



@media (min-width: 1100px) {
    .text-highlight {
        margin-block: 3rem 8rem;
    }
}