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

/* Css variables, they gonna change depends of daytime */
:root {
    --main-font: 'Montserrat', sans-serif;
    --bg-color: #1D1D25;
    --font-color: #ffff;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    overflow: hidden;
    background-color: var(--bg-color);
    transition: background .5s ease;
    transition: color .3 ease;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    padding: 51px 0px 0px 150px;

}

.header {
    display: flex;
    justify-content: space-between;
    max-width: 1621px;
}

.header__logo {
    height: 28px;

}

.header__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 985px;
    width: 100%;
}

.header__link {
    font-size: 20px;
    font-family: var(--main-font);
    font-weight: 600;
    color: var(--font-color);
    display: flex;
    align-items: center;
    gap: 0 5px;
    transition: color .4s ease;
}

.header__link:hover {
    color: #4C53FF;
}

.themeToggle {
    position: relative;
    border: none;
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 8px;
    width: 60px;
    height: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    cursor: pointer;
    outline: none;
}

.themeToggle-dot {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background-color: white;
    position: absolute;
    top: 4px;
    right: 4px;
}







/* shadow code */

.shadow1 {
    z-index: -1;
    max-width: 1569px;
    width: 100%;
    height: 1569px;
    position: absolute;

    background: radial-gradient(48.44% 48.44% at 50% 50%, rgba(0, 56, 255, 0.395) 0%, rgba(0, 56, 255, 0) 100%);

}

.shadow1 {
    left: -50%;
    top: -75%;
}

.shadow2 {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;

}


.main {
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    margin-top: 71px;
    font-family: var(--main-font);
}

.main__left {
    width: 100%;
    max-width: 830px;
    color: var(--font-color);
}

.main__right {
    position: relative;
    width: 100%;
    max-width: 930px;
}

.main__right img {}

.main__title {
    font-weight: 800;
    font-size: 52px;
    line-height: 130%;
    padding-top: 75px;
    position: relative;
}


.main__title span {
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.main__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    margin-top: 30px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
}

.main__btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    max-width: 371px;
    width: 100%;
    min-height: 89px;
    font-weight: 700;
    font-size: 30px;
    gap: 0 20px;
    font-family: var(--main-font);
    color: white;

    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 12px;
    filter: drop-shadow(0px 6px 0px #0D129B);
    transition: filter .3s ease;
}

.main__btn:hover {
    filter: drop-shadow(0px -6px 0px #0D129B);
}

.main__btn:active {
    filter: none;
}

h4 {
    margin-top: 30px;
}

.bordered-title {
    position: absolute;
    left: 0;
    top: 21%;
    width: 45%;
    max-width: 982px;
}

.onlines {
    color: white;
    display: flex;
    align-items: center;
    padding: 3px 12px;
    gap: 6px;
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 6px;
    max-width: 79px;
    margin-left: 9px;
}

h4 {
    display: flex;
    align-items: center;
}

h4>img {
    margin-left: 5px;
}


/* planets code */
.main__planets {
    display: flex;
    width: 100%;
    max-width: 650px;
    justify-content: space-between;
    margin-top: 50px;
}

.planet {
    display: flex;
    gap: 0 20px;
    align-items: center;

    min-height: 200px;
    padding-left: 10px;


}

.nightPlanet:nth-child(1) {
    background: url(../img/planet1-bg-dark.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.nightPlanet:nth-child(2) {
    background: url(../img/planet2-bg-dark.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.lightPlanet:nth-child(1) {
    background: url(../img/planet1-bg-light.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.lightPlanet:nth-child(2) {
    background: url(../img/planet2-bg-light.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.planet-num {
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
}

.planet-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;

    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.planet-copy {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;

}

.planet-copy button {
    cursor: pointer;
}

.planet-progressbar {
    width: 150px;
    height: 4px;
    background-color: var(--font-color);
    border-radius: 5px;
    border: none;
}

.progress {
    /*width: 58%;*/
    height: 100%;
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 5px;
    border: none;
}

/* 
.toNight .themeToggle-dot {
    animation-name: toNight;
    animation-duration: 14s;
    animation-iteration-count: 1;
}

@keyframes toNight {
    0% {
        left: 4px;
    }

    100% {
        right: 4px;
    }
} */

.toNight .themeToggle-dot {
    right: 4px;
    animation-name: animation1;
    animation-duration: .4s;
    animation-iteration-count: 1;
}

@keyframes animation1 {
    0% {
        left: 4px;
    }

    100% {
        left: 34px;
    }
}

/* .toLight .themeToggle-dot {
    animation-name: toNight;
    animation-duration: 14s;
    animation-iteration-count: 1;
}

@keyframes toLight {
    0% {
        right: 4px;
    }

    100% {
        left: 4px;
    }
}
*/
.toLight .themeToggle-dot {

    animation-name: animation2;
    animation-duration: .4s;
    animation-iteration-count: 1;
    left: 4px;
}

@keyframes animation2 {
    0% {
        left: 34px;
    }

    100% {
        left: 4px;
    }
}

.dollar {
    position: absolute;
}

.dollar1 {
    top: 24%;
    left: 10%;
}

.dollar2 {
    right: 0;
}

.dollar3 {
    left: 55%;
    top: 4%;
}

.dollar4 {
    left: 56%;
    top: 44%;
}

.dollar5 {
    right: 5%;
    top: 50%;
}

.footer {
    position: absolute;
    bottom: 15px;
    color: #808080;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 14px;
    left: 42%;
}


.mobile-shadow {
    display: none;
}

/* Adaptive code */

@media (max-width: 1778px) {
    .header {
        padding-right: 10px;
    }
}

@media (min-height: 1080px) {}

@media (max-width: 1734px) {
    .main__title {
        padding-top: 0;
    }
}

.main {
    height: 90vh;
}

.main-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media(max-width: 1565px) {

    /* .main__title {
        font-size: 28px;

    }

    .main__subtitle {
        font-size: 14px;
    }

    .main h2 {
        font-size: 16px;
    }

    .main h4 {
        font-size: 18px;
    }
*/
    .planet {
        transform: scale(0.7);
    }

    .main__planets {
        max-width: 500px;
        margin-left: -40px;
    }


}

.mobile-header {
    display: none;
}

@media (max-width: 1474px) {
    .main-img {
        width: 134%;
    }

}

@media (max-width: 1366px) {
    .header__items {
        position: absolute;
        top: 85px;
        left: 20%;
        width: 70%;
    }
}

@media (max-width: 1263px) {
    .main__planets {
        margin-top: 5px;
    }
}

@media (max-width: 1150px) {
    .header__items {
        left: 13%;
        top: 92px;
        width: 80%;
    }
}

@media(max-width: 1121px) {
    body {
        padding-left: 15px;
    }
}

@media (max-width: 1030px) {
    .header__items {
        left: 2%;
        width: 84%;
    }
}

@media (max-width: 960px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .main__right {
        display: none;
    }

    .main {
        background: url(../img/mobile-bg.png);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: contain;
    }

    .bordered-title {
        width: 77%;
        top: 11%;
    }

}

.header-open {
    background: none;
    border: none;
    outline: none;
    margin-right: 15px;
}

.mobile-menu {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 25px 25px;
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
    display: none;

}

.mobile-header__items {
    position: static;
    display: flex;
    gap: 7px 15px;
    flex-wrap: wrap;
    justify-content: center;
    color: white;
}

.mobile-header__items .header__link {
    color: white !important;
}

.menu-close {
    background: none;
    border: none;
    outline: none;
    position: absolute;
    top: 15px;
    right: 15px;

}

@media (max-width: 600px) {
    .shadow {
        display: none;
    }

    .mobile-shadow {
        display: block;
        position: absolute;
        z-index: -52;
    }

    .mobile-shadow1 {
        top: 0;
        left: 0;
    }

    .mobile-shadow2 {
        bottom: 0%;
        right: 0;
    }

    .mobile-shadow3 {
        bottom: -6px;
        left: 0;
    }
}

@media (max-width: 528px) {
    .main__title {
        font-size: 28px;
        max-width: 309px;
    }

    .main__subtitle {
        font-size: 14px;
        max-width: 337px;
    }

    h2 {
        font-size: 16px;
    }

    .main__btn {
        max-width: 261px;
        min-height: 62px;
        font-size: 21px;
    }

    .main__btn img {
        height: 40px;
        width: 40px;
    }

    .main__btn:hover {
        filter: none;
    }

    h4 {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px 0;
        max-width: 304px;
        line-height: 22px;
    }

    .onlines {
        margin-left: 0;
    }

    .planet {
        transform: scale(.7);
        margin-left: 15px;
    }

    .planet:last-child {
        margin-left: -20px;
    }

    body {
        background-image: url(../img/mobile-bg.png);
        background-repeat: no-repeat;
        background-position: 0px 100px;
        background-size: contain;
    }

    .main {
        background: none;
    }

    .footer {
        left: 22%;
    }

    .mobile-header__items {
        flex-direction: column;
        align-items: center;
    }

    .mobile-header__items .header__link {
        font-size: 14px;
        font-weight: 600;
    }

    .shadow {
        display: none !important;
    }

    .shadow-light {
        display: none !important;
    }

    .mobile-shadow {
        display: block;
        position: absolute;
        z-index: -52;
    }

    .mobile-shadow1 {
        top: 0;
        left: 0;
    }

    .mobile-shadow2 {
        bottom: 0%;
        right: 0;
    }

    .mobile-shadow3 {
        bottom: -6px;
        left: 0;
    }
}

@media (max-width: 443px) {
    .planet {
        transform: scale(.6);
    }

    .planet:last-child {
        margin-left: -50px;
    }
}

@media (max-width: 401px) {

    /* .planet {
        transform: scale(.5);
    } */
    .planet {
        margin-top: -20px;
    }

    .planet:first-child {
        margin-left: -10px;
    }

    .planet:last-child {
        margin-left: -75px;
    }

    .footer {
        text-align: center;
        left: 10%;
    }

    .planet-right {
        width: 92px;
    }

    .main__planets {
        margin-left: -25px;
    }
}

@media (max-width: 358px) {
    .planet {
        transform: scale(.5);
    }
}

@media (max-width: 540px) and (max-height: 815px) {
    .footer {
        position: static;
        display: flex;
        justify-content: center;
    }

    .mobile-shadow3 {
        display: none;
    }

    body {
        overflow: auto;
    }

    .main {
        min-height: 90vh;
        height: 100%;
    }

    .overflow-hidden {
        overflow: hidden;
    }
}

@media (max-width: 330px) {
    .main__planets {
        flex-direction: column;
        align-items: center;
        margin-left: 0%;
    }

    .planet {
        margin: 0 !important;
    }

    .mobile-shadow1 img {
        width: 100%;
    }
}

@media (max-width: 290px) {
    body {
        padding-right: 10px;
    }
}

/* .shadow-light1 {
    position: absolute;
    top: 0;
    left: 0;
} */

.shadow-light2 {
    transform: rotate(180deg);
    max-width: 920px;
    width: 100%;
}

.shadow-light2 img {
    max-height: 900px;
    width: 144%;
}

.shadow-light1 img {
    width: 100%;

}

.shadow-light1 {
    max-height: 100vh;
}

.shadow-light1 {
    max-height: 450px;
    max-width: 600px;
}

.copyIp {
    background: none;
    border: none;
    outline: none;
}

/* swal2 */
.ipcopy-info {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    font-family: var(--main-font);
    text-align: left;
    background-color: var(--bg-color);
    color: var(--font-color);
    border-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
}
.swal2-popup {
    color: #fff;
    font-family: var(--main-font);
    background-color: #1d1d25;
    padding: min(50px, calc(6.36364px + 3.63636vw));
    border-radius: 20px;
}