       :root {
            --globalScale: 0.9;
            --bgColor:  #181818;
            --buttonBg: #323232;
            --buttonColor: #FFF;

            --scrollChildWidth: 100%;
            --scrollChildMinWidth: 100%;
        }

        [dark-mode] {
            --bgColor: radial-gradient(#555 1px, #181818 1px) 0 0 / 16px 16px;
            --fgColor: #1F1F1F;
            --fgBorder: #2A2A2A;
            --buttonBg: #323232;
            --buttonBorderColor: #3E3E3E;
            --buttonBgHover: var(--blue);

            --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
            --shadow-s: 0 1px 3px 0 rgba(10, 13, 18, 0.5), 0 1px 2px -1px rgba(10, 13, 18, 0.5);
            --shadow-m: 0 4px 6px -1px rgba(10, 13, 18, 0.5), 0 2px 4px -2px rgba(10, 13, 18, 0.5);
            --shadow-l: 0 12px 16px -4px rgba(10, 13, 18, 0.5), 0 4px 6px -2px rgba(10, 13, 18, 0.5), 0 2px 2px -1px rgba(10, 13, 18, 0.5);

            --shadow-inset-s: inset 0 1px 2px #ffffff30, /* top highlight */ 0 1px 2px #00000030, /* dark shadow */ 0 2px 4px #00000015;
            --shadow-inset-m: inset 0 1px 2px #ffffff50, 0 2px 4px #00000030, 0 4px 8px #00000015;
            --shadow-inset-l: inset 0 1px 2px #ffffff70, /* top highlight */ 0 4px 6px #00000030, /* dark shadow */ 0 6px 10px #00000015;

            --cardBg: linear-gradient(190deg, var(--fgColor), color-mix(in srgb, black 50%, var(--fgColor) 10%));

            --buttonBg: rgb(255 255 255 / 0.08);
            --buttonShadow: inset 0.5px 0.5px 0 rgb(255 255 255 / 0.2), inset -0.5px -0.5px 0 rgb(255 255 255 / 0.2);
        }

        :where(.is-custom,.is-blank) { --buttonShadow: none }

        #app {
            margin-inline: 2vw;

            @media(width <= 777px) {
                margin-inline: var(--padding);
            }
        }

[v-cloak] { display:none!important }

openthinking-menu #openthinkingMenu .button.is-custom {
    background: var(--fgColor);
    border: 1px solid var(--fgBorder);
}

[aria-label="Clear input"] { max-width: 40px; max-height: 40px; }

.size-6 { width: var(--h4Size); height: var(--h4Size) }
svg { flex-shrink: 0 }

h2.title {
    font-size: var(--type-18);
    letter-spacing: 0px;
    margin: 0;
    font-weight: 800;
    color: #333;
    text-shadow: -1px -1px 0 #555, 1px -1px 0 #555, -1px 1px 0 #555, 1px 1px 0 #555;

    @media (width <= 777px) {
        font-size: var(--type-13);
        letter-spacing: 2px;
    }
}

section.home-hero {
    position: relative;
    min-height: 100vh; 

    .learnMore {
        position: absolute;
        inset-block-end: 0px;
        z-index: 999;
        
        transform-origin: bottom center;
        animation: hideLearnMore linear forwards;
        animation-timeline: scroll();
        animation-range: 0vh 70vh;
    }
}

section#features > * {
    min-height: 90vh;
    max-width: 1000px;
    background: var(--cardBg);
    border: 1px solid var(--fgBorder);
    border-radius: 3rem;
    padding: var(--margin);
    margin-block: var(--margin);

    transform-origin: bottom center;
    animation: featuresSection linear forwards;
    animation-timeline: scroll();
    animation-range: 0vh 70vh;
}

footer {
    max-width: 1000px;
    background: var(--cardBg);
    border: 1px solid var(--fgBorder);
    border-radius: 3rem;
    padding: var(--margin);
    margin-block: var(--margin);
}

body[detector-status="success"] section.onoff.openthinking {
    max-width: 800px;
    margin-block: var(--space-8);
    transition-delay: 1s;
}

.card {
    --hMargin: 0;
    --gap: 0;

    position: relative;
    border: 1px solid var(--fgBorder);
    border-radius: 2rem;
    background: var(--cardBg);
    box-shadow: var(--shadow-inset-s), var(--shadow-xs);
    overflow: clip;
    transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;

    &:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-inset-m), var(--shadow-l);
    }

    .image { 
        position: relative; 
        height: 240px; 
        overflow: clip; 
        border-block-end: 2px solid var(--fgBorder); 
        user-select: none
    }
    .inside { 
        padding: var(--margin); 
        span { color: color-mix(in srgb, currentColor 70%, transparent 20%) } 
    }
}

/* [A] Auto, activates hover on devices that have hover state */
@media (hover: hover) {
    .onHover-a {
        .on { opacity: 1 }
        .off { opacity: 0 }

        &:is(:hover,:focus,:focus-visible,:focus-within) {
            .on { opacity: 0 }
            .off { opacity: 1 }
        }
    }
}

section#searchBox {
    display: grid;
    place-items: center;
    height: 100%;
    interpolate-size: allow-keywords;
    transition: all 1s var(--easeInOutQuint);

    .bar { 
        background: var(--cardBg);
        box-shadow: var(--shadow-m);
        border-radius: 100vw;
        transition: all 2s ease-in-out;
        border: 1px solid var(--fgBorder);
        width: fit-content;
        margin-block: var(--margin);
        backdrop-filter: blur(5px);
    }

    #storeUrl {
        transition: all 2s var(--easeOutCirc);
        transition-delay: 500ms;

        @media (hover: hover) {
            &:hover { width: 32ch; transition: all 500ms var(--easeOutCirc); transition-delay: 1ms }
        }
    }
}

body[detector-status="init"] section#searchBox { 
    min-height: 100vh; 
    @media (width <= 777px) { min-height: 90vh }

    @media(width >= 777px) {
        #storeUrl { width: 50ch }
    }
}
body[detector-status="searching"] section#searchBox { min-height: 50vh; transition-duration: 250ms }
body[detector-status="success"] section#searchBox { min-height: 10vh; transition-delay: 500ms }
body[detector-status="error"] section#searchBox { 
    min-height: 90vh; 
    @media(width >= 777px) {
        #storeUrl { width: 50ch }
    }
}

/* On/Off blocks */
section.onoff {
    opacity: 0;
    display: none;
    transition-property: opacity, display;
    transition-duration: 1s, 50ms;
    transition-timing-function: ease-in-out, ease;
    transition-behavior: normal, allow-discrete;
}

body[detector-status="success"] section.onoff { display: inherit; opacity: 1; transition-delay: 500ms }
@starting-style { body[detector-status="success"] section.onoff { opacity: 0 } }

/* Tittle / logo */
section#searchBox .title {
    transition-property: opacity, display;
    transition-duration: 800ms, 1s;
    transition-timing-function: ease-in-out, ease;
    transition-behavior: normal, allow-discrete;
}
body[detector-status="success"] section#searchBox .title { display: none; opacity: 0 }
@starting-style { body[detector-status="success"] section#searchBox .title { opacity: 1 } }

section.results { max-width: 600px }

.loading,.error {
    width: fit-content;
    border-radius: 100vw;
    border: 1px solid var(--fgBorder);
    padding: var(--space-2) var(--space-4);
    text-align: center;
    background: var(--fgColor);
    box-shadow: var(--shadow-m);
}

.error { color: var(--red) }

.hx { --hWeight: 400; font-size: var(--type-1); color: color-mix(in srgb, currentColor 50%, transparent 10%) }
.xh { font-size: var(--type-6) }
.themeName { font-size: var(--type-9); line-height: 1.2; font-weight: 600 }

.tag {
    background: var(--buttonBg);
    padding: var(--buttonPadding);
    border-radius: 100vw;
    border: 1px solid var(--buttonBorderColor);
    font-size: var(--type-1);
    margin-inline-start: var(--space-2);
}

section.results fieldset {
    --buttonMargin: 0px;
    --buttonPadding: 0.7em;
    --buttonBg: rgb(0 0 0 / 0.05);
    --buttonColor: var(--color);
    --fieldsetRadius: 2rem;

    background: var(--cardBg);
    border-color: var(--fgBorder);
    box-shadow: var(--shadow-inset-m);
}

.clipsy {
    &:not(:hover) {
        display: inline-block;
        text-overflow: ellipsis;
        max-width: 100cqi;
        overflow: clip;
        white-space: nowrap;
    }

    &:hover {
        position: relative;
        z-index: 9;
        background: var(--bgColor);
        border: 1px solid rgb(0 0 0 / .1);
        border-radius: 100vw;
        padding: var(--space-1) var(--space-2);
        line-height: 1;
    }
}

@keyframes featuresSection {
    from { opacity: 0.5; transform: scale(0.96)}
    to { opacity: 1; transform: scale(1) }
}

@keyframes hideLearnMore {
    to { opacity: 0; transform: scale(0.5); pointer-events: none; filter: blur(10px) }
}