:root {
    --kreech-purple: #6b3aff;
    --kreech-blue: #2000f0;
    --kreech-deep: #1a0a4a;
    --kreech-ink: #0a0618;
    --ease-spring: linear(0, .0014, .0055 1.03%, .0239, .053 3.44%, .0961 4.81%, .1957 7.39%, .4354 12.88%, .5484, .6494, .7362, .8083 23.88%, .8696, .9168 29.72%, .9368, .9536 32.81%, .9793 35.9%, .997 39.17%, 1.0084 42.77%, 1.0142 47.07%, 1.0144 53.43%, 1.0054 68.37%, 1.0019 77.3%, .9998 99.98%)
}

html,
body {
    color: #fff;
    background-color: #f4f0ff;
    background-image:
        radial-gradient(ellipse 90% 70% at 15% 10%, rgba(107, 58, 255, .35) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 90% 20%, rgba(32, 0, 240, .28) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(10, 6, 24, .92) 0%, transparent 55%),
        linear-gradient(165deg, #ffffff 0%, #ece6ff 22%, #2a1468 58%, #0a0618 100%);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    overflow: hidden
}

.global-bg-container {
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    opacity: 1;
    will-change: opacity;
    transition: opacity .8s ease-in-out;
    position: fixed;
    inset: -25px 0
}

.global-bg-container.fade-out {
    opacity: 0
}

.global-bg-inner {
    will-change: transform;
    background-image:
        linear-gradient(180deg, rgba(244, 240, 255, .55) 0%, rgba(26, 10, 74, .35) 40%, rgba(10, 6, 24, .75) 100%),
        url(/bg-website.png);
    background-position: 65% 28%;
    background-repeat: no-repeat;
    background-size: 103% auto;
    animation: 15s ease-in-out infinite bgIdleMotion;
    position: absolute;
    inset: 0;
    mix-blend-mode: normal
}

@keyframes bgIdleMotion {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-20px)
    }
    to {
        transform: translateY(0)
    }
}

canvas.webgl {
    z-index: 1;
    outline: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0
}

#root {
    width: 100%;
    height: 100%
}

@keyframes tetrisFall {
    0% {
        transform: translateY(-120px) rotate(var(--quote-rotate, -3deg));
        opacity: 0
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    to {
        transform: translateY(105vh) rotate(var(--quote-rotate, -3deg));
        opacity: 0
    }
}

@media (width<=767px) {
    .list-preview {
        display: none !important
    }
    .manifesto-content,
    .about-content,
    .why-content,
    .objet-content,
    .archive-content {
        padding: 100px 20px 60px !important
    }
    .manifesto-images,
    .about-images,
    .why-images,
    .objet-images {
        gap: 12px !important;
        margin-top: 12px !important;
        margin-bottom: 24px !important
    }
    .hide-on-mobile-overlay {
        display: none !important
    }
    .nav-copyright {
        bottom: 12px !important;
        right: 16px !important;
        left: unset !important;
        text-align: right !important;
        letter-spacing: .1em !important;
        white-space: nowrap !important;
        width: auto !important;
        font-size: 8px !important;
        transform: none !important
    }
    .floating-hover-tooltip {
        display: none !important
    }
}

@media (width<=480px) {
    .manifesto-images,
    .about-images,
    .why-images,
    .objet-images {
        flex-direction: column !important
    }
    .manifesto-img-wrapper,
    .about-img-wrapper,
    .why-img-wrapper,
    .objet-img-wrapper {
        aspect-ratio: 16/9 !important;
        width: 100% !important
    }
}

@keyframes pulse {
    0% {
        opacity: .95;
        transform: scale(1)
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 14px #6b3affbf);
        transform: scale(1.08)
    }
    to {
        opacity: .95;
        transform: scale(1)
    }
}


/* Kreechures nav readability */
.nav-toggle-center {
    background-color: rgba(8, 4, 24, 0.75) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    transition:
        background-color .45s ease,
        border-color .45s ease,
        box-shadow .45s ease,
        opacity .45s ease;
}
.nav-toggle-center button {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
    font-weight: 600 !important;
    transition: color .35s ease, opacity .35s ease, text-shadow .35s ease !important;
}
