* {
    box-sizing: border-box;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-style: normal;
    font-size: 18px;
    background: #000;
    color: #fff;
}

a {
    color: #fff;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0px;
    margin-bottom: 20px;
}

h1 {
    font-weight: 900;
}

.green {
    color: #39ff14;
}

.main {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    overflow: hidden;
    transition: all 300ms ease-in;
}

.main.blur {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.main__img {
    width: 100%;
}

@media (max-width: 850px) {
    .main {
        background: url("../images/bg-mobile.jpg") no-repeat center center;
        background-size: cover;
        position: relative;
        height: 100dvh;
        top: 0px;
        left: 0px;
        -ms-transform: none;
        transform: none;
        width: 100%;
    }

    .main__img {
        display: none;
    }
}

.header__wrapper {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 8;
}

.header {
    display: grid;
    grid-template-columns: 1fr 60% 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    padding: 20px;
    font-size: 20px;
    font-weight: 900;
    transition: all 300ms ease-in;
}

@media (max-width: 1040px) {
    .header {
        font-size: 16px;
    }
}

.header__sub {
    display: none;
    text-align: center;
    padding: 0px 15px;
}

@media (max-width: 850px) {
    .header__sub {
        display: block;
    }
}

.header__sub input {
    width: 100%;
    padding: 8px 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
}

.header__sub p {
    margin-bottom: 0px;
    font-weight: 900;
    font-size: 14px;
}

*:focus {
    outline: none;
}

.header__wrapper.blur {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.header .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header .middle {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .right {
    text-align: right;
    font-size: 32px;
}

@media (max-width: 850px) {
    .header {
        grid-template-columns: 50% 1fr;
        font-size: 32px;
    }

    .header .middle {
        display: none;
    }
}

.pulse-wrapper {
    position: absolute;
    font-weight: 900;
}

.pulse-wrapper::after {
    background-color: #39ff14;
    border-radius: 10px;
    color: #000;
    display: none;
    padding: 10px 15px;
    position: absolute;
    text-align: center;
    z-index: 999;
}

.pulse-wrapper::before {
    background-color: #39ff14;
    content: " ";
    display: none;
    position: absolute;
    width: 15px;
    height: 15px;
    z-index: 999;
}

.pulse-wrapper:hover::after {
    display: block;
}

.pulse-wrapper:hover::before {
    display: block;
}

.pulse-wrapper.tooltip::after {
    top: -10px;
    left: 50%;
    transform: translate(-50%, calc(100% - 75px));
    width: 140px;
}

.pulse-wrapper.tooltip::before {
    top: -10px;
    left: 50%;
    transform: translate(-50%, calc(100% - 5px)) rotate(45deg);
}

.pulse-inner {
    position: relative;
    display: inline-block;
}

.fixed-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #39ff14;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pulse-loader {
    width: 4em;
    height: 4em;
    border-radius: 50%;
    background-color: #39ff14;
    outline: 1px solid transparent;
    animation: pulseanim 1s ease-in-out 2s infinite;
    opacity: 0;
    transform: scale(0);
    animation-fill-mode: forwards;
}

@keyframes pulseanim {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}

.pulse-wrapper.about {
    left: 64%;
    top: 45%;
}

.pulse-wrapper.tooltip.about::after {
    content: "ABOUT";
}

.pulse-wrapper.buy {
    left: 30%;
    bottom: 20%;
}

.pulse-wrapper.tooltip.buy::after {
    content: "BUY";
}

.pulse-wrapper.gallery {
    left: 15%;
    bottom: 0%;
}

.pulse-wrapper.tooltip.gallery::after {
    content: "GALLERY";
}

.pulse-wrapper.tokenomics {
    right: 11%;
    bottom: 11%;
}

.pulse-wrapper.tooltip.tokenomics::after {
    content: "TOKENOMICS";
}

.pulse-wrapper.roadmap {
    right: 18%;
    bottom: 32%;
}

.pulse-wrapper.tooltip.roadmap::after {
    content: "ROADMAP";
}

@media (max-width: 850px) {
    .pulse-wrapper.gallery {
        left: 61%;
        bottom: -3%;
    }

    .pulse-wrapper.buy {
        left: 1%;
        bottom: 15%;
    }

    .pulse-wrapper.roadmap {
        right: -4%;
        bottom: 24%;
    }

    .pulse-wrapper.tokenomics {
        right: -4%;
        bottom: 6%;
    }
}

.container__overlay {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px 40px;
    text-align: center;
    border-radius: 15px;
    position: fixed;
    max-width: 800px;
    width: 100%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}

@media (max-width: 850px) {
    .container__overlay {
        position: absolute;
        height: 100dvh;
        overflow-y: auto;
        overflow-x: hidden;
        top: 0px;
        left: 0px;
        -ms-transform: none;
        transform: none;
        padding: 20px 20px 40px;
    }
}

.container__overlay--inner {
    padding-top: 20px;
    font-size: 24px;
    text-align: center;
}

@media (max-width: 850px) {
    .container__overlay--inner {
        font-size: 18px;
    }
}

.close__overlay {
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 32px;
}

.overlay__transparent {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 9;
    display: none;
}

.container__overlay--tokenomics h2 {
    margin-bottom: 0px;
}

.stack {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 30px auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stack::-webkit-scrollbar {
    display: none;
}

.stack > .sheet {
    position: absolute;
    transition: all 300ms ease-in-out;
    display: block;
    padding: 20px;
    background: white;
    width: 100%;
    height: 500px;
    left: 0;
    overflow: auto;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.19),
        0 6px 6px rgba(0, 0, 0, 0.23);
}

.stack > .sheet img {
    max-width: 100%;
}

.stack__arrows a {
    text-decoration: none;
    font-size: 32px;
    margin-left: 5px;
    margin-right: 5px;
}

.stack__arrows a.disabled {
    opacity: 0.3;
}

@media (max-width: 850px) {
    .stack {
        width: 300px;
        height: 300px;
        margin: 40px auto;
    }

    .stack > .sheet {
        height: 300px;
    }
}

.button {
    align-items: center;
    background: #39ff14;
    -webkit-box-shadow: 0px 0px 22px 6px rgba(57, 255, 20, 0.9);
    -moz-box-shadow: 0px 0px 22px 6px rgba(57, 255, 20, 0.9);
    box-shadow: 0px 0px 22px 6px rgba(57, 255, 20, 0.9);
    border-radius: 8px;
    color: #000;
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1em;
    margin: 0 auto;
    min-width: 100px;
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    animation: pulsate 1s ease-out infinite;
    transition: all 100ms ease-in-out;
}

@-webkit-keyframes pulsate {
    0% {
        box-shadow: 0 0 2 rgba(57, 255, 20, 0.9);
        -webkit-box-shadow: 0 0 2 rgba(57, 255, 20, 0.9);
        -moz-box-shadow: 0 0 2 rgba(57, 255, 20, 0.9);
    }
    50% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.9);
        -webkit-box-shadow: 0 0 20px rgba(57, 255, 20, 0.9);
        -moz-box-shadow: 0 0 20px rgba(57, 255, 20, 0.9);
    }
    100% {
        box-shadow: 0 0 2 rgba(57, 255, 20, 0.9);
        -webkit-box-shadow: 0 0 2 rgba(57, 255, 20, 0.9);
        -moz-box-shadow: 0 0 2 rgba(57, 255, 20, 0.9);
    }
}

.button:active,
.button:hover {
    outline: 0;
}

@media (max-width: 850px) {
    .button {
        margin-bottom: 10px;
    }
}

.chart {
    margin-bottom: 30px;
    margin-top: 0px;
}

#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
}

@media (max-width: 850px) {
    #dexscreener-embed {
        padding-bottom: 125%;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}

.about__icons {
    font-size: 32px;
}

.about__icons i {
    margin-left: 5px;
    margin-right: 5px;
}

.about__icons img {
    width: 32px;
    margin-left: 5px;
    margin-right: 5px;
}

.about__icons img.dexscreener {
    position: relative;
    margin-bottom: -9px;
}

.about__icons img.dextools {
    position: relative;
    margin-bottom: -4px;
}

.about__icons img.cmc {
    position: relative;
    margin-bottom: -4px;
}

@media (max-width: 850px) {
    .ca {
        font-size: 12px;
    }
}
