*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: whitesmoke;
    scroll-behavior: smooth;
}

@font-face {
    font-family: SF Pro;
    src: url(../fonts/SF-Pro-Rounded-Medium.otf);
    font-weight: 500;
}

h1, h2, h3, h4, a{
    font-family: "Rubik Wet Paint", serif;
    font-weight: 400;
}

p, li{
    font-family: SF pro, sans-serif;
}

body{
    background: linear-gradient(180deg, rgb(0, 0, 0) 90%, rgba(194, 143, 16, 0.788));
}

header{
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    position: fixed;
    height: 80px;
    background-color: #0b0b0b;
    z-index: 9999;
}

.header_inside{
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-self: center;
    width: 100%;
    height: 100%;
    padding: 0 240px;
}

.header_inside .header_right {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: end;
}

#languagebtn {
    padding: 10px 0;
    margin: auto;
    cursor: pointer;
    background-color: rgb(180, 137, 27);
    color: black;
    font-family: "Rubik Wet Paint", serif;
    font-size: 16px;
    border: none;
    width: 40px;
    transition: all .2s;
}

#languagebtn:hover{
    background-color: rgb(238, 180, 35);
    color: whitesmoke;
    box-shadow: 0 0 10px 1px goldenrod;
}

.dropdown-content {
    width: 40px;
    right: 0;
    display: none;
    position: absolute;
    background-color: #323232;
    min-width: 15px;
    z-index: 1;
    
}

.dropdown-content a {
    color: #f9f9f9;
    padding: 10px;
    text-decoration: none;
    display: block;
    justify-self: center;
    margin-right: 0 !important;
}

.dropdown-content a:hover {
    background-color: #424242;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content img{
    max-width: 25px;
}

.back_box{
    width: 70px;
    position:absolute;
    top: 160px;
    left: 10%;
    filter: drop-shadow(0 0 30px goldenrod);
    z-index: -100;
    animation: move_back_box 2.5s ease-in-out infinite;
}

.back_box2{
    width: 70px;
    position: absolute;
    bottom: -10%;
    right: -20%;
    filter: drop-shadow(0 0 30px #daa520);
    z-index: -100;
    animation: move_back_box2 2.5s ease-in-out infinite;
}

.back_box3{
    position:absolute;
    box-shadow: 0 0 150px 55px #daa520;
    z-index: -1;
    top: 3%; /* Центрируем по высоте */
    left: 4%;  
}

.back_box4{
    position:absolute;
    box-shadow: 0 0 200px 70px #daa520;
    z-index: -1;
    top: 20%; 
    right: 9%;  
}

.back_box5{
    position:absolute;
    box-shadow: 0 0 170px 40px #daa520;
    z-index: -1;
    top: 8%; 
    right: 8%;  
}

@keyframes move_back_box {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(50px) rotate(15deg);
        filter: drop-shadow(0 0 20px #daa520);
    }
    100%{
        transform: translateY(0);
    }
}

@keyframes move_back_box2 {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-50px) rotate(-15deg);
        filter: drop-shadow(0 0 20px #daa520);
    }
    100%{
        transform: translateY(0);
    }
}

.header_inside .header_right a{
    font-size: 18px;
    padding: 5px 10px;
    margin-left: 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: all .2s;
}

.header_inside .header_right a:hover{
    color: goldenrod;
}

.header_inside .header_right .telegram_button{
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    background-color: #23aaea;
    margin-right: 0;
    border-radius: 5px;
    transition: all .2s;
}

.header_inside .header_right .telegram_button img{
    width: 24px;
    margin-right: 10px;
    filter: invert(1);
}

.header_inside .header_right .telegram_button:hover{
    background-color: #1a82b3;
    color: whitesmoke;
    text-decoration: none;
}

#menu-icon {
    display: none; 
    font-size: 32px;
    cursor: pointer;
}

.dropdown-menu {
    display: none; 
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    background: #0b0b0b;
    position: absolute;
    top: 80px; 
    left: 0;
    width: 100%;
    padding: 10px;
}

.dropdown-menu a {
    font-size: 18px;
    padding: 5px 10px;
    margin-right: 20px;
    text-decoration: none;
    transition: all .2s;
}

.dropdown-menu a:hover {
    color: goldenrod;
}

.dropdown-menu .telegram_button{
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    background-color: #23aaea;
    margin-right: 0;
    border-radius: 5px;
    transition: all .2s;
}

.dropdown-menu .telegram_button img{
    width: 24px;
    margin-right: 10px;
    filter: invert(1);
}

.dropdown-menu .telegram_button:hover{
    background-color: #1a82b3;
    color: whitesmoke;
    text-decoration: none;
}

.main_container{
    overflow: hidden;
    position: relative;
    justify-self: center;
    width: 100%;
    padding: 0 240px;
}

.marquee {
    top: 130px;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100px;
    overflow: hidden;
    align-content: center;
}
  
.track {
    top: 25px;
    color: whitesmoke;
    position: absolute;
    animation: marquee 32s linear infinite;
    
}

.content {
    display: inline-flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
}

.content img{
    filter: drop-shadow(0 0 10px goldenrod);
    width: 50px;
    margin-left: 50px;
    margin-right: 10px;
}
  
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    width: 100%;
    height: 100vh;
    margin-bottom: 150px;
}

.left{
    position: relative;
    max-width: 50%;
}

.left h1{
    margin-bottom: 45px;
    font-size: 51px;
}

.left p{
    max-width: 550px;
    margin-bottom: 25px;
}

.left p:nth-last-child(2n-1){
    max-width: 550px;
    margin-bottom: 100px;
}

.left a{
    padding: 15px 15px;
    background-color: rgb(180, 137, 27);
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 10px;
    transition: all .2s;
}

.left a:hover{
    background-color: goldenrod;
    box-shadow: 0 0 15px 6px goldenrod;
    color: whitesmoke;
}

.right {
    position: relative;
    max-width: 50%;
}

.img_right {
    width: auto;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 100px 1px goldenrod;
}

.right .img_right img {
    width: 100%; 
    max-width: 450px;
    height: auto; 
    transform: scale(1.06); 
}

.orbiting-img {
    position: absolute;
    top: 0; 
    right: 0px; 
    width: 60px; 
    animation: moveUpDown 2s ease-in-out infinite; 
}

.orbiting-img img {
    width: 100%;
    border-radius: 50%; 
}

.orbiting2-img {
    position: absolute;
    bottom: 0px;
    left: 0px;  
    width: 80px; 
    animation: moveUpDown2 2s ease-in-out infinite; 
}

.orbiting2-img img {
    width: 100%;
    border-radius: 50%; 
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); 
    }
    100% {
        transform: translateY(0); 
    }
}

@keyframes moveUpDown2 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); 
    }
    100% {
        transform: translateY(0); 
    }
}


.container{
    align-items: center;
    position: relative;
    justify-self: center;
    width: 100%;
}

.container h3{
    font-size: 36px;
}

.container_about{
    padding: 50px 50px;
    scroll-margin-top: 150px;
    display: grid;
    grid-template-rows: min-content auto;
    grid-template-areas: 
    "h3 h3"
    "about_text about_img";
    margin-bottom: 150px;
    justify-items: center;
    align-items: center;
    min-height: 600px;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    border-radius: 25px;
    box-shadow:
    inset -0.75px -0.5px rgba(218, 165, 32, 0.4),
    inset +0.75px +0.5px rgba(218, 165, 32, 0.7),
    3px 2px 10px rgba(218, 165, 32, 0.25),
    inset 0px 0px 10px 5px rgba(218, 165, 32, 0.025),
    inset 0px 0px 40px 5px rgba(218, 165, 32, 0.025);
    background-color: rgba(218, 165, 32, 0.03);
}

.container_about h3{
    grid-area: h3;
    margin-bottom: 50px;
}

.container_about .about_text{
    grid-area: about_text;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.about_text ul{
    max-width: 600px;
    margin-right: 40px;
    list-style: none;
}

.about_text ul li{
    font-size: 19px;
    margin-bottom: 20px;
}

.about_img{
    max-width: 450px;
    grid-area: about_img;
}

.container_about .about_img img{
    max-width: 450px;
    border-radius: 10%;
}

.container_roadmap{
    justify-self: center;
    position: relative;
    justify-items: center;
    align-items: center;
    padding: 50px;
    width: auto;
    max-width: 600px;
    margin-bottom: 150px;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    border-radius: 25px;
    box-shadow:
    inset -0.75px -0.5px rgba(218, 165, 32, 0.4),
    inset +0.75px +0.5px rgba(218, 165, 32, 0.7),
    3px 2px 10px rgba(218, 165, 32, 0.25),
    inset 0px 0px 10px 5px rgba(218, 165, 32, 0.025),
    inset 0px 0px 40px 5px rgba(218, 165, 32, 0.025);
    background-color: rgba(218, 165, 32, 0.03);
}

.container_roadmap h3{
    margin-bottom: 55px;
}
.roadmap-line {
    position: absolute;
    top: 24%; /* Начинаем с верхней части */
    left: 4%; /* Центрируем линию */
    width: 3px;
    background-color: goldenrod;
    height: 0%; /* Начальная высота линии */
    transition: height 2s ease-in-out; /* Плавное увеличение */
}

/* Стили для списка целей */
.roadmap {
    display: flex;
    flex-direction: column; /* Вертикальное расположение элементов */
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    bottom: 0;
    justify-content: flex-start; /* Для выравнивания элементов по верху */
}

/* Стили для каждого элемента списка */
.roadmap li {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 5px; /* Расстояние между целями */
}

.underline {
    position: relative;
    overflow: hidden;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: goldenrod;
    transition: width 2s ease-in-out; 
}


.container_roadmap.loaded .roadmap-line {
    height: 65%; 
}

.container_roadmap.loaded .underline:nth-child(1)::after {
    width: 35%; 
    transition-delay: .5s;
}

.container_roadmap.loaded .underline:nth-child(2)::after {
    width: 40%;
    transition-delay: .7s; 
}

.container_roadmap.loaded .underline:nth-child(3)::after {
    width: 50%;
    transition-delay: .8s; 
}

.container_info{
    margin-bottom: 150px;
    width: auto;
}

.container_info h3{
    margin-bottom: 55px;
    text-align: center;
}

.info_collum{
    justify-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    width: 100%;
}

.info_con{
    position: relative;
    width: 450px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    transition: all 0.4s;
    border-radius: 25px;
    background-color: rgba(180, 137, 27, 0.05);
}

.card__content {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(75, 57, 11);
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.4s;
    border-radius: 10px;
}

.card__title {
    text-align: center;
    margin: 0;
    font-size: 20px;
    color: whitesmoke;
    font-weight: 700;
}

.card__description {
    margin: 10px 0 10px;
    font-size: 14px;
    color: whitesmoke;
    line-height: 1.4;
}

.info_con:hover .card__content {
    transform: rotateX(0deg);
}

.info_con:hover{
    box-shadow: 0 8px 16px rgba(218, 165, 32, 1);
    transform: scale(1.08);
}

.info_con.active {
    box-shadow: 0 8px 16px rgba(218, 165, 32, 1);
    transform: scale(1.08);
}

.info_con.active .card__content {
    transform: rotateX(0deg);
}

.info_con h2{
    font-size: 42px;
    color: whitesmoke;
    text-align: center;
}

.info_con img{
    
    max-width: 60px;
}

.info_con i{
    font-size: 60px;
}

.info_con .x{
    max-width: 40px;
    filter: invert(1);
}

.info_con .cmc{
    filter: invert(1)
}

.card__content a{
    text-decoration: none;
    align-self: self-end;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    color: goldenrod;
    font-weight: bold;
    transition: all 0.3s;
}

.card__content a:hover{
    color: whitesmoke;
    background-color: rgb(180, 137, 27);
}

footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 240px 30px;
}

.footer_left{
    display: flex;
    width: 50%;
    align-items: center;
}

.footer_left h1{
    color: black;
}

.footer_left img{
    max-width: 60px;
    margin-right: 10px;
}

.footer_right{
    text-align: end;
    width: 50%;
}

.footer_right h3{
    color: black;
}

.token-price {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.token-icon {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-right: 15px;
    box-shadow: 0 0 20px goldenrod;
}
.token-name {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}  
.price {
    font-size: 24px;
    font-weight: bold;
}
.percentage-change {
    margin-left: 5px;
    padding-bottom: 2px;
    font-weight: bold;
}
.positive {
    color: green;
}
.negative {
    color: red;
}

.positive sup{
    font-size: 12px;
    color: rgb(167, 167, 167);
}
.negative sup{
    font-size: 12px;
    color: rgb(167, 167, 167);
}
@media (max-width: 1700px) {

    .info_collum{
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 1440px) {

    .right .img_right{
        width: 250px;
    }

    .orbiting-img {
        position: absolute;
        top: 0; 
        right: 0px; 
        width: 60px; 
        animation: moveUpDown 2s ease-in-out infinite; 
    }

    .orbiting2-img {
        position: absolute;
        bottom: 0px;
        left: 0px;  
        width: 70px; 
        animation: moveUpDown2 2s ease-in-out infinite; 
    }

    .about_text ul{
        max-width: 400px;
        list-style: none;
    }

    .container_about .about_img img{
        width: 350px;
        border-radius: 10%;
    }

    .roadmap-line{
        left: 4%;
    }

    .info_collum{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .info_con{
        width: auto;
    }

}

@media (min-width: 1920px) {
    .marquee{
        width: 100vw;
    }

    body{
        overflow-x:hidden ;
        width: 100vw;
    }

    .header_inside{
        max-width: 1920px;
    }

    .main_container{
        padding: 0 25%;
    }

    footer{
        justify-self: center;
        max-width: 1920px;
    }
}

@media (max-width: 1265px) {
    .main_container{
        padding: 0 120px;
    }
}

@media (max-width: 1024px) {

    .back_box{
        width: 60px;
        position:absolute;
        top: 160px;
        left: 10%;
        filter: drop-shadow(0 0 30px goldenrod);
        z-index: -100;
        animation: move_back_box 2.5s ease-in-out infinite;
    }
    
    .back_box2{
        width: 60px;
        position: absolute;
        bottom: -5%;
        right: -10%;
        filter: drop-shadow(0 0 30px #daa520);
        z-index: -100;
        animation: move_back_box2 2.5s ease-in-out infinite;
    }
    
    .back_box3{
        position:absolute;
        box-shadow: 0 0 150px 55px #daa520;
        z-index: -1;
        top: 2%; /* Центрируем по высоте */
        left: 30%;  
    }
    
    .back_box4{
        position:absolute;
        box-shadow: 0 0 150px 55px #daa520;
        z-index: -1;
        top: 12%; 
        right: 30%;  
    }
    
    .back_box5{
        position:absolute;
        box-shadow: 0 0 170px 40px #daa520;
        z-index: -1;
        top: 8%; 
        right: 90%;  
    }

    .header_inside{
        padding: 0 120px;
    }

    .main_container{
        padding: 0 120px;
    }

    .right .img_right{
        width: 250px;
    }

    .orbiting-img {
        position: absolute;
        top: 0; 
        right: 0px; 
        width: 60px; 
        animation: moveUpDown 2s ease-in-out infinite; 
    }

    .container_about{
        grid-template-columns: 1fr;
        justify-self: center;
    }

    .about_text ul{
        margin-right: 0;
    }

    .about_img{
        display: none;
    }

    .orbiting2-img {
        position: absolute;
        bottom: 0px;
        left: 0px;  
        width: 70px; 
        animation: moveUpDown2 2s ease-in-out infinite; 
    }

    .container_roadmap{
        width: auto;
    }
    
    .roadmap_info ul{
        padding: 20px 20px;
        border-radius: 10px;
        background-color: gray;
        list-style: none;
    }
    
    .roadmap_info ul li{
        padding: 10px 15px;
        background-color: #333;
        border-radius: 25px;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .roadmap-line{
        left: 4%;
    }

}

@media (max-width: 768px) {

    h1{
        font-size: 45px;
    }

    .marquee {
        top: 80px;
        position: relative;
        width: 100vw;
        max-width: 100%;
        height: 100px;
        overflow: hidden;
        align-content: center;
    }

    .back_box{
        width: 60px;
        position:absolute;
        top: 10%;
        left: 5%;
        filter: drop-shadow(0 0 30px goldenrod);
        z-index: -100;
        animation: move_back_box 2.5s ease-in-out infinite;
    }
    
    .back_box2{
        width: 60px;
        position: absolute;
        bottom: -5%;
        right: -10%;
        filter: drop-shadow(0 0 30px #daa520);
        z-index: -100;
        animation: move_back_box2 2.5s ease-in-out infinite;
    }
    
    .back_box3{
        position:absolute;
        box-shadow: 0 0 150px 55px #daa520;
        z-index: -1;
        top: 3%; /* Центрируем по высоте */
        left: 10%;  
    }
    
    .back_box4{
        position:absolute;
        box-shadow: 0 0 150px 55px #daa520;
        z-index: -1;
        top: 12%; 
        right: 12%;  
    }
    
    .back_box5{
        position:absolute;
        box-shadow: 0 0 170px 40px #daa520;
        z-index: -1;
        top: 8%; 
        right: 90%;  
    }


    .percentage-change {
        font-size: 18px;
        font-weight: bold;
        margin: 0 0 0 5px ;
    }

    .header_right {
        display: none !important; /* Скрываем текстовые ссылки */
    }

    #menu-icon {
        display: block; /* Показываем значок меню */
    }

    .header_inside{
        padding: 0 60px;
    }

    .main_container{
        padding: 120px 60px 0;
    }

    main{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-self: center;
        width: 100%;
        height: auto;
        margin-bottom: 150px;
    }

    .left{
        justify-self: center;
        max-width: 100%;
    }

    .right{
        max-width: 100%;
        margin-bottom: 150px;
    }

    .right .img_right{
        width: 250px;
    }

    .img_right {
        width: auto;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0 0 50px 1px goldenrod;
    }

    .orbiting-img {
        position: absolute;
        top: 0; 
        right: 0px; 
        width: 60px; 
        animation: moveUpDown 2s ease-in-out infinite; 
    }

    .orbiting2-img {
        position: absolute;
        bottom: 0px;
        left: 0px;  
        width: 70px; 
        animation: moveUpDown2 2s ease-in-out infinite; 
    }

    .container_about{
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        height: auto;
    }

    .about_text ul{
        max-width: fit-content;
        list-style: none;
    }

    .container_about .about_img img{
        display: none;
    }


    footer{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 60px 30px;
    }
    .footer_left{
        width: auto;
        margin-bottom: 20px;
    }
    .footer_right{
        width: auto;
        text-align: center;
    }
    .roadmap-line{
        left: 4%;
    }

    .container_about {
        min-height: auto;
    }

}

@media (max-width: 440px) {

    .container_roadmap.loaded .underline:nth-child(1)::after {
        width: 45%; 
        transition-delay: .5s;
    }
    
    .container_roadmap.loaded .underline:nth-child(2)::after {
        width: 50%;
        transition-delay: .7s; 
    }
    
    .container_roadmap.loaded .underline:nth-child(3)::after {
        width: 65%;
        transition-delay: .8s; 
    }

    .back_box{
        width: 60px;
        position:absolute;
        top: 11%;
        left: 5%;
        filter: drop-shadow(0 0 30px goldenrod);
        z-index: -100;
        animation: move_back_box 2.5s ease-in-out infinite;
    }
    
    .back_box2{
        width: 60px;
        position: absolute;
        bottom: -5%;
        right: 0;
        filter: drop-shadow(0 0 30px #daa520);
        z-index: -100;
        animation: move_back_box2 2.5s ease-in-out infinite;
    }
    
    .back_box3{
        position:absolute;
        box-shadow: 0 0 100px 35px #daa520;
        z-index: -1;
        top: 2%; /* Центрируем по высоте */
        left: 12%;  
    }
    
    .back_box4{
        position:absolute;
        box-shadow: 0 0 100px 35px #daa520;
        z-index: -1;
        top: 14%; 
        right: 20%;  
    }
    
    .back_box5{
        position:absolute;
        box-shadow: 0 0 170px 40px #daa520;
        z-index: -1;
        top: 8%; 
        right: 80%;  
    }

    .token-icon {
        border-radius: 50%;
        width: 30px;
        height: 30px;
        margin-right: 5px;
        box-shadow: 0 0 20px goldenrod;
    }
    .token-name {
        font-size: 14px;
        font-weight: bold;
        margin-right: 5px;
    }  
    .price {
        font-size: 14px;
        font-weight: bold;

    }
    .percentage-change {
        font-size: 12px;
        font-weight: bold;
        margin: 0 0 3px 5px ;
    }

    .header_inside{
        padding: 0 20px;
    }

    .main_container{
        padding: 150px 30px 0;
    }

    main{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-around;
        justify-self: center;
        width: 100%;
        margin-bottom: 150px;
    }

    .left{
        max-width: 100%;
    }

    h1{
        font-size: 32px !important;
    }

    h2{
        font-size: 16px !important;
    }

    h3{
        font-size: 24px !important;
    }

    p{
        font-size: 14px !important;
    }

    li{
        font-size: 12px !important;
    }

    .right .img_right{
        width: 250px;
    }

    .orbiting-img {
        position: absolute;
        top: 0; 
        right: 0px; 
        width: 60px; 
        animation: moveUpDown 2s ease-in-out infinite; 
    }

    .orbiting2-img {
        position: absolute;
        bottom: 0px;
        left: 0px;  
        width: 70px; 
        animation: moveUpDown2 2s ease-in-out infinite; 
    }

    .about_text ul{
        max-width: 300px;
        list-style: none;
    }
    
    .roadmap-line{
        left: 10%;
    }

    .container_about {
        min-height: auto;
    }

}

@media (max-width: 375px) {
    .container_roadmap.loaded .underline:nth-child(1)::after {
        width: 55%; 
        transition-delay: .5s;
    }
    
    .container_roadmap.loaded .underline:nth-child(2)::after {
        width: 60%;
        transition-delay: .7s; 
    }
    
    .container_roadmap.loaded .underline:nth-child(3)::after {
        width: 80%;
        transition-delay: .8s; 
    }
    
    .back_box{
        width: 60px;
        position:absolute;
        top: 11%;
        left: 5%;
        filter: drop-shadow(0 0 30px goldenrod);
        z-index: -100;
        animation: move_back_box 2.5s ease-in-out infinite;
    }
    
    .back_box2{
        width: 60px;
        position: absolute;
        bottom: 0;
        right: 0;
        filter: drop-shadow(0 0 30px #daa520);
        z-index: -100;
        animation: move_back_box2 2.5s ease-in-out infinite;
    }
    
    .back_box3{
        position:absolute;
        box-shadow: 0 0 100px 35px #daa520;
        z-index: -1;
        top: 2%; /* Центрируем по высоте */
        left: 20%;  
    }
    
    .back_box4{
        position:absolute;
        box-shadow: 0 0 100px 35px #daa520;
        z-index: -1;
        top: 15%; 
        right: 25%;  
    }
    
    .back_box5{
        position:absolute;
        box-shadow: 0 0 170px 40px #daa520;
        z-index: -1;
        top: 8%; 
        right: 80%;  
    }

    .roadmap-line{
        left: 10%;
    }

    .token-icon {
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-right: 5px;
        box-shadow: 0 0 20px goldenrod;
    }
    .token-name {
        font-size: 14px;
        font-weight: bold;
        margin-right: 5px;
    }  
    .price {
        font-size: 14px;
        font-weight: bold;
    }
    .percentage-change {
        margin-left: 8px;
        font-size: 12px;
        font-weight: bold;
        margin: 0 0 3px 5px;
    }

    .dropdown {
        position: relative;
        display: inline-block;
        width: 100%;
        margin-right: 5px;
        text-align: end;
    }

    #languagebtn {
        padding: 5px;
        margin: auto;
        cursor: pointer;
        background-color: rgb(180, 137, 27);
        color: #f9f9f9;
        font-size: 14px;
        border: none;
        width: 30px;
    }

    .header_inside{
        padding: 0 20px;
    }

    .main_container{
        padding: 150px 30px 0;
    }

    main{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-around;
        justify-self: center;
        width: 100%;
    }

    .left{
        max-width: 100%;
    }

    h1{
        font-size: 32px !important;
    }

    h2{
        font-size: 16px !important;
    }

    h3{
        font-size: 24px !important;
    }

    p{
        font-size: 14px !important;
    }

    li{
        font-size: 12px !important;
    }

    .right .img_right{
        width: 250px;
    }

    .orbiting-img {
        position: absolute;
        top: 0; 
        right: 0px; 
        width: 60px; 
        animation: moveUpDown 2s ease-in-out infinite; 
    }

    .orbiting2-img {
        position: absolute;
        bottom: 0px;
        left: 0px;  
        width: 70px; 
        animation: moveUpDown2 2s ease-in-out infinite; 
    }

    .about_text ul{
        max-width: 250px;
        list-style: none;
    }

    .container_about {
        padding: 50px 20px;
        min-height: auto;
    }

}