* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    height: -webkit-fill-available
}

body {
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    min-height: -webkit-fill-available
}

.scroll-container {
    position: fixed;
    width: 100%;
    height: 40px;
    background: #000c;
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background-color .3s ease
}

.scroll-container:hover {
    background: #000000e6
}

.scroll-container.top {
    top: 0;
    border-bottom: 1px solid rgba(251, 255, 0, 0.2)
}

.scroll-container.bottom {
    bottom: 0;
    border-top: 1px solid rgba(229, 255, 0, 0.2)
}

.scroll-text {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    will-change: transform
}

.scroll-container.bottom .scroll-text {
    animation: scrollReverse 20s linear infinite
}

.scroll-text span {
    display: inline-block;
    padding: 8px 40px;
    font-family: Courier New,monospace;
    font-weight: 700;
    color: #ffee00d7;
    text-shadow: 0 0 10px rgba(255, 238, 0, 0.5);
    font-size: 16px;
    letter-spacing: 2px;
    flex-shrink: 0
}

.scroll-text span:nth-child(1) {
    margin-right: 0
}

.copy-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.9);
    background: #ffee0066;
    color: #ffee00;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    pointer-events: none;
    opacity: 0;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 255, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 251, 0, 0.5);
    box-shadow: 0 0 20px #e5ff0033,0 0 40px #d9ff001a
}

.copy-notification.show {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1)
}

@keyframes scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@keyframes scrollReverse {
    0% {
        transform: translate(-50%)
    }

    to {
        transform: translate(0)
    }
}

.splash-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 100;
    transition: all .8s cubic-bezier(.4,0,.2,1);
    padding: 2rem;
    min-height: 100vh;
    height: 100%;
    width: 100vw;
    background-color: #111827;
    overflow: hidden;
    will-change: opacity,transform
}

.splash-screen:before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid transparent;
    background: linear-gradient(to right,#00ff8000,#eeff0033,#00ff8000);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 101;
    transition: all .3s ease
}

.splash-screen:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: inset 0 0 100px #d0ff0026,inset 0 0 60px #eeff001a,inset 0 0 30px #fffb000d;
    pointer-events: none;
    z-index: 101;
    transition: all .3s ease
}

.splash-background {
    position: fixed;
    top: -50px;
    right: -50px;
    bottom: -50px;
    left: -50px;
    background-size: cover;
    background-position: center;
    z-index: -2;
    will-change: transform;
    animation: floatBackground 20s ease-in-out infinite;
    transform: translateZ(0)
}

.splash-background:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: inset 0 0 100px #b3ff0026,inset 0 0 60px #d0ff001a,inset 0 0 30px #b3ff000d;
    transition: all .3s ease
}

.splash-screen:has(.confirm-button:hover) .splash-background:before {
    box-shadow: inset 0 0 150px #d0ff004d,inset 0 0 100px #bbff0033,inset 0 0 50px #9dff001a
}

@keyframes floatBackground {
    0% {
        transform: translateZ(0) scale(1.1)
    }

    25% {
        transform: translate3d(-10px,10px,0) scale(1.1)
    }

    50% {
        transform: translate3d(0,-10px,0) scale(1.1)
    }

    75% {
        transform: translate3d(10px,10px,0) scale(1.1)
    }

    to {
        transform: translateZ(0) scale(1.1)
    }
}

.splash-screen .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at center,#00000059,#00000073 70%,#0009);
    z-index: -1;
    width: 100vw;
    height: 100vh
}

.splash-screen .overlay:before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: radial-gradient(circle at center,rgba(179, 255, 0, 0.1) 0%,rgba(179, 255, 0, 0.05) 50%,transparent 70%);
    opacity: 0;
    transition: all .3s ease;
    transform: scale(.95);
    pointer-events: none
}

.splash-screen:has(.confirm-button:hover) .overlay:before {
    opacity: 1;
    transform: scale(1.1)
}

.splash-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    justify-content: center
}
.splash-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    justify-content: center
}

.splash-screen.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none
}

.splash-screen img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateZ(0)
}

.splash-screen .access-restricted {
    max-width: min(800px,90vw);
    margin-bottom: 2rem
}

.splash-screen .confirm-button {
    position: relative;
    max-width: min(300px,50vw);
    cursor: pointer;
    margin-top: -2rem;
    padding: 1rem 2rem;
    background: #0000004d;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px #0003,inset 0 1px 1px #ffffff1a,0 0 80px #ffee0066,0 0 160px #00ff8033;
    will-change: transform,box-shadow;
    z-index: 102;
    transform: scale(1);
    transition: transform .3s cubic-bezier(.4,0,.2,1),box-shadow .3s cubic-bezier(.4,0,.2,1),background-color .3s cubic-bezier(.4,0,.2,1)
}

.splash-screen .confirm-button:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px #0000004d,inset 0 1px 1px #ffffff26,0 0 60px #ffee0066,0 0 100px #ffee00c5;
    background: #0006
}

.splash-screen .confirm-button:active {
    transform: scale(1.1);
    box-shadow: 0 2px 5px #0003,inset 0 1px 1px #ffffff0d,0 0 40px #ffee0066
}

@media (max-height: 600px) {
    .splash-screen {
        gap:.5rem;
        padding: 1rem
    }

    .splash-screen .confirm-button {
        margin-top: -1rem;
        padding: .5rem 1rem
    }

    .splash-screen .access-restricted {
        max-width: min(600px,90vw);
        margin-bottom: 1rem
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: scale(.98);
    transition: all .8s cubic-bezier(.4,0,.2,1);
    will-change: visibility,opacity,transform;
    background-color: #000;
    position: relative
}

.container.visible {
    visibility: visible;
    opacity: 1;
    transform: scale(1)
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px
}

.video-container {
    position: absolute;
    top: -50px;
    right: -50px;
    bottom: -50px;
    left: -50px;
    transform-style: preserve-3d;
    transition: transform .2s ease-out;
    will-change: transform
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0)
}

.desktop-video {
    display: block
}

.mobile-video {
    display: none
}

@media (max-width: 768px) {
    .desktop-video {
        display:none
    }

    .mobile-video {
        display: block
    }

    .hero {
        height: 100dvh;
        min-height: -webkit-fill-available
    }

    .content {
        transform: none!important;
        height: 100dvh;
        min-height: -webkit-fill-available;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0
    }

    .video-container {
        transform: none!important
    }

    .logo {
        max-width: 102vw!important;
        width: 95%!important;
        margin: 0 auto;
        transform: none!important;
        animation: none!important;
        --logo-scale: 1 !important
    }

    .scroll-text {
        animation: scroll 13.33s linear infinite!important
    }

    .scroll-container.bottom .scroll-text {
        animation: scrollReverse 13.33s linear infinite!important
    }
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00000026
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    transform-style: preserve-3d;
    transition: transform .2s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    will-change: transform
}

.logo {
    max-width: min(600px,90vw);
    width: 100%;
    height: auto;
    transform: scale(var(--logo-scale, 1));
    transition: transform .2s ease-out;
    will-change: transform;
    animation: floatLogo 6s ease-in-out infinite;
    cursor: pointer
}

.logo.clicked {
    animation: logoClick .6s cubic-bezier(.22,1,.36,1)
}

@keyframes floatLogo {
    0%,to {
        transform: translateZ(0) scale(var(--logo-scale, 1))
    }

    25% {
        transform: translate3d(3px,-3px,0) scale(var(--logo-scale, 1))
    }

    50% {
        transform: translate3d(-2px,2px,0) scale(var(--logo-scale, 1))
    }

    75% {
        transform: translate3d(1px,-1px,0) scale(var(--logo-scale, 1))
    }
}

@keyframes logoClick {
    0% {
        transform: scale(var(--logo-scale, 1));
        filter: brightness(1) drop-shadow(0 0 0 rgba(0,0,0,0))
    }

    30% {
        transform: scale(calc(var(--logo-scale, 1) * .95));
        filter: brightness(.9) drop-shadow(0 1px 2px rgba(0,0,0,.3))
    }

    60% {
        transform: scale(calc(var(--logo-scale, 1) * 1.03));
        filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,.4))
    }

    to {
        transform: scale(var(--logo-scale, 1));
        filter: brightness(1) drop-shadow(0 0 0 rgba(0,0,0,0))
    }
}

.footer {
    position: fixed;
    bottom: 4rem;
    left: 50%;
    transform: translate(-50%);
    z-index: 20;
    padding: .75rem 1.25rem;
    width: fit-content;
    min-width: 420px;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.launching-soon {
    max-width: min(400px,80vw);
    margin: .5rem 0
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #00000080;
    transition: all .3s ease;
    will-change: transform,background-color,box-shadow;
    box-shadow: 0 0 20px #bbff001a,0 0 40px #d0ff000d,inset 0 0 10px #9dff001a
}

.social-link:hover {
    background: #0009;
    transform: translateY(-2px);
    box-shadow: 0 0 30px #9dff0033,0 0 60px #c8ff001a,inset 0 0 15px #d0ff0026
}

.social-link:active {
    transform: translateY(0);
    box-shadow: 0 0 15px #c8ff0026,0 0 30px #c8ff0013,inset 0 0 8px #eeff001a
}

.social-icon {
    width: 48px;
    height: 48px;
    object-fit: contain
}
-----------------------------------------
.MARKET-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center
}

.MARKET-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 64px;
    border-radius: 12px;
    background: #00000080;
    transition: all .3s ease;
    will-change: transform,background-color,box-shadow;
    box-shadow: 0 0 20px #bbff001a,0 0 40px #d0ff000d,inset 0 0 10px #9dff001a
}

.MARKET-link:hover {
    background: #0009;
    transform: translateY(-2px);
    box-shadow: 0 0 30px #d0ff0056,0 0 60px #c8ff0046,inset 0 0 15px #d0ff0056
}

.MARKET-link:active {
    transform: translateY(0);
    box-shadow: 0 0 15px #c8ff0026,0 0 30px #c8ff0013,inset 0 0 8px #eeff001a
}

.MARKET-icon {
    width: auto;
    height: 50px;
    object-fit: contain
}

.MARKET-links {
        gap: .75rem!important;
        padding-bottom: calc(env(safe-area-inset-bottom,0px)/2)
    }

    .MARKET-links a {
        width: 52px!important;
        height: 52px!important;
        background: #00000080!important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px)
    }

    .MARKET-links a .MARKET-icon {
        width: 42px;
        height: 42px
    }
-----------------------------------------
.audio-toggle {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0000004d;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.audio-toggle:hover {
    background: #00000080;
    transform: translateY(-2px)
}

.audio-toggle:active {
    transform: translateY(0)
}

.audio-toggle svg {
    width: 24px;
    height: 24px
}

.audio-toggle .hidden {
    display: none
}

@media (max-width: 768px) {
    .footer {
        width:85%!important;
        min-width: unset!important;
        padding: 0!important;
        bottom: calc(env(safe-area-inset-bottom,0px) + 60px)!important;
        left: 50%;
        transform: translate(-50%);
        z-index: 1000;
        background: none!important;
        border: none!important;
        backdrop-filter: none!important;
        -webkit-backdrop-filter: none!important;
        box-shadow: none!important
    }

    .footer-content {
        gap: .5rem
    }

    .launching-soon {
        max-width: 75vw!important;
        margin: .15rem 0!important
    }

    .social-links {
        gap: .75rem!important;
        padding-bottom: calc(env(safe-area-inset-bottom,0px)/2)
    }

    .social-links a {
        width: 52px!important;
        height: 52px!important;
        background: #00000080!important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px)
    }

    .social-links a .social-icon {
        width: 42px;
        height: 42px
    }

    .audio-toggle {
        top: max(1rem,env(safe-area-inset-top,1rem));
        right: 1rem;
        bottom: unset;
        width: 42px;
        height: 42px
    }

    .container {
        min-height: -webkit-fill-available;
        height: 100dvh
    }

    .scroll-container {
        height: 32px
    }

    .scroll-text span {
        font-size: 14px;
        padding: 6px 24px
    }
}
