body {
    margin: 0;
    inset: 0px !important;
    overflow: hidden;
    background: #000;
}

#ton-connect {
    position: fixed;
    top: 12px;
    right: 10px;
    z-index: 999;
    display: none;
}

#ton-connect button div{
    color: #fdce08 !important;
}

#loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-image: url('/bg.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}

.loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 250px;
}

#loader img{
    width: 75px;
    animation: plane 1.5s infinite ease-out;
    margin-left: 25px;
}

.loader-trim {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transform: rotate(90deg);
}

.loader-trim span {
    display: inline-block;
    width: 4px;
    height: 30px;
    margin: 0 4px;
    border-radius: 10px;
    background-color: #4ac1ff;
    transform-origin: center;
    animation: scale 1.5s infinite ease-out;
}

.loader-trim span:nth-child(2) {
    height: 50px;
    animation-delay: 0.2s;
}

.loader-trim span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes plane {
    0% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1) translateX(5px);
    }
    100% {
        transform: scale(1) translateX(0);
    }
}
