@import url('https://fonts.cdnfonts.com/css/frost-land');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@font-face {
    font-family: "SA Long Beach";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/SALongBeach.woff2) format(woff2), url(../fonts/SALongBeach.otf) format(opentype)
}

@font-face {
    font-family: "Fox Pookie";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/FoxPookieRegular.woff2) format(woff2), url(../fonts/FoxPookieRegular.ttf) format(truetype)
}

*,
*::after,
*::before {
    box-sizing: border-box
}

html,
body {
    font-family: 'Frost Land', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font-family: inherit;
    cursor: pointer
}

img,
video {
    display: block
}

.wrapper {
    overflow: hidden;
    max-width: 100vw;
    min-height: 100vh;
    position: relative
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    top: 50px
}

@media screen and (max-width: 480px) {
    .header {
        top: 30px
    }
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width: 480px) {
    .header__logo img {
        width: 90px
    }
}

.header__socials {
    display: flex;
    gap: 12px
}

@media screen and (max-width: 480px) {
    .header__socials {
        gap: 8px
    }
}

.header__btn {
    width: 60px;
    height: 60px;
    background: #2992fd;
    border: 3px solid #B28453;
    color: #def3d6;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 200ms ease-in-out
}

.header__btn:hover {
    background: #B28453
}

.header__btn svg {
    max-height: 30px;
    max-width: 30px;
    display: block
}

@media screen and (max-width: 480px) {
    .header__btn {
        width: 50px;
        height: 50px
    }

    .header__btn svg {
        max-width: 24px;
        max-height: 24px
    }
}

.hero {
    pointer-events: none;
    z-index: 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    text-align: center;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
    pointer-events: auto
}

.hero__logo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 20px auto
}

.hero__btn {
    width: 270px;
    background: #21cdfd;
    border: 5px solid #2992fd;
    color: #043e7d;
    font-size: 32px;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 24px;
    transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    display: inline-flex;
    
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 4px 6px 0px #2992fd
}

.hero__btn span {
    margin-top: 7px
}

.hero__btn:hover {
    background: #5f5bfd;
    box-shadow: 2px 4px 0px #2992fd
}

.hero__btn:nth-child(2) {
    background: #2992fd;
    color: #fff;
    border: 5px solid #5f5bfd;
    box-shadow: 4px 6px 0px #5f5bfd
}

.hero__btn:nth-child(2):hover {
    background: #043e7d;
    box-shadow: 2px 4px 0px #5f5bfd
}

@media screen and (max-width: 640px) {
    .hero__btn {
        font-size: 28px;
        padding: 16px
    }

    .hero__btn svg {
        max-height: 32px
    }
}

.hero__bruh {
    margin: 0 auto 20px;
    width: 150px
}

@media screen and (max-width: 900px) {
    .hero__bruh {
        transform: translateX(0);
        max-width: 100%
    }
}

.hero__socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 125px
}

@media screen and (max-width: 900px) {
    .hero__socials {
        margin-bottom: 100px
    }
}

@media screen and (max-width: 640px) {
    .hero__socials {
        gap: 8px
    }
}

.hero__social {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    background: #000;
    color: #fff;
    border: 4px solid #111;
    border-radius: 50%;
    transition: background 200ms ease-in-out, border 200ms ease-in-out, color 200ms ease-in-out, transform 200ms ease-in-out
}

.hero__social:hover {
    transform: scale(0.975)
}

.hero__social_telegram {
    background: #5bb3cf;
    border-color: #4c8799
}

.hero__social_telegram:hover {
    background: #6fbcd5
}

.hero__social_x {
    background: #1c1c1c;
    border-color: #5c5c5c
}

.hero__social_x:hover {
    background: #292929
}

.hero__social_tiktok {
    background: #000;
    border-color: #333
}

.hero__social_tiktok:hover {
    background: #222;
    border-color: #333
}

.hero__social_dexscreener {
    background: #282828;
    border-color: #656665
}

.hero__social_dexscreener:hover {
    background: #444
}

.hero__social_dextools {
    background: #05a3c9;
    border-color: #076880
}

.hero__social_dextools:hover {
    background: #048fb0
}

.hero__social_uni {
    background: #ff007a;
    border-color: #a92163
}

.hero__social_uni:hover {
    background: #e6006e
}

@media screen and (max-width: 500px) {
    .hero__social {
        width: calc((100vw - 20px)/6 - 6.6666666667px);
        height: calc((100vw - 20px)/6 - 6.6666666667px);
        padding: 10px;
        border-width: 2px
    }

    .hero__social svg {
        max-width: 100%;
        max-height: 100%
    }
}

.hero__clouds {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    width: -moz-max-content;
    width: max-content;
    pointer-events: none;
    animation: heroClouds 120s linear infinite;
    z-index: 2
}

.hero__bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1280px;
    bottom: 0;
    pointer-events: none
}

.hero__row {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative
}

@media screen and (max-width: 640px) {
    .hero__row {
        flex-direction: column
    }
}

@keyframes heroClouds {
    100% {
        transform: translateX(-100%)
    }
}

.about {
    position: relative;
    background: #0f172a;
    padding-top: 50px;
    padding-bottom: 10vw
}

@media screen and (max-width: 1280px) {
    .about {
        padding-bottom: 150px
    }
}

.about__top {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    width: 100%;
    min-width: 1280px
}

.about__clouds {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    animation: aboutClouds 100s linear infinite
}

.about__buildings {
    position: absolute;
    z-index: 3;
    bottom: 100px;
    left: 0;
    width: 340px
}

.about__container {
    position: relative;
    z-index: 10
}

.about__left {
    max-width: 800px;
    width: 100%
}

.about__badge {
    padding: 10px;
    background: #fff;
    color: #000;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 32px;
    border: 3px solid #000;
    box-shadow: 8px 9px 0px #000
}

@media screen and (max-width: 767.98px) {
    .about__badge {
        display: block;
        width: -moz-max-content;
        width: max-content;
        margin: 0 auto 32px
    }
}

.about__text {
    position: relative;
    z-index: 5;
    max-width: 640px;
    width: 100%;
    font-size: 26px;
    color: #6756fd;
    background: #e4efe1;
    border: 5px solid #6756fd;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 32px;
    line-height: 1.3;
    margin-bottom: 32px;
    transform: rotate(-0.9deg)
}

@media screen and (max-width: 767.98px) {
    .about__text {
        margin: 0 auto 32px
    }
}

.about__label {
    color: #2992fd;
    font-size: 26px;
    margin-bottom: 16px;
    display: block
}

@media screen and (max-width: 767.98px) {
    .about__label {
        text-align: center
    }
}

.about__row {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 5
}

@media screen and (max-width: 767.98px) {
    .about__row {
        flex-direction: column;
        align-items: center
    }
}

.about__contract {
    padding: 24px 24px 21px;
    font-size: 26px;
    line-height: 1;
    color: #2992fd;
    background: #fff;
    border: 5px solid #2992fd;
    border-radius: 24px;
    display: block;
    word-break: break-all
}

.about__copy {
    font-family: "Fox Pookie";
    padding: 24px 24px 21px;
    font-size: 26px;
    line-height: 1;
    color: #2992fd;
    background: #21cdfd;
    border: 5px solid #2992fd;
    border-radius: 24px;
    text-transform: uppercase;
    transition: background 200ms ease-in-out, color 200ms ease-in-out
}

.about__copy:hover {
    background: #2992fd;
    color: #21cdfd
}

.about__bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    min-width: 1280px
}

.about__right {
    position: absolute;
    right: 0;
    bottom: -50px;
    max-width: 24vw;
    z-index: 10
}

@media screen and (max-width: 800px) {
    .about__right {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 32px;
        text-align: center;
    }
}

@keyframes aboutClouds {
    100% {
        transform: translateX(-100%)
    }
}

.tokenomics {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0f172a;
    position: relative;
    z-index: 10;
    padding-bottom: 100px
}

@media screen and (max-width: 640px) {
    .tokenomics {
        padding-bottom: 50px
    }
}

.tokenomics__top {
    min-width: 1280px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% - 5px);
    width: 100%
}

.tokenomics__container {
    position: relative;
    padding: 10px
}

.tokenomics__illustration {
    width: 763px;
    display: block;
    position: absolute;
    bottom: -220px;
    left: -90px;
    z-index: 5;
    pointer-events: none
}

@media screen and (max-width: 1280px) {
    .tokenomics__illustration {
        width: 60%
    }
}

@media screen and (max-width: 640px) {
    .tokenomics__illustration {
        display: none
    }
}

.tokenomics__col {
    width: 100%;
    max-width: 940px;
    margin: 0 auto
}

@media screen and (max-width: 1280px) {
    .tokenomics__col {
        max-width: 70%
    }
}

@media screen and (max-width: 640px) {
    .tokenomics__col {
        max-width: 100%
    }
}

.tokenomics__border {
    padding: 6px;
    background: #572700;
    border: 3px solid #FF7200;
    width: 100%;
    margin-bottom: 32px
}

.tokenomics__inner {
    padding: 50px 40px;
    background: #5f5bfd;
    border: 3px solid #FF7200
}

@media screen and (max-width: 540px) {
    .tokenomics__inner {
        padding: 50px 20px
    }
}

.tokenomics__title {
    font-size: 40px;
    font-family: "Fox Pookie";
    text-transform: uppercase;
    margin-bottom: 24px
}

@media screen and (max-width: 640px) {
    .tokenomics__title {
        text-align: center;
        font-size: 8vw
    }
}

.tokenomics__list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

@media screen and (max-width: 640px) {
    .tokenomics__list {
        flex-direction: column;
        flex-wrap: nowrap
    }
}

.tokenomics__item {
    text-transform: uppercase;
    background: #e8faff;
    border: 3px solid #8ec6d6;
    padding: 24px;
    border-radius: 18px;
    color: #2992fd
}

.tokenomics__item span {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 16px
}

@media screen and (max-width: 540px) {
    .tokenomics__item span {
        font-size: 20px
    }
}

.tokenomics__item strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-family: "Fox Pookie"
}

@media screen and (max-width: 540px) {
    .tokenomics__item strong {
        font-size: 40px
    }
}

@media screen and (max-width: 390px) {
    .tokenomics__item strong {
        font-size: 32px
    }
}

@media screen and (max-width: 640px) {
    .tokenomics__item {
        text-align: center
    }
}

@media screen and (max-width: 540px) {
    .tokenomics__item {
        padding: 16px;
        border-radius: 12px
    }
}

.tokenomics__bottom {
    min-width: 1280px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% - 5px);
    width: 100%
}

.tokenomics__label {
    color: #000;
    font-size: 24px;
    padding: 16px 16px 12px 16px;
    line-height: 1;
    background: #dcde7c;
    border: 5px solid #000;
    border-radius: 16px;
    width: -moz-max-content;
    width: max-content;
    box-shadow: 4px 6px 0px #000;
    transform: rotate(-2.8deg);
    position: relative;
    z-index: 3
}

@media screen and (max-width: 767.98px) {
    .tokenomics__label {
        text-align: center
    }
}

.tokenomics__row {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 2
}

@media screen and (max-width: 640px) {
    .tokenomics__row {
        flex-direction: column;
        gap: 10px
    }
}

.tokenomics__contract {
    padding: 24px 24px 21px;
    font-size: 26px;
    line-height: 1;
    color: #000;
    background: #fff;
    border: 5px solid #000;
    border-radius: 24px;
    display: block;
    word-break: break-all;
    box-shadow: 4px 6px 0px #000
}

.tokenomics__copy {
    font-family: "Fox Pookie";
    padding: 24px 24px 21px;
    font-size: 26px;
    line-height: 1;
    color: #2992fd;
    background: #21cdfd;
    border: 5px solid #2992fd;
    border-radius: 24px;
    text-transform: uppercase;
    box-shadow: 4px 6px 0px #2992fd;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out
}

.tokenomics__copy:hover {
    background: #2992fd;
    color: #21cdfd;
    box-shadow: none
}

.buy {
    background: url(../img/stars.svg) repeat, #0f172a;
    position: relative;
    padding: 12.5vw 0
}

@media screen and (max-width: 1600px) {
    .buy {
        padding: 15vw 0
    }
}

@media screen and (max-width: 1280px) {
    .buy {
        padding: 200px 0 125px 0
    }
}

@media screen and (max-width: 640px) {
    .buy {
        padding: 200px 10px 125px 10px
    }
}

.buy__moon {
    position: absolute;
    left: 0;
    top: 8.5vw;
    display: block;
    width: 10vw
}

@media screen and (max-width: 1280px) {
    .buy__moon {
        top: 100px;
        width: auto
    }
}

.buy__rocket {
    position: absolute;
    left: 0;
    top: 0;
    animation: rocket 10s ease-in-out infinite;
    max-width: 40vw
}

.buy__planet {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 10vw
}

@media screen and (max-width: 1280px) {
    .buy__planet {
        width: auto
    }
}

.buy__container {
    position: relative;
    z-index: 20;
    display: flex;
    gap: 20px
}

@media screen and (max-width: 1023.98px) {
    .buy__container {
        flex-direction: column;
        align-items: center
    }
}

.buy__steps {
    width: calc(50% - 10px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: -moz-max-content;
    height: max-content;
    gap: 16px
}

@media screen and (max-width: 1023.98px) {
    .buy__steps {
        max-width: 640px;
        width: 100%
    }
}

@media screen and (max-width: 640px) {
    .buy__steps {
        max-width: 100%;
        grid-template-columns: repeat(1, 1fr)
    }
}

.buy__step {
    position: relative;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column
}

.buy__number {
    position: absolute;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-family: "Fox Pookie";
    text-transform: uppercase;
    color: #fff;
    left: -30px;
    top: -50px;
    background: #063874;
    border: 4px solid #22d6fd;
    border-radius: 50%;
    transform: rotate(-6deg)
}

@media screen and (max-width: 420px) {
    .buy__number {
        width: 60px;
        height: 60px;
        font-size: 32px;
        left: -20px;
        top: -30px
    }
}

.buy__title {
    font-size: 24px;
    text-transform: uppercase;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #063874;
    border: 4px solid #22d6fd;
    border-radius: 24px;
    box-shadow: 4px 6px 0px #22d6fd;
    padding: 16px
}

@media screen and (max-width: 420px) {
    .buy__title {
        font-size: 20px
    }
}

.buy__text {
    margin-top: -4px;
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding: 24px;
    background: #6258fd;
    border: 4px solid #22d6fd;
    border-radius: 24px;
    box-shadow: 4px 6px 0px #22d6fd;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.buy__iframe {
    width: calc(50% - 10px);
    border-radius: 24px
}

@media screen and (max-width: 1023.98px) {
    .buy__iframe {
        max-width: 640px;
        width: 100%;
        max-height: 600px
    }
}

@keyframes rocket {
    0% {
        z-index: 15
    }

    20% {
        transform: translate(-5%, 60%)
    }

    40% {
        z-index: 5;
        transform: translate(30%, -150%)
    }

    60% {
        transform: translate(-500%, 60%)
    }

    80% {
        z-index: 15;
        transform: translate(0%, 60%)
    }

    100% {
        z-index: 15
    }
}

.available {
    position: relative;
    background: #0f172a;
    z-index: 10;
    padding: 10px 0
}

.available__top {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    width: 100%;
    min-width: 1280px
}

.available__container {
    max-width: 1024px
}

.available__illustration {
    max-width: 900px;
    width: 100%;
    margin: 0 auto
}

.available__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 48px;
    background: #8e816c;
    border: 4px solid #504331;
    padding: 24px
}

.available__items a {
    background: #5b5347;
    text-decoration: none;
    cursor: pointer;
    height: 100px;
    width: calc(33.3333333333% - 5.3333333333px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    padding: 0 20px;
    border: 3px solid #2d2c2b;
    transition: background 200ms ease-in-out
}

.available__items a:hover {
    background: #2d2c2b
}

.available__items a img {
    max-width: 100%;
    max-height: 100%;
    display: block
}

@media screen and (max-width: 1023.98px) {
    .available__items a {
        height: 80px;
        border-radius: 24px
    }
}

@media screen and (max-width: 640px) {
    .available__items a {
        width: calc(50% - 8px)
    }
}

@media screen and (max-width: 450px) {
    .available__items a {
        width: 100%
    }
}

.available__bottom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    width: 100%;
    min-width: 1280px
}

.faq {
    position: relative;
    background: #0f172a;
    padding-top: 15vw;
    padding-bottom: 150px
}

@media screen and (max-width: 1280px) {
    .faq {
        padding-top: 20vw
    }
}

@media screen and (max-width: 767.98px) {
    .faq {
        padding: 150px 0
    }
}

.faq__window {
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 10vw;
    width: 40vw
}

@media screen and (max-width: 1280px) {
    .faq__window {
        width: 50vw
    }
}

@media screen and (max-width: 1023.98px) {
    .faq__window {
        display: none
    }
}

.faq__container {
    position: relative;
    z-index: 10
}

.faq__col {
    max-width: 540px
}

@media screen and (max-width: 1023.98px) {
    .faq__col {
        margin: 0 auto
    }
}

.faq__title {
    font-size: 40px;
    color: #2992fd;
    margin-bottom: 24px;
    text-align: center
}

@media screen and (max-width: 440px) {
    .faq__title {
        font-size: 8vw
    }
}

.faq__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #000
}

.faq__illustration {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 40vw
}

@media screen and (max-width: 1023.98px) {
    .faq__illustration {
        display: none
    }
}

.accordion {
    border-bottom: 2px solid #000;
    background: #fff;
    color: #2992fd;
    transition: background 200ms ease-in-out
}

.accordion:last-child {
    border-bottom: none
}

.accordion:hover {
    background: #c8fdb6
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer
}

.accordion__title {
    font-size: 24px;
    text-transform: uppercase
}

.accordion__icon {
    width: 28px;
    height: 28px;
    position: relative;
    background: rgba(117, 117, 117, .17);
    border-radius: 50%
}

.accordion__icon::after,
.accordion__icon::before {
    content: "";
    display: block;
    position: absolute;
    background: currentColor;
    width: 14px;
    height: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 200ms ease-in-out, opacity 100ms ease-in-out
}

.accordion__icon::before {
    transform: translate(-50%, -50%) rotate(90deg)
}

.accordion__body {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 300ms ease-in-out
}

.accordion__body a {
    text-decoration: underline
}

.accordion__body>div {
    font-size: 16px;
    line-height: 1.3;
    padding: 0 20px 20px 20px
}

.accordion_open {
    background: #c8fdb6
}

.accordion_open .accordion__body {
    max-height: var(--body-height, 500px)
}

.accordion_open .accordion__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0
}

.footer {
    position: relative;
    background: #5f5bfd;
    padding: 50px 0
}

.footer__top {
    position: absolute;
    bottom: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1280px
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width: 1023.98px) {
    .footer__container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px
    }
}

.footer__logo {
    text-decoration: none
}

.footer__logo img {
    display: block
}

.footer__nav {
    display: flex;
    gap: 40px;
    font-family: "Fox Pookie";
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase
}

@media screen and (max-width: 440px) {
    .footer__nav {
        gap: 10px;
        justify-content: space-between;
        width: 100%
    }
}

.footer__nav a {
    color: #FED05A;
    transition: color 200ms ease-in-out
}

.footer__nav a:hover {
    color: #fff
}

.footer__socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.footer__social {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    background: #000;
    color: #fff;
    border: 4px solid #111;
    border-radius: 50%;
    transition: background 200ms ease-in-out, border 200ms ease-in-out, color 200ms ease-in-out, transform 200ms ease-in-out;
    padding: 10px
}

.footer__social svg {
    max-width: 100%;
    max-height: 100%
}

.footer__social:hover {
    transform: scale(0.975)
}

.footer__social_telegram {
    background: #5bb3cf;
    border-color: #4c8799
}

.footer__social_telegram:hover {
    background: #6fbcd5
}

.footer__social_x {
    background: #1c1c1c;
    border-color: #5c5c5c
}

.footer__social_x:hover {
    background: #292929
}

.footer__social_tiktok {
    background: #000;
    border-color: #333
}

.footer__social_tiktok:hover {
    background: #222;
    border-color: #333
}

.footer__social_dexscreener {
    background: #282828;
    border-color: #656665
}

.footer__social_dexscreener:hover {
    background: #444
}

.footer__social_dextools {
    background: #05a3c9;
    border-color: #076880
}

.footer__social_dextools:hover {
    background: #048fb0
}

.footer__social_uni {
    background: #ff007a;
    border-color: #a92163
}

.footer__social_uni:hover {
    background: #e6006e
}

@media screen and (max-width: 500px) {
    .footer__social {
        width: calc((100vw - 20px)/6 - 6.6666666667px);
        height: calc((100vw - 20px)/6 - 6.6666666667px);
        padding: 10px;
        border-width: 2px
    }

    .footer__social svg {
        max-width: 100%;
        max-height: 100%
    }
}

.footer__btn {
    width: 60px;
    height: 60px;
    background: #584e73;
    border: 3px solid #403758;
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 200ms ease-in-out
}

.footer__btn:hover {
    background: #403758
}

.footer__btn svg {
    max-height: 30px;
    max-width: 30px;
    display: block
}

@media screen and (max-width: 480px) {
    .footer__btn {
        width: 50px;
        height: 50px
    }

    .footer__btn svg {
        max-width: 24px;
        max-height: 24px
    }
}

/*# sourceMappingURL=main.css.map */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
  }
}

#gridCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
canvas {
  display: block;
  background-color: #0f172a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    max-width: 95%;
  }
}

/* Image Slider Styles */
body {
  margin: 0;
  background: #EEE;
  user-select: none;
  font-family: sans-serif;
}

#slider {
  position: relative;
  width: 50%;
  height: 32vw;
  margin: 150px auto;
  font-family: 'Helvetica Neue', sans-serif;
  perspective: 1400px;
  transform-style: preserve-3d;
}

input[type=radio] {
  position: relative;
  top: 108%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: 0 15px 0 0;
  opacity: 0.4;
  transform: translateX(-83px);
  cursor: pointer;
}

input[type=radio]:nth-child(5) {
  margin-right: 0px;
}

input[type=radio]:checked {
  opacity: 1;
}

#slider label, #slider label img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white;
  font-size: 70px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 400ms ease;
}

/* Active Slide */
#s1:checked ~ #slide1,
 #s2:checked ~ #slide2,
  #s3:checked ~ #slide3,
   #s4:checked ~ #slide4,
    #s5:checked ~ #slide5,
     #s6:checked ~ #slide6,
      #s7:checked ~ #slide7,
       #s8:checked ~ #slide8 {
  box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
  transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked ~ #slide2,
 #s2:checked ~ #slide3,
  #s3:checked ~ #slide4,
   #s4:checked ~ #slide5,
    #s5:checked ~ #slide6,
     #s6:checked ~ #slide7,
      #s7:checked ~ #slide8,
       #s8:checked ~ #slide1 {
  box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
  transform: translate3d(20%, 0, -100px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Next to Next Slide */
#s1:checked ~ #slide3,
 #s2:checked ~ #slide4,
  #s3:checked ~ #slide5,
   #s4:checked ~ #slide6,
    #s5:checked ~ #slide7,
     #s6:checked ~ #slide8,
      #s7:checked ~ #slide1,
       #s8:checked ~ #slide2 {
  box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
  transform: translate3d(40%, 0, -250px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Previous to Previous Slide */
#s1:checked ~ #slide6,
 #s2:checked ~ #slide7,
  #s3:checked ~ #slide8,
   #s4:checked ~ #slide1,
    #s5:checked ~ #slide2,
     #s6:checked ~ #slide3,
      #s7:checked ~ #slide4,
       #s8:checked ~ #slide5 {
  box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
  transform: translate3d(-40%, 0, -250px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Previous Slide */
#s1:checked ~ #slide8,
 #s2:checked ~ #slide1,
  #s3:checked ~ #slide2,
   #s4:checked ~ #slide3,
    #s5:checked ~ #slide4,
     #s6:checked ~ #slide5,
      #s7:checked ~ #slide6,
       #s8:checked ~ #slide7 {
  box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
  transform: translate3d(-20%, 0, -100px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}